From 5c8ac3fb1a59adc6835d369664f1b3a6dd378c9a Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 03:07:54 -0400 Subject: [PATCH 01/16] fix: allow test_operator in primary expressions to avoid bad parses When an identifier like `-d` is on the RHS of a binary expression, parsing can fail --- corpus/statements.txt | 715 +++++++++++++++++++++++++++++------------- grammar.js | 5 +- 2 files changed, 504 insertions(+), 216 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 14c5e965..03c5ca93 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -1,115 +1,153 @@ -=================================== +================================================================================ Pipelines -=================================== +================================================================================ whoami | cat cat foo | grep -v bar ---- +-------------------------------------------------------------------------------- (program (pipeline (command - name: (command_name (word))) + name: (command_name + (word))) (command - name: (command_name (word)))) + name: (command_name + (word)))) (pipeline (command - name: (command_name (word)) + name: (command_name + (word)) argument: (word)) (command - name: (command_name (word)) + name: (command_name + (word)) argument: (word) argument: (word)))) -=================================== +================================================================================ Lists -=================================== +================================================================================ a | b && c && d; d e f || e g ---- +-------------------------------------------------------------------------------- (program (list (list (pipeline - (command (command_name (word))) - (command (command_name (word)))) - (command (command_name (word)))) - (command (command_name (word)))) + (command + (command_name + (word))) + (command + (command_name + (word)))) + (command + (command_name + (word)))) + (command + (command_name + (word)))) (list - (command (command_name (word)) (word) (word)) - (command (command_name (word)) (word)))) + (command + (command_name + (word)) + (word) + (word)) + (command + (command_name + (word)) + (word)))) -==================================== +================================================================================ While statements -==================================== +================================================================================ while something happens; do echo a echo b done ---- +-------------------------------------------------------------------------------- (program (while_statement condition: (command - name: (command_name (word)) + name: (command_name + (word)) argument: (word)) body: (do_group - (command name: (command_name (word)) argument: (word)) - (command name: (command_name (word)) argument: (word))))) + (command + name: (command_name + (word)) + argument: (word)) + (command + name: (command_name + (word)) + argument: (word))))) -==================================== +================================================================================ Until statements -==================================== +================================================================================ until something happens; do echo a echo b done ---- +-------------------------------------------------------------------------------- (program (while_statement condition: (command - name: (command_name (word)) + name: (command_name + (word)) argument: (word)) body: (do_group - (command name: (command_name (word)) argument: (word)) - (command name: (command_name (word)) argument: (word))))) + (command + name: (command_name + (word)) + argument: (word)) + (command + name: (command_name + (word)) + argument: (word))))) -==================================== +================================================================================ While statements with IO redirects -==================================== +================================================================================ while read line; do echo $line done < <(cat file) ---- +-------------------------------------------------------------------------------- (program (redirected_statement body: (while_statement condition: (command - name: (command_name (word)) + name: (command_name + (word)) argument: (word)) body: (do_group (command - name: (command_name (word)) - argument: (simple_expansion (variable_name))))) + name: (command_name + (word)) + argument: (simple_expansion + (variable_name))))) redirect: (file_redirect - destination: (process_substitution (command - name: (command_name (word)) - argument: (word)))))) + destination: (process_substitution + (command + name: (command_name + (word)) + argument: (word)))))) -==================================== +================================================================================ For statements -==================================== +================================================================================ for a in 1 2 $(seq 5 10); do echo $a @@ -120,34 +158,40 @@ for ARG; do ARG='' done ---- +-------------------------------------------------------------------------------- (program (for_statement variable: (variable_name) value: (word) value: (word) - value: (command_substitution (command - name: (command_name (word)) - argument: (word) - argument: (word))) + value: (command_substitution + (command + name: (command_name + (word)) + argument: (word) + argument: (word))) body: (do_group (command - name: (command_name (word)) - argument: (simple_expansion (variable_name))))) + name: (command_name + (word)) + argument: (simple_expansion + (variable_name))))) (for_statement variable: (variable_name) body: (do_group (command - name: (command_name (word)) - argument: (simple_expansion (variable_name))) + name: (command_name + (word)) + argument: (simple_expansion + (variable_name))) (variable_assignment name: (variable_name) value: (raw_string))))) -==================================== +================================================================================ Select statements -==================================== +================================================================================ select choice in X Y $(ls); do echo $choice @@ -159,30 +203,41 @@ select ARG; do ARG='' done ---- +-------------------------------------------------------------------------------- (program (for_statement (variable_name) - (word) - (word) - (command_substitution (command (command_name (word)))) + (word) + (word) + (command_substitution + (command + (command_name + (word)))) (do_group (command - (command_name (word)) - (simple_expansion (variable_name))) - (command (command_name (word))))) + (command_name + (word)) + (simple_expansion + (variable_name))) + (command + (command_name + (word))))) (for_statement (variable_name) (do_group (command - (command_name (word)) - (simple_expansion (variable_name))) - (variable_assignment (variable_name) (raw_string))))) + (command_name + (word)) + (simple_expansion + (variable_name))) + (variable_assignment + (variable_name) + (raw_string))))) -==================================== +================================================================================ C-style for statements -==================================== +================================================================================ for (( c=1; c<=5; c++ )) do @@ -198,28 +253,43 @@ do echo 'forever' done ---- +-------------------------------------------------------------------------------- (program (c_style_for_statement (word) - (binary_expression (word) (word)) + (binary_expression + (word) + (word)) (word) (do_group - (command (command_name (word)) (simple_expansion (variable_name))))) + (command + (command_name + (word)) + (simple_expansion + (variable_name))))) (c_style_for_statement (word) - (binary_expression (word) (word)) + (binary_expression + (word) + (word)) (word) (compound_statement - (command (command_name (word)) (simple_expansion (variable_name))))) + (command + (command_name + (word)) + (simple_expansion + (variable_name))))) (c_style_for_statement (do_group - (command (command_name (word)) (raw_string))))) + (command + (command_name + (word)) + (raw_string))))) -==================================== +================================================================================ If statements -==================================== +================================================================================ if cat some_file | grep -v ok; then echo one @@ -229,42 +299,85 @@ else exit fi ---- +-------------------------------------------------------------------------------- (program (if_statement (pipeline - (command (command_name (word)) (word)) - (command (command_name (word)) (word) (word))) - (command (command_name (word)) (word)) + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word) + (word))) + (command + (command_name + (word)) + (word)) (elif_clause (pipeline - (command (command_name (word)) (word)) - (command (command_name (word)) (word) (word))) - (command (command_name (word)) (word))) + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word) + (word))) + (command + (command_name + (word)) + (word))) (else_clause - (command (command_name (word)))))) + (command + (command_name + (word)))))) -==================================== +================================================================================ If statements with conditional expressions -==================================== +================================================================================ if [ "$(uname)" == 'Darwin' ]; then echo one fi ---- +if [ a = -d ]; then + echo two +fi + +-------------------------------------------------------------------------------- (program (if_statement - (test_command (binary_expression - (string (command_substitution (command (command_name (word))))) - (raw_string))) - (command (command_name (word)) (word)))) + (test_command + (binary_expression + (string + (command_substitution + (command + (command_name + (word))))) + (raw_string))) + (command + (command_name + (word)) + (word))) + (if_statement + (test_command + (binary_expression + (word) + (word))) + (command + (command_name + (word)) + (word)))) -==================================== +================================================================================ Case statements -==================================== +================================================================================ case "opt" in a) @@ -302,76 +415,136 @@ case $dest in ;; esac ---- +-------------------------------------------------------------------------------- (program - (case_statement (string) - (case_item (word) - (command (command_name (word)) (word))) - (case_item (word) - (command (command_name (word)) (word))) - (case_item (word) - (command (command_name (word)) (word)))) - (case_statement (string) - (case_item (word) - (command (command_name (word)) (word))) - (case_item (word) - (command (command_name (word)) (word))) - (case_item (word) - (command (command_name (word)) (word)))) - (case_statement (string (simple_expansion (variable_name))) - (case_item (word) (word) - (command (command_name (word))))) - (case_statement (simple_expansion (variable_name)) - (case_item (concatenation (word) (word)) - (command (command_name (word)) (simple_expansion (special_variable_name)))))) - -============================= + (case_statement + (string) + (case_item + (word) + (command + (command_name + (word)) + (word))) + (case_item + (word) + (command + (command_name + (word)) + (word))) + (case_item + (word) + (command + (command_name + (word)) + (word)))) + (case_statement + (string) + (case_item + (word) + (command + (command_name + (word)) + (word))) + (case_item + (word) + (command + (command_name + (word)) + (word))) + (case_item + (word) + (command + (command_name + (word)) + (word)))) + (case_statement + (string + (simple_expansion + (variable_name))) + (case_item + (word) + (word) + (command + (command_name + (word))))) + (case_statement + (simple_expansion + (variable_name)) + (case_item + (concatenation + (word) + (word)) + (command + (command_name + (word)) + (simple_expansion + (special_variable_name)))))) + +================================================================================ Test commands -============================= +================================================================================ if [[ "$lsb_dist" != 'Ubuntu' || $(ver_to_int "$lsb_release") < $(ver_to_int '14.04') ]]; then return 1 fi ---- +-------------------------------------------------------------------------------- (program (if_statement - (test_command (binary_expression + (test_command (binary_expression (binary_expression - (string (simple_expansion (variable_name))) - (raw_string)) - (command_substitution (command - (command_name (word)) - (string (simple_expansion (variable_name)))))) - (command_substitution (command (command_name (word)) (raw_string))))) - (command (command_name (word)) (word)))) - + (binary_expression + (string + (simple_expansion + (variable_name))) + (raw_string)) + (command_substitution + (command + (command_name + (word)) + (string + (simple_expansion + (variable_name)))))) + (command_substitution + (command + (command_name + (word)) + (raw_string))))) + (command + (command_name + (word)) + (word)))) -============================= +================================================================================ Test commands with ternary -============================= +================================================================================ if (( 1 < 2 ? 1 : 2 )); then return 1 fi ---- +-------------------------------------------------------------------------------- (program (if_statement (test_command (ternary_expression - (binary_expression (word) (word)) - (word) (word))) + (binary_expression + (word) + (word)) + (word) + (word))) (command - (command_name (word)) (word)))) + (command_name + (word)) + (word)))) -============================= +================================================================================ Test commands with regexes -============================= +================================================================================ [[ "35d8b" =~ ^[0-9a-fA-F] ]] [[ $CMD =~ (^|;)update_terminal_cwd($|;) ]] @@ -383,7 +556,7 @@ Test commands with regexes [[ "$server" =~ [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} ]] [[ "$primary_wins" =~ ([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}) ]] ---- +-------------------------------------------------------------------------------- (program (test_command @@ -392,55 +565,77 @@ Test commands with regexes (regex))) (test_command (binary_expression - (simple_expansion (variable_name)) + (simple_expansion + (variable_name)) (regex))) (test_command (unary_expression (binary_expression - (string (expansion (subscript (variable_name) (word)))) - (string (simple_expansion (variable_name)))))) + (string + (expansion + (subscript + (variable_name) + (word)))) + (string + (simple_expansion + (variable_name)))))) (negated_command (test_command (binary_expression - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (regex)))) (test_command (binary_expression - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (regex))) (test_command (binary_expression - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (regex))) (test_command (binary_expression - (expansion (variable_name)) + (expansion + (variable_name)) (regex))) (test_command (binary_expression - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (regex))) (test_command (binary_expression - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (regex)))) -=============================== +================================================================================ Subshells -=============================== +================================================================================ ( ./start-server --port=80 ) & ---- +-------------------------------------------------------------------------------- (program - (subshell (command (command_name (word)) (word)))) + (subshell + (command + (command_name + (word)) + (word)))) -=============================== +================================================================================ Function definitions -=============================== +================================================================================ do_something() { echo ok @@ -460,98 +655,138 @@ function do_yet_another_thing { echo ok } 2>&1 ---- +-------------------------------------------------------------------------------- (program (function_definition (word) - (compound_statement (command (command_name (word)) (word)))) + (compound_statement + (command + (command_name + (word)) + (word)))) (function_definition - (word) - (subshell (command (command_name (word))))) + (word) + (subshell + (command + (command_name + (word))))) (function_definition - (word) - (test_command (unary_expression (test_operator) (word)))) + (word) + (test_command + (unary_expression + (test_operator) + (word)))) (function_definition (word) (compound_statement (pipeline - (command (command_name (word))) (command - (command_name (word)) - (concatenation (word)) + (command_name + (word))) + (command + (command_name + (word)) + (concatenation + (word)) (word) - (concatenation (word)) + (concatenation + (word)) (word) (word))))) - (redirected_statement (function_definition - (word) - (compound_statement (command (command_name (word)) (word)))) - (file_redirect (file_descriptor) (word)))) - -========================================= + (redirected_statement + (function_definition + (word) + (compound_statement + (command + (command_name + (word)) + (word)))) + (file_redirect + (file_descriptor) + (word)))) + +================================================================================ Variable declaration: declare & typeset -========================================= +================================================================================ declare var1 typeset -i -r var2=42 var3=10 ---- +-------------------------------------------------------------------------------- (program - (declaration_command (variable_name)) - (declaration_command (word) (word) - (variable_assignment (variable_name) (word)) - (variable_assignment (variable_name) (word)))) - -========================================= + (declaration_command + (variable_name)) + (declaration_command + (word) + (word) + (variable_assignment + (variable_name) + (word)) + (variable_assignment + (variable_name) + (word)))) + +================================================================================ Variable declaration: readonly -========================================= +================================================================================ readonly var1 readonly var2=42 ---- +-------------------------------------------------------------------------------- (program - (declaration_command (variable_name)) - (declaration_command (variable_assignment (variable_name) (word)))) + (declaration_command + (variable_name)) + (declaration_command + (variable_assignment + (variable_name) + (word)))) -========================================= +================================================================================ Variable declaration: local -========================================= +================================================================================ local a=42 b local -r c ---- +-------------------------------------------------------------------------------- (program (declaration_command - (variable_assignment (variable_name) (word)) + (variable_assignment + (variable_name) + (word)) (variable_name)) (declaration_command (word) (variable_name))) -========================================= +================================================================================ Variable declaration: export -========================================= +================================================================================ export PATH export FOOBAR PATH="$PATH:/usr/foobar/bin" ---- +-------------------------------------------------------------------------------- (program - (declaration_command (variable_name)) + (declaration_command + (variable_name)) (declaration_command (variable_name) - (variable_assignment (variable_name) (string (simple_expansion (variable_name)))))) + (variable_assignment + (variable_name) + (string + (simple_expansion + (variable_name)))))) -=========================================================== +================================================================================ Variable declaration: command substitution with semi-colon -=========================================================== +================================================================================ _path=$( while statement; do @@ -560,51 +795,81 @@ _path=$( echo $PWD ) ---- +-------------------------------------------------------------------------------- (program - (variable_assignment (variable_name) + (variable_assignment + (variable_name) (command_substitution (while_statement - (command (command_name (word))) - (do_group (command (command_name (word)) (string)))) - (command (command_name (word)) (simple_expansion (variable_name)))))) + (command + (command_name + (word))) + (do_group + (command + (command_name + (word)) + (string)))) + (command + (command_name + (word)) + (simple_expansion + (variable_name)))))) -=========================================== +================================================================================ Expressions passed to declaration commands -=========================================== +================================================================================ export "$(echo ${key} | tr [:lower:] [:upper:])=${p_key#*=}" ---- +-------------------------------------------------------------------------------- (program (declaration_command (string (command_substitution (pipeline - (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (concatenation (word)) (concatenation (word))))) - (expansion (variable_name) (word))))) - -========================================= + (command + (command_name + (word)) + (expansion + (variable_name))) + (command + (command_name + (word)) + (concatenation + (word)) + (concatenation + (word))))) + (expansion + (variable_name) + (word))))) + +================================================================================ Unset commands -========================================= +================================================================================ unset A unset "$variable_name" unsetenv -f ONE TWO ---- +-------------------------------------------------------------------------------- (program - (unset_command (variable_name)) - (unset_command (string (simple_expansion (variable_name)))) - (unset_command (word) (variable_name) (variable_name))) + (unset_command + (variable_name)) + (unset_command + (string + (simple_expansion + (variable_name)))) + (unset_command + (word) + (variable_name) + (variable_name))) -=========================================== +================================================================================ Compound statements -=========================================== +================================================================================ a () { ls || { echo "b"; return 0; } @@ -615,16 +880,38 @@ a () { echo "b" } >&2 ---- +-------------------------------------------------------------------------------- (program - (function_definition (word) (compound_statement - (list - (command (command_name (word))) - (compound_statement - (command (command_name (word)) (string)) - (command (command_name (word)) (word)))) - (command (command_name (word)) (word)))) + (function_definition + (word) + (compound_statement + (list + (command + (command_name + (word))) + (compound_statement + (command + (command_name + (word)) + (string)) + (command + (command_name + (word)) + (word)))) + (command + (command_name + (word)) + (word)))) (redirected_statement - (compound_statement (command (command_name (word)) (string)) (command (command_name (word)) (string))) - (file_redirect (word)))) + (compound_statement + (command + (command_name + (word)) + (string)) + (command + (command_name + (word)) + (string))) + (file_redirect + (word)))) diff --git a/grammar.js b/grammar.js index c99fff44..184bd9a4 100644 --- a/grammar.js +++ b/grammar.js @@ -373,7 +373,7 @@ module.exports = grammar({ $.parenthesized_expression ), - binary_expression: $ => prec.left(choice( + binary_expression: $ => prec.left(2, choice( seq( field('left', $._expression), field('operator', choice( @@ -402,7 +402,7 @@ module.exports = grammar({ ) ), - unary_expression: $ => prec.right(seq( + unary_expression: $ => prec.right(1, seq( choice('!', $.test_operator), $._expression )), @@ -428,6 +428,7 @@ module.exports = grammar({ _primary_expression: $ => choice( $.word, + alias($.test_operator, $.word), $.string, $.raw_string, $.translated_string, From ab3c200a121cfe676834607cd4d2121891f98736 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 03:31:38 -0400 Subject: [PATCH 02/16] fix: `!=` is allowed in expressions w/ regex on the RHS --- corpus/statements.txt | 21 +++++++++++++++++++++ grammar.js | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 03c5ca93..f77219bb 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -349,6 +349,9 @@ if [ a = -d ]; then echo two fi +[[ abc == +(a|b|c) ]] && echo 1 +[[ abc != +(a|b|c) ]] && echo 2 + -------------------------------------------------------------------------------- (program @@ -370,6 +373,24 @@ fi (binary_expression (word) (word))) + (command + (command_name + (word)) + (word))) + (list + (test_command + (binary_expression + (word) + (regex))) + (command + (command_name + (word)) + (word))) + (list + (test_command + (binary_expression + (word) + (regex))) (command (command_name (word)) diff --git a/grammar.js b/grammar.js index 184bd9a4..bfa98a0b 100644 --- a/grammar.js +++ b/grammar.js @@ -387,7 +387,7 @@ module.exports = grammar({ ), seq( field('left', $._expression), - field('operator', choice('==', '=~')), + field('operator', choice('==', '=~', '!=')), field('right', $.regex) ) )), From e82ab4de7a60834729778de3bdd16668946c87bb Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 03:35:06 -0400 Subject: [PATCH 03/16] fix: cases can be on a single line --- corpus/statements.txt | 12 +++++++++++- grammar.js | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index f77219bb..cf58832e 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -436,6 +436,8 @@ case $dest in ;; esac +case x in x) echo meow ;; esac + -------------------------------------------------------------------------------- (program @@ -500,7 +502,15 @@ esac (command_name (word)) (simple_expansion - (special_variable_name)))))) + (special_variable_name))))) + (case_statement + (word) + (case_item + (word) + (command + (command_name + (word)) + (word))))) ================================================================================ Test commands diff --git a/grammar.js b/grammar.js index bfa98a0b..1423b861 100644 --- a/grammar.js +++ b/grammar.js @@ -178,7 +178,7 @@ module.exports = grammar({ field('value', $._literal), optional($._terminator), 'in', - $._terminator, + optional($._terminator), optional(seq( repeat($.case_item), alias($.last_case_item, $.case_item), From cc32bf5136084ed422d42e641edcef3924b37fa4 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 03:49:01 -0400 Subject: [PATCH 04/16] fix: semicolons and arrays are allowed in variable expansions See https://github.com/rawiriblundell/wiki.bash-hackers.org/blob/main/syntax/pe.md#substring_removal for more info --- corpus/literals.txt | 546 ++++++++++++++++++++++++++++++++------------ grammar.js | 4 +- 2 files changed, 406 insertions(+), 144 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 55525c01..02bbdaa6 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -1,61 +1,89 @@ -============================= +================================================================================ Literal words -============================= +================================================================================ echo a echo a b ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (word)) - (command (command_name (word)) (word) (word))) + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word) + (word))) -============================= +================================================================================ Words with special characters -============================= +================================================================================ echo {o[k]} echo }}} echo ]]] === ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (concatenation (word) (word))) - (command (command_name (word)) (concatenation)) - (command (command_name (word)) (concatenation) (word))) + (command + (command_name + (word)) + (concatenation + (word) + (word))) + (command + (command_name + (word)) + (concatenation)) + (command + (command_name + (word)) + (concatenation) + (word))) -============================= +================================================================================ Simple variable expansions -============================= +================================================================================ echo $abc ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (simple_expansion (variable_name)))) + (command + (command_name + (word)) + (simple_expansion + (variable_name)))) -============================= +================================================================================ Special variable expansions -============================= +================================================================================ echo $# $* $@ $! ---- +-------------------------------------------------------------------------------- (program (command - (command_name (word)) - (simple_expansion (special_variable_name)) - (simple_expansion (special_variable_name)) - (simple_expansion (special_variable_name)) - (simple_expansion (special_variable_name)))) + (command_name + (word)) + (simple_expansion + (special_variable_name)) + (simple_expansion + (special_variable_name)) + (simple_expansion + (special_variable_name)) + (simple_expansion + (special_variable_name)))) -============================= +================================================================================ Variable expansions -============================= +================================================================================ echo ${} echo ${#} @@ -67,47 +95,119 @@ echo ${abc:- } echo ${abc: } ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (expansion)) - (command (command_name (word)) (expansion)) - (command (command_name (word)) (expansion (variable_name) (word))) - (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (expansion (variable_name) (word))) - (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (expansion (variable_name)))) - -=================================== + (command + (command_name + (word)) + (expansion)) + (command + (command_name + (word)) + (expansion)) + (command + (command_name + (word)) + (expansion + (variable_name) + (word))) + (command + (command_name + (word)) + (expansion + (variable_name))) + (command + (command_name + (word)) + (expansion + (variable_name))) + (command + (command_name + (word)) + (expansion + (variable_name) + (word))) + (command + (command_name + (word)) + (expansion + (variable_name))) + (command + (command_name + (word)) + (expansion + (variable_name)))) + +================================================================================ Variable expansions with operators -=================================== +================================================================================ A="${B[0]# }" C="${D/#* -E /}" F="${G%% *}" +H="${I#*;}" +J="${K##*;}" +L="${M%;*}" +N="${O%%;*}" ---- +-------------------------------------------------------------------------------- (program (variable_assignment (variable_name) - (string (expansion (subscript (variable_name) (word))))) + (string + (expansion + (subscript + (variable_name) + (word))))) (variable_assignment (variable_name) - (string (expansion (variable_name) (regex)))) + (string + (expansion + (variable_name) + (regex)))) (variable_assignment (variable_name) - (string (expansion (variable_name) (word) (word))))) + (string + (expansion + (variable_name) + (word) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word) + (word))))) -=================================== +================================================================================ Variable expansions in strings -=================================== +================================================================================ A="${A:-$B/c}" A="${b=$c/$d}" ---- +-------------------------------------------------------------------------------- (program (variable_assignment @@ -115,207 +215,317 @@ A="${b=$c/$d}" (string (expansion (variable_name) - (concatenation (simple_expansion (variable_name)) (word))))) + (concatenation + (simple_expansion + (variable_name)) + (word))))) (variable_assignment (variable_name) (string (expansion (variable_name) (concatenation - (simple_expansion (variable_name)) + (simple_expansion + (variable_name)) (word) - (simple_expansion (variable_name))))))) + (simple_expansion + (variable_name))))))) -=================================== +================================================================================ Variable expansions with regexes -=================================== +================================================================================ A=${B//:;;/$'\n'} # escaped space C=${D/;\ *;|} ---- +-------------------------------------------------------------------------------- (program - (variable_assignment (variable_name) (expansion (variable_name) (regex))) + (variable_assignment + (variable_name) + (expansion + (variable_name) + (regex))) (comment) - (variable_assignment (variable_name) (expansion (variable_name) (regex)))) + (variable_assignment + (variable_name) + (expansion + (variable_name) + (regex)))) -=================================== +================================================================================ Other variable expansion operators -=================================== +================================================================================ cat ${BAR} ${ABC=def} ${GHI:?jkl} [ "$a" != "${a#[Bc]}" ] ---- +-------------------------------------------------------------------------------- (program (command - (command_name (word)) - (expansion (variable_name)) - (expansion (variable_name) (word)) - (expansion (variable_name) (word))) + (command_name + (word)) + (expansion + (variable_name)) + (expansion + (variable_name) + (word)) + (expansion + (variable_name) + (word))) (test_command (binary_expression - (string (simple_expansion (variable_name))) - (string (expansion (variable_name) (concatenation (word))))))) + (string + (simple_expansion + (variable_name))) + (string + (expansion + (variable_name) + (concatenation + (word))))))) -============================= +================================================================================ Words ending with '$' -============================= +================================================================================ grep ^${var}$ ---- +-------------------------------------------------------------------------------- -(program (command - (command_name (word)) - (concatenation (word) (expansion (variable_name))))) +(program + (command + (command_name + (word)) + (concatenation + (word) + (expansion + (variable_name))))) -============================= +================================================================================ Command substitutions -============================= +================================================================================ echo `echo hi` echo `echo hi; echo there` echo $(echo $(echo hi)) echo $(< some-file) ---- +-------------------------------------------------------------------------------- (program (command - (command_name (word)) - (command_substitution (command (command_name (word)) (word)))) + (command_name + (word)) + (command_substitution + (command + (command_name + (word)) + (word)))) (command - (command_name (word)) - (command_substitution (command (command_name (word)) (word)) (command (command_name (word)) (word)))) + (command_name + (word)) + (command_substitution + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word)))) (command - (command_name (word)) - (command_substitution (command - (command_name (word)) - (command_substitution (command - (command_name (word)) - (word)))))) + (command_name + (word)) + (command_substitution + (command + (command_name + (word)) + (command_substitution + (command + (command_name + (word)) + (word)))))) (command - (command_name (word)) - (command_substitution (file_redirect (word))))) + (command_name + (word)) + (command_substitution + (file_redirect + (word))))) -============================= +================================================================================ Process substitutions -============================= +================================================================================ wc -c <(echo abc && echo def) wc -c <(echo abc; echo def) echo abc > >(wc -c) ---- +-------------------------------------------------------------------------------- (program (command - (command_name (word)) + (command_name + (word)) (word) - (process_substitution (list - (command (command_name (word)) (word)) - (command (command_name (word)) (word))))) + (process_substitution + (list + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word))))) (command - (command_name (word)) + (command_name + (word)) (word) (process_substitution - (command (command_name (word)) (word)) - (command (command_name (word)) (word)))) + (command + (command_name + (word)) + (word)) + (command + (command_name + (word)) + (word)))) (redirected_statement (command - (command_name (word)) + (command_name + (word)) (word)) - (file_redirect (process_substitution - (command (command_name (word)) (word)))))) + (file_redirect + (process_substitution + (command + (command_name + (word)) + (word)))))) -============================= +================================================================================ Single quoted strings -============================= +================================================================================ echo 'a b' 'c d' ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (raw_string) (raw_string))) + (command + (command_name + (word)) + (raw_string) + (raw_string))) -============================= +================================================================================ Double quoted strings -============================= +================================================================================ echo "a" "b" echo "a ${b} c" "d $e" ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) + (command + (command_name + (word)) (string) (string)) - (command (command_name (word)) - (string (expansion (variable_name))) - (string (simple_expansion (variable_name))))) + (command + (command_name + (word)) + (string + (expansion + (variable_name))) + (string + (simple_expansion + (variable_name))))) -========================================= +================================================================================ Strings containing command substitutions -========================================= +================================================================================ find "`dirname $file`" -name "$base"'*' ---- +-------------------------------------------------------------------------------- (program (command - (command_name (word)) - (string (command_substitution (command (command_name (word)) (simple_expansion (variable_name))))) + (command_name + (word)) + (string + (command_substitution + (command + (command_name + (word)) + (simple_expansion + (variable_name))))) (word) (concatenation - (string (simple_expansion (variable_name))) + (string + (simple_expansion + (variable_name))) (raw_string)))) -========================================= +================================================================================ Strings containing escape sequence -========================================= +================================================================================ echo "\"The great escape\`\${var}" ---- +-------------------------------------------------------------------------------- -(program (command (command_name (word)) (string))) +(program + (command + (command_name + (word)) + (string))) -====================================== +================================================================================ Strings containing special characters -====================================== +================================================================================ echo "s/$/'/" echo "#" echo "s$" ---- +-------------------------------------------------------------------------------- (program - (command (command_name (word)) (string)) - (command (command_name (word)) (string)) - (command (command_name (word)) (string))) + (command + (command_name + (word)) + (string)) + (command + (command_name + (word)) + (string)) + (command + (command_name + (word)) + (string))) -======================================== +================================================================================ Strings with ANSI-C quoting -======================================== +================================================================================ echo $'Here\'s Johnny!\r\n' ---- +-------------------------------------------------------------------------------- -(program (command (command_name (word)) (ansi_c_string))) +(program + (command + (command_name + (word)) + (ansi_c_string))) -========================================= +================================================================================ Arrays and array expansions -========================================= +================================================================================ a=() b=(1 2 3) @@ -326,35 +536,78 @@ echo ${#b[@]} a[$i]=50 a+=(foo "bar" $(baz)) ---- +printf " %-9s" "${seq0:-(default)}" + +-------------------------------------------------------------------------------- (program - (variable_assignment (variable_name) (array)) - (variable_assignment (variable_name) (array (word) (word) (word))) - (command (command_name (word)) (expansion (subscript (variable_name) (word)))) - (command (command_name (word)) (expansion (subscript (variable_name) (word)))) (variable_assignment - (subscript (variable_name) (simple_expansion (variable_name))) + (variable_name) + (array)) + (variable_assignment + (variable_name) + (array + (word) + (word) + (word))) + (command + (command_name + (word)) + (expansion + (subscript + (variable_name) + (word)))) + (command + (command_name + (word)) + (expansion + (subscript + (variable_name) + (word)))) + (variable_assignment + (subscript + (variable_name) + (simple_expansion + (variable_name))) (word)) (variable_assignment (variable_name) (array (word) (string) - (command_substitution (command (command_name (word))))))) + (command_substitution + (command + (command_name + (word)))))) + (command + (command_name + (word)) + (string) + (string + (expansion + (variable_name) + (array + (word)))))) -============================== +================================================================================ Escaped characters in strings -============================== +================================================================================ echo -ne "\033k$1\033\\" > /dev/stderr ---- +-------------------------------------------------------------------------------- (program (redirected_statement - (command (command_name (word)) (word) (string (simple_expansion (variable_name)))) - (file_redirect (word)))) + (command + (command_name + (word)) + (word) + (string + (simple_expansion + (variable_name)))) + (file_redirect + (word)))) ================================================================================ Words containing bare '#' @@ -366,7 +619,16 @@ nix build nixpkgs#hello -v # comment with space -------------------------------------------------------------------------------- (program - (command (command_name (word)) (word) (word)) + (command + (command_name + (word)) + (word) + (word)) (comment) - (command (command_name (word)) (word) (word) (word)) + (command + (command_name + (word)) + (word) + (word) + (word)) (comment)) diff --git a/grammar.js b/grammar.js index 1423b861..9d0c19f0 100644 --- a/grammar.js +++ b/grammar.js @@ -517,8 +517,8 @@ module.exports = grammar({ optional($.regex) )), repeat(choice( - $._literal, - ':', ':?', '=', ':-', '%', '-', '#' + $._literal, $.array, + ':', ':?', '=', ':-', '%', '-', '#', ';' )) ), )), From d5d1ee895554c408ff27ce41efb64fc3307f5ebe Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 04:08:03 -0400 Subject: [PATCH 05/16] fix: add special chars allowed in variable expansions --- corpus/literals.txt | 53 +++++++++++++++++++++++++++++++++++++++++++++ grammar.js | 6 ++--- 2 files changed, 56 insertions(+), 3 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 02bbdaa6..04663c19 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -150,6 +150,14 @@ H="${I#*;}" J="${K##*;}" L="${M%;*}" N="${O%%;*}" +P="${Q%|*}" +R="${S%()}" +T="${U%(}" +V="${W%)}" +X="${Y%<}" +Z="${A#*}" +C="${D%*}" +F="${!#}" -------------------------------------------------------------------------------- @@ -192,6 +200,51 @@ N="${O%%;*}" (expansion (variable_name) (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (array)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name)))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name)))) + (variable_assignment + (variable_name) + (string + (expansion))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (word) + (word)))) (variable_assignment (variable_name) (string diff --git a/grammar.js b/grammar.js index 9d0c19f0..aaf05da4 100644 --- a/grammar.js +++ b/grammar.js @@ -516,10 +516,10 @@ module.exports = grammar({ token(prec(1, '/')), optional($.regex) )), - repeat(choice( + repeat(prec.right(choice( $._literal, $.array, - ':', ':?', '=', ':-', '%', '-', '#', ';' - )) + ':', ':?', '=', ':-', '%', '-', '#', ';', '|', '(', ')', '<', '>', + ))), ), )), '}' From 7f043872646d9e8509b0e8afaa854c7ca398a154 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 04:14:42 -0400 Subject: [PATCH 06/16] fix: words can be escaped with "\ " --- corpus/statements.txt | 20 ++++++++++++++++++-- grammar.js | 3 ++- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index cf58832e..7b90884b 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -438,6 +438,10 @@ esac case x in x) echo meow ;; esac +case foo in + bar\ baz) : ;; +esac + -------------------------------------------------------------------------------- (program @@ -510,7 +514,14 @@ case x in x) echo meow ;; esac (command (command_name (word)) - (word))))) + (word)))) + (case_statement + (word) + (case_item + (word) + (command + (command_name + (word)))))) ================================================================================ Test commands @@ -782,6 +793,7 @@ Variable declaration: local local a=42 b local -r c +local var=word1\ word2 -------------------------------------------------------------------------------- @@ -793,7 +805,11 @@ local -r c (variable_name)) (declaration_command (word) - (variable_name))) + (variable_name)) + (declaration_command + (variable_assignment + (variable_name) + (word)))) ================================================================================ Variable declaration: export diff --git a/grammar.js b/grammar.js index aaf05da4..ab75c085 100644 --- a/grammar.js +++ b/grammar.js @@ -550,7 +550,8 @@ module.exports = grammar({ ), repeat(choice( noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')) + seq('\\', noneOf('\\s')), + "\\ ", )) )), From 9269a4e124ba78edce6f397d55a87040dca90065 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 23 Jul 2023 18:45:40 -0400 Subject: [PATCH 07/16] fix: `#` and `!` can be used together at the start of a variable expansion --- corpus/literals.txt | 12 ++++++------ grammar.js | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 04663c19..b64fbc91 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -157,7 +157,7 @@ V="${W%)}" X="${Y%<}" Z="${A#*}" C="${D%*}" -F="${!#}" +F="${#!}" -------------------------------------------------------------------------------- @@ -234,10 +234,6 @@ F="${!#}" (string (expansion (variable_name)))) - (variable_assignment - (variable_name) - (string - (expansion))) (variable_assignment (variable_name) (string @@ -251,7 +247,11 @@ F="${!#}" (expansion (variable_name) (word) - (word))))) + (word)))) + (variable_assignment + (variable_name) + (string + (expansion)))) ================================================================================ Variable expansions in strings diff --git a/grammar.js b/grammar.js index ab75c085..3ae925c2 100644 --- a/grammar.js +++ b/grammar.js @@ -499,7 +499,7 @@ module.exports = grammar({ expansion: $ => seq( '${', - optional(choice('#', '!')), + repeat(choice('#', '!')), optional(choice( seq( $.variable_name, From a3935656b656829a19e3165c84721018d017939c Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 11:56:33 -0400 Subject: [PATCH 08/16] fix: do not scan heredoc ends when it succeeds non-ws text --- src/scanner.c | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index 21040140..539c53ad 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -182,7 +182,7 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, for (;;) { switch (lexer->lookahead) { case '\0': { - if (did_advance) { + if (lexer->eof(lexer) && did_advance) { scanner->heredoc_is_raw = false; scanner->started_heredoc = false; scanner->heredoc_allows_indent = false; @@ -234,13 +234,20 @@ static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, } default: { - if (scan_heredoc_end_identifier(scanner, lexer)) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); - lexer->result_symbol = end_type; - return true; + if (lexer->get_column(lexer) == 0) { + // an alternative is to check the starting column of the + // heredoc body and track that statefully + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + if (scan_heredoc_end_identifier(scanner, lexer)) { + scanner->heredoc_is_raw = false; + scanner->started_heredoc = false; + scanner->heredoc_allows_indent = false; + STRING_CLEAR(scanner->heredoc_delimiter); + lexer->result_symbol = end_type; + return true; + } } did_advance = true; advance(lexer); From 91d8161935cb1c31d5fa5e164d3406f272fa7e16 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 12:14:13 -0400 Subject: [PATCH 09/16] fix: immediate `#`s are allowed in a concatenation, as well as variable assignments --- corpus/literals.txt | 63 +++++++++++++++++++++++++++++++++++++++++++++ grammar.js | 18 +++++++++++-- src/scanner.c | 2 +- 3 files changed, 80 insertions(+), 3 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index b64fbc91..6f12dc71 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -685,3 +685,66 @@ nix build nixpkgs#hello -v # comment with space (word) (word)) (comment)) + +================================================================================ +Words containing # that are not comments +================================================================================ + +echo 'word'#not-comment # a legit comment +echo $(uname -a)#not-comment # a legit comment +echo `uname -a`#not-comment # a legit comment +echo $hey#not-comment # a legit comment +var=#not-comment # a legit comment +echo "'$var'" # -> '#not-comment' + +-------------------------------------------------------------------------------- + +(program + (command + (command_name + (word)) + (concatenation + (raw_string) + (word))) + (comment) + (command + (command_name + (word)) + (concatenation + (command_substitution + (command + (command_name + (word)) + (word))) + (word))) + (comment) + (command + (command_name + (word)) + (concatenation + (command_substitution + (command + (command_name + (word)) + (word))) + (word))) + (comment) + (command + (command_name + (word)) + (concatenation + (simple_expansion + (variable_name)) + (word))) + (comment) + (variable_assignment + (variable_name) + (word)) + (comment) + (command + (command_name + (word)) + (string + (simple_expansion + (variable_name)))) + (comment)) diff --git a/grammar.js b/grammar.js index 3ae925c2..1fad7283 100644 --- a/grammar.js +++ b/grammar.js @@ -300,7 +300,7 @@ module.exports = grammar({ choice('=~', '=='), choice($._literal, $.regex) ) - ))) + ))), )), command_name: $ => $._literal, @@ -317,7 +317,8 @@ module.exports = grammar({ field('value', choice( $._literal, $.array, - $._empty_value + $._empty_value, + alias($._comment_word, $.word), )) ), @@ -334,6 +335,7 @@ module.exports = grammar({ field('descriptor', optional($.file_descriptor)), choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), field('destination', $._literal) + field('destination', $._literal), )), heredoc_redirect: $ => seq( @@ -449,6 +451,7 @@ module.exports = grammar({ choice( $._primary_expression, $._special_character, + alias($._comment_word, $.word), ) ))), optional(seq($._concat, '$')) @@ -538,6 +541,17 @@ module.exports = grammar({ ), comment: $ => token(prec(-10, /#.*/)), + _comment_word: $ => token(prec(-9, seq( + choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')) + ), + repeat(choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')), + "\\ ", + )) + ))), _simple_variable_name: $ => alias(/\w+/, $.variable_name), diff --git a/src/scanner.c b/src/scanner.c index 539c53ad..5dad873e 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -264,7 +264,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { lexer->lookahead == '<' || 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; From a7325bd0a0c6b19d858bad439543915face368d2 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 13:05:30 -0400 Subject: [PATCH 10/16] fix: don't error out on empty assignments followed by a terminator --- corpus/literals.txt | 16 ++++++++++++++++ src/scanner.c | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 6f12dc71..248423d4 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -748,3 +748,19 @@ echo "'$var'" # -> '#not-comment' (simple_expansion (variable_name)))) (comment)) + +================================================================================ +Variable assignments immediately followed by a terminator +================================================================================ + +loop=; variables=& here=;; + +-------------------------------------------------------------------------------- + +(program + (variable_assignment + (variable_name)) + (variable_assignment + (variable_name)) + (variable_assignment + (variable_name))) diff --git a/src/scanner.c b/src/scanner.c index 5dad873e..c6b3efe6 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -273,7 +273,7 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } if (valid_symbols[EMPTY_VALUE]) { - if (iswspace(lexer->lookahead)) { + if (iswspace(lexer->lookahead) || lexer->eof(lexer) || lexer->lookahead == ';' || lexer->lookahead == '&') { lexer->result_symbol = EMPTY_VALUE; return true; } From 752e98a79abec03c363fb6506e14b4a45db4c618 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 13:18:53 -0400 Subject: [PATCH 11/16] feat: improve parsing of numbers and C-style for loops Co-authored-by: Nathan Sobo --- corpus/commands.txt | 8 +++---- corpus/literals.txt | 52 ++++++++++++++++++++++++++++++++++++++----- corpus/programs.txt | 22 +++++++++++++----- corpus/statements.txt | 52 +++++++++++++++++++++++-------------------- grammar.js | 40 +++++++++++++++++++++++++-------- 5 files changed, 127 insertions(+), 47 deletions(-) diff --git a/corpus/commands.txt b/corpus/commands.txt index bca86b48..dcdd27a4 100644 --- a/corpus/commands.txt +++ b/corpus/commands.txt @@ -44,7 +44,7 @@ exit 1 --- (program - (command (command_name (word)) (word))) + (command (command_name (word)) (number))) =================================== Commands with environment variables @@ -57,7 +57,7 @@ VAR1=a VAR2="ok" git diff --word-diff=color (program (command - (variable_assignment (variable_name) (word)) + (variable_assignment (variable_name) (number)) (command_name (word))) (command (variable_assignment (variable_name) (word)) @@ -97,7 +97,7 @@ cat a b > /dev/null (command (command_name (word)) (word) (word)) (file_redirect (word))) (command - (file_redirect (file_descriptor) (word)) + (file_redirect (file_descriptor) (number)) (command_name (word)))) =============================== @@ -370,6 +370,6 @@ done 3<<<"$ENTRIES" (redirected_statement (command (command_name (word))) (herestring_redirect (word))) (redirected_statement (while_statement - (command (command_name (word)) (word) (word) (word)) + (command (command_name (word)) (word) (number) (word)) (do_group (command (command_name (word)) (simple_expansion (variable_name))))) (herestring_redirect (file_descriptor) (string (simple_expansion (variable_name)))))) diff --git a/corpus/literals.txt b/corpus/literals.txt index 248423d4..519fe066 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -168,7 +168,7 @@ F="${#!}" (expansion (subscript (variable_name) - (word))))) + (number))))) (variable_assignment (variable_name) (string @@ -600,9 +600,9 @@ printf " %-9s" "${seq0:-(default)}" (variable_assignment (variable_name) (array - (word) - (word) - (word))) + (number) + (number) + (number))) (command (command_name (word)) @@ -622,7 +622,7 @@ printf " %-9s" "${seq0:-(default)}" (variable_name) (simple_expansion (variable_name))) - (word)) + (number)) (variable_assignment (variable_name) (array @@ -764,3 +764,45 @@ loop=; variables=& here=;; (variable_name)) (variable_assignment (variable_name))) + +================================================================================ +Arithmetic expansions +================================================================================ + +echo $((1 + 2 - 3 * 4 / 5)) +a=$((6 % 7 ** 8 << 9 >> 10 & 11 | 12 ^ 13)) + +-------------------------------------------------------------------------------- + +(program + (command + (command_name + (word)) + (arithmetic_expansion + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (number) + (number)) + (number)) + (number)) + (number)))) + (variable_assignment + (variable_name) + (arithmetic_expansion + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (number) + (number)) + (number)) + (number)) + (number)) + (number)) + (number)) + (number))))) diff --git a/corpus/programs.txt b/corpus/programs.txt index 862631d2..cae772ea 100644 --- a/corpus/programs.txt +++ b/corpus/programs.txt @@ -28,7 +28,8 @@ f=g \ (program (command - (command_name (word)) + (command_name + (word)) (word) (word)) (command @@ -38,7 +39,8 @@ f=g \ (variable_assignment (variable_name) (word)) - (command_name (word)) + (command_name + (word)) (word))) ============================= @@ -78,13 +80,19 @@ echo a\ ============================= Escaped whitespace -============================ +============================= echo 1 \ 2 \ 3 --- -(program (command (command_name (word)) (word) (word) (word))) +(program + (command + (command_name + (word)) + (number) + (number) + (number))) ==================================== Files without trailing terminators @@ -93,4 +101,8 @@ Files without trailing terminators echo hi --- -(program (command (command_name (word)) (word))) +(program + (command + (command_name + (word)) + (word))) diff --git a/corpus/statements.txt b/corpus/statements.txt index 7b90884b..43395a60 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -163,14 +163,14 @@ done (program (for_statement variable: (variable_name) - value: (word) - value: (word) + value: (number) + value: (number) value: (command_substitution (command name: (command_name (word)) - argument: (word) - argument: (word))) + argument: (number) + argument: (number))) body: (do_group (command name: (command_name @@ -257,10 +257,12 @@ done (program (c_style_for_statement - (word) + (variable_assignment + (variable_name) + (number)) (binary_expression (word) - (word)) + (number)) (word) (do_group (command @@ -269,10 +271,12 @@ done (simple_expansion (variable_name))))) (c_style_for_statement - (word) + (variable_assignment + (variable_name) + (number)) (binary_expression (word) - (word)) + (number)) (word) (compound_statement (command @@ -385,7 +389,7 @@ fi (command (command_name (word)) - (word))) + (number))) (list (test_command (binary_expression @@ -394,7 +398,7 @@ fi (command (command_name (word)) - (word)))) + (number)))) ================================================================================ Case statements @@ -501,7 +505,7 @@ esac (case_item (concatenation (word) - (word)) + (number)) (command (command_name (word)) @@ -558,7 +562,7 @@ fi (command (command_name (word)) - (word)))) + (number)))) ================================================================================ Test commands with ternary @@ -575,14 +579,14 @@ fi (test_command (ternary_expression (binary_expression - (word) - (word)) - (word) - (word))) + (number) + (number)) + (number) + (number))) (command (command_name (word)) - (word)))) + (number)))) ================================================================================ Test commands with regexes @@ -746,7 +750,7 @@ function do_yet_another_thing { (word)))) (file_redirect (file_descriptor) - (word)))) + (number)))) ================================================================================ Variable declaration: declare & typeset @@ -765,10 +769,10 @@ typeset -i -r var2=42 var3=10 (word) (variable_assignment (variable_name) - (word)) + (number)) (variable_assignment (variable_name) - (word)))) + (number)))) ================================================================================ Variable declaration: readonly @@ -785,7 +789,7 @@ readonly var2=42 (declaration_command (variable_assignment (variable_name) - (word)))) + (number)))) ================================================================================ Variable declaration: local @@ -801,7 +805,7 @@ local var=word1\ word2 (declaration_command (variable_assignment (variable_name) - (word)) + (number)) (variable_name)) (declaration_command (word) @@ -945,7 +949,7 @@ a () { (command (command_name (word)) - (word)))) + (number)))) (command (command_name (word)) @@ -961,4 +965,4 @@ a () { (word)) (string))) (file_redirect - (word)))) + (number)))) diff --git a/grammar.js b/grammar.js index 1fad7283..bceb5933 100644 --- a/grammar.js +++ b/grammar.js @@ -13,6 +13,10 @@ const SPECIAL_CHARACTERS = [ module.exports = grammar({ name: 'bash', + conflicts: $ => [ + [$._expression, $.command_name], + ], + inline: $ => [ $._statement, $._terminator, @@ -126,7 +130,7 @@ module.exports = grammar({ c_style_for_statement: $ => seq( 'for', '((', - field('initializer', optional($._expression)), + field('initializer', optional(choice($.variable_assignment, $._expression))), $._terminator, field('condition', optional($._expression)), $._terminator, @@ -319,7 +323,7 @@ module.exports = grammar({ $.array, $._empty_value, alias($._comment_word, $.word), - )) + )), ), subscript: $ => seq( @@ -334,7 +338,7 @@ module.exports = grammar({ file_redirect: $ => prec.left(seq( field('descriptor', optional($.file_descriptor)), choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), - field('destination', $._literal) + // FIXME: repeat1 here inflates the state count, find a better solution. field('destination', $._literal), )), @@ -381,8 +385,13 @@ module.exports = grammar({ field('operator', choice( '=', '==', '=~', '!=', '+', '-', '+=', '-=', + '*', '/', '*=', '/=', + '%', '%=', '**', '<', '>', '<=', '>=', '||', '&&', + '<<', '>>', '<<=', '>>=', + '&', '|', '^', + '&=', '|=', '^=', $.test_operator )), field('right', $._expression) @@ -404,10 +413,16 @@ module.exports = grammar({ ) ), - unary_expression: $ => prec.right(1, seq( - choice('!', $.test_operator), - $._expression - )), + unary_expression: $ => choice( + prec(1, seq( + token(prec(1, choice('-', '+', '~', '++', '--'))), + $._expression + )), + prec.right(1, seq( + choice('!', $.test_operator), + $._expression + )), + ), postfix_expression: $ => seq( $._expression, @@ -435,12 +450,16 @@ module.exports = grammar({ $.raw_string, $.translated_string, $.ansi_c_string, + $.number, $.expansion, $.simple_expansion, $.command_substitution, - $.process_substitution + $.process_substitution, + $.arithmetic_expansion, ), + arithmetic_expansion: $ => seq('$(', '(', $._expression, '))'), + concatenation: $ => prec(-1, seq( choice( $._primary_expression, @@ -466,7 +485,8 @@ module.exports = grammar({ seq(optional('$'), $._string_content), $.expansion, $.simple_expansion, - $.command_substitution + $.command_substitution, + $.arithmetic_expansion, ), optional($._concat) )), @@ -488,6 +508,8 @@ module.exports = grammar({ ansi_c_string: $ => /\$'([^']|\\')*'/, + number: $ => /(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, + simple_expansion: $ => seq( '$', choice( From fc1cc80acff293a46ed6d996d4fa962aa695b063 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 13:08:23 -0400 Subject: [PATCH 12/16] chore: generate --- src/grammar.json | 454 +- src/node-types.json | 151 + src/parser.c | 227644 ++++++++++++++++++++++-------------- src/tree_sitter/parser.h | 12 +- 4 files changed, 139184 insertions(+), 89077 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 4004dbaf..ed55e27a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -345,8 +345,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_assignment" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "BLANK" @@ -626,8 +635,16 @@ "value": "in" }, { - "type": "SYMBOL", - "name": "_terminator" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -1341,6 +1358,15 @@ { "type": "SYMBOL", "name": "_empty_value" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_word" + }, + "named": true, + "value": "word" } ] } @@ -1614,7 +1640,7 @@ }, "binary_expression": { "type": "PREC_LEFT", - "value": 0, + "value": 2, "content": { "type": "CHOICE", "members": [ @@ -1667,6 +1693,34 @@ "type": "STRING", "value": "-=" }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "**" + }, { "type": "STRING", "value": "<" @@ -1691,6 +1745,46 @@ "type": "STRING", "value": "&&" }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "^=" + }, { "type": "SYMBOL", "name": "test_operator" @@ -1732,6 +1826,10 @@ { "type": "STRING", "value": "=~" + }, + { + "type": "STRING", + "value": "!=" } ] } @@ -1791,30 +1889,80 @@ } }, "unary_expression": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "!" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + } }, { "type": "SYMBOL", - "name": "test_operator" + "name": "_expression" } ] - }, - { - "type": "SYMBOL", - "name": "_expression" } - ] - } + }, + { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "SYMBOL", + "name": "test_operator" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] }, "postfix_expression": { "type": "SEQ", @@ -1891,6 +2039,15 @@ "type": "SYMBOL", "name": "word" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "test_operator" + }, + "named": true, + "value": "word" + }, { "type": "SYMBOL", "name": "string" @@ -1907,6 +2064,10 @@ "type": "SYMBOL", "name": "ansi_c_string" }, + { + "type": "SYMBOL", + "name": "number" + }, { "type": "SYMBOL", "name": "expansion" @@ -1922,6 +2083,31 @@ { "type": "SYMBOL", "name": "process_substitution" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" + } + ] + }, + "arithmetic_expansion": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$(" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "))" } ] }, @@ -1966,6 +2152,15 @@ { "type": "SYMBOL", "name": "_special_character" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_comment_word" + }, + "named": true, + "value": "word" } ] } @@ -2072,6 +2267,10 @@ { "type": "SYMBOL", "name": "command_substitution" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" } ] }, @@ -2160,6 +2359,10 @@ "type": "PATTERN", "value": "\\$'([^']|\\\\')*'" }, + "number": { + "type": "PATTERN", + "value": "(0x)?[0-9]+(#[0-9A-Za-z@_]+)?" + }, "simple_expansion": { "type": "SEQ", "members": [ @@ -2221,25 +2424,20 @@ "value": "${" }, { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "!" - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "!" + } + ] + } }, { "type": "CHOICE", @@ -2331,41 +2529,73 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ":?" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":-" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "#" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "array" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":?" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ":-" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + } + ] + } } } ] @@ -2480,6 +2710,69 @@ } } }, + "_comment_word": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^'\"<>{}\\[\\]()`$|&;\\\\\\s]" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "[^\\s]" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^'\"<>{}\\[\\]()`$|&;\\\\\\s]" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "[^\\s]" + } + ] + }, + { + "type": "STRING", + "value": "\\ " + } + ] + } + } + ] + } + } + }, "_simple_variable_name": { "type": "ALIAS", "content": { @@ -2575,6 +2868,10 @@ "value": "[^\\s]" } ] + }, + { + "type": "STRING", + "value": "\\ " } ] } @@ -2642,7 +2939,12 @@ "value": "\\\\( |\\t|\\v|\\f)" } ], - "conflicts": [], + "conflicts": [ + [ + "_expression", + "command_name" + ] + ], "precedences": [], "externals": [ { diff --git a/src/node-types.json b/src/node-types.json index f20fa027..77ec135e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -45,6 +45,10 @@ "type": "ansi_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -53,6 +57,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -153,6 +161,21 @@ } ] }, + { + "type": "arithmetic_expansion", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, { "type": "array", "named": true, @@ -194,10 +217,38 @@ "type": "!=", "named": false }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, { "type": "&&", "named": false }, + { + "type": "&=", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "*=", + "named": false + }, { "type": "+", "named": false @@ -214,10 +265,26 @@ "type": "-=", "named": false }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, { "type": "<", "named": false }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, { "type": "<=", "named": false @@ -242,10 +309,34 @@ "type": ">=", "named": false }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, { "type": "test_operator", "named": true }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, { "type": "||", "named": false @@ -303,6 +394,10 @@ { "type": "_expression", "named": true + }, + { + "type": "variable_assignment", + "named": true } ] }, @@ -634,6 +729,10 @@ "type": "_primary_expression", "named": true }, + { + "type": "array", + "named": true + }, { "type": "concatenation", "named": true @@ -1076,6 +1175,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1369,6 +1472,10 @@ "type": "%", "named": false }, + { + "type": "%=", + "named": false + }, { "type": "&", "named": false @@ -1377,6 +1484,10 @@ "type": "&&", "named": false }, + { + "type": "&=", + "named": false + }, { "type": "&>", "named": false @@ -1401,6 +1512,18 @@ "type": "))", "named": false }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "*=", + "named": false + }, { "type": "+", "named": false @@ -1429,6 +1552,10 @@ "type": "/", "named": false }, + { + "type": "/=", + "named": false + }, { "type": ":", "named": false @@ -1481,6 +1608,10 @@ "type": "<<<", "named": false }, + { + "type": "<<=", + "named": false + }, { "type": "<=", "named": false @@ -1517,6 +1648,10 @@ "type": ">>", "named": false }, + { + "type": ">>=", + "named": false + }, { "type": ">|", "named": false @@ -1541,6 +1676,14 @@ "type": "]]", "named": false }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, { "type": "`", "named": false @@ -1617,6 +1760,10 @@ "type": "local", "named": false }, + { + "type": "number", + "named": true + }, { "type": "raw_string", "named": true @@ -1681,6 +1828,10 @@ "type": "|&", "named": false }, + { + "type": "|=", + "named": false + }, { "type": "||", "named": false diff --git a/src/parser.c b/src/parser.c index d2327cac..833f7e90 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3571 -#define LARGE_STATE_COUNT 168 -#define SYMBOL_COUNT 164 +#define STATE_COUNT 4283 +#define LARGE_STATE_COUNT 227 +#define SYMBOL_COUNT 180 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 103 +#define TOKEN_COUNT 117 #define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -87,107 +87,123 @@ enum { anon_sym_PLUS = 60, anon_sym_DASH = 61, anon_sym_DASH_EQ = 62, - anon_sym_LT_EQ = 63, - anon_sym_GT_EQ = 64, - anon_sym_QMARK = 65, - anon_sym_COLON = 66, - anon_sym_PLUS_PLUS = 67, - anon_sym_DASH_DASH = 68, - anon_sym_DOLLAR = 69, - sym__special_character = 70, - anon_sym_DQUOTE = 71, - sym__string_content = 72, - sym_raw_string = 73, - sym_ansi_c_string = 74, - anon_sym_POUND = 75, - anon_sym_DOLLAR_LBRACE = 76, - anon_sym_SLASH = 77, - anon_sym_COLON_QMARK = 78, - anon_sym_COLON_DASH = 79, - anon_sym_PERCENT = 80, - anon_sym_DOLLAR_LPAREN = 81, - anon_sym_BQUOTE = 82, - anon_sym_LT_LPAREN = 83, - anon_sym_GT_LPAREN = 84, - sym_comment = 85, - aux_sym__simple_variable_name_token1 = 86, - anon_sym_STAR = 87, - anon_sym_AT = 88, - anon_sym_0 = 89, - anon_sym__ = 90, - sym_test_operator = 91, - anon_sym_AMP = 92, - sym_heredoc_start = 93, - sym__simple_heredoc_body = 94, - sym__heredoc_body_beginning = 95, - sym__heredoc_body_middle = 96, - sym__heredoc_body_end = 97, - sym_file_descriptor = 98, - sym__empty_value = 99, - sym__concat = 100, - sym_variable_name = 101, - sym_regex = 102, - sym_program = 103, - sym__statements = 104, - aux_sym__statements2 = 105, - sym__terminated_statement = 106, - sym_redirected_statement = 107, - sym_for_statement = 108, - sym_c_style_for_statement = 109, - sym_while_statement = 110, - sym_do_group = 111, - sym_if_statement = 112, - sym_elif_clause = 113, - sym_else_clause = 114, - sym_case_statement = 115, - sym_case_item = 116, - sym_last_case_item = 117, - sym_function_definition = 118, - sym_compound_statement = 119, - sym_subshell = 120, - sym_pipeline = 121, - sym_list = 122, - sym_negated_command = 123, - sym_test_command = 124, - sym_declaration_command = 125, - sym_unset_command = 126, - sym_command = 127, - sym_command_name = 128, - sym_variable_assignment = 129, - sym_subscript = 130, - sym_file_redirect = 131, - sym_heredoc_redirect = 132, - sym_heredoc_body = 133, - sym_herestring_redirect = 134, - sym__expression = 135, - sym_binary_expression = 136, - sym_ternary_expression = 137, - sym_unary_expression = 138, - sym_postfix_expression = 139, - sym_parenthesized_expression = 140, - sym_concatenation = 141, - sym_string = 142, - sym_translated_string = 143, - sym_array = 144, - sym_simple_expansion = 145, - sym_expansion = 146, - sym_command_substitution = 147, - sym_process_substitution = 148, - aux_sym__statements_repeat1 = 149, - aux_sym_redirected_statement_repeat1 = 150, - aux_sym_for_statement_repeat1 = 151, - aux_sym_if_statement_repeat1 = 152, - aux_sym_case_statement_repeat1 = 153, - aux_sym_case_item_repeat1 = 154, - aux_sym_declaration_command_repeat1 = 155, - aux_sym_unset_command_repeat1 = 156, - aux_sym_command_repeat1 = 157, - aux_sym_command_repeat2 = 158, - aux_sym_heredoc_body_repeat1 = 159, - aux_sym__literal_repeat1 = 160, - aux_sym_concatenation_repeat1 = 161, - aux_sym_string_repeat1 = 162, - aux_sym_expansion_repeat1 = 163, + anon_sym_STAR = 63, + anon_sym_SLASH = 64, + anon_sym_STAR_EQ = 65, + anon_sym_SLASH_EQ = 66, + anon_sym_PERCENT = 67, + anon_sym_PERCENT_EQ = 68, + anon_sym_STAR_STAR = 69, + anon_sym_LT_EQ = 70, + anon_sym_GT_EQ = 71, + anon_sym_LT_LT_EQ = 72, + anon_sym_GT_GT_EQ = 73, + anon_sym_AMP = 74, + anon_sym_CARET = 75, + anon_sym_AMP_EQ = 76, + anon_sym_PIPE_EQ = 77, + anon_sym_CARET_EQ = 78, + anon_sym_QMARK = 79, + anon_sym_COLON = 80, + aux_sym_unary_expression_token1 = 81, + anon_sym_PLUS_PLUS = 82, + anon_sym_DASH_DASH = 83, + anon_sym_DOLLAR_LPAREN = 84, + anon_sym_DOLLAR = 85, + sym__special_character = 86, + anon_sym_DQUOTE = 87, + sym__string_content = 88, + sym_raw_string = 89, + sym_ansi_c_string = 90, + sym_number = 91, + anon_sym_POUND = 92, + anon_sym_DOLLAR_LBRACE = 93, + anon_sym_SLASH2 = 94, + anon_sym_COLON_QMARK = 95, + anon_sym_COLON_DASH = 96, + anon_sym_BQUOTE = 97, + anon_sym_LT_LPAREN = 98, + anon_sym_GT_LPAREN = 99, + sym_comment = 100, + sym__comment_word = 101, + aux_sym__simple_variable_name_token1 = 102, + anon_sym_AT = 103, + anon_sym_0 = 104, + anon_sym__ = 105, + sym_test_operator = 106, + sym_heredoc_start = 107, + sym__simple_heredoc_body = 108, + sym__heredoc_body_beginning = 109, + sym__heredoc_body_middle = 110, + sym__heredoc_body_end = 111, + sym_file_descriptor = 112, + sym__empty_value = 113, + sym__concat = 114, + sym_variable_name = 115, + sym_regex = 116, + sym_program = 117, + sym__statements = 118, + aux_sym__statements2 = 119, + sym__terminated_statement = 120, + sym_redirected_statement = 121, + sym_for_statement = 122, + sym_c_style_for_statement = 123, + sym_while_statement = 124, + sym_do_group = 125, + sym_if_statement = 126, + sym_elif_clause = 127, + sym_else_clause = 128, + sym_case_statement = 129, + sym_case_item = 130, + sym_last_case_item = 131, + sym_function_definition = 132, + sym_compound_statement = 133, + sym_subshell = 134, + sym_pipeline = 135, + sym_list = 136, + sym_negated_command = 137, + sym_test_command = 138, + sym_declaration_command = 139, + sym_unset_command = 140, + sym_command = 141, + sym_command_name = 142, + sym_variable_assignment = 143, + sym_subscript = 144, + sym_file_redirect = 145, + sym_heredoc_redirect = 146, + sym_heredoc_body = 147, + sym_herestring_redirect = 148, + sym__expression = 149, + sym_binary_expression = 150, + sym_ternary_expression = 151, + sym_unary_expression = 152, + sym_postfix_expression = 153, + sym_parenthesized_expression = 154, + sym_arithmetic_expansion = 155, + sym_concatenation = 156, + sym_string = 157, + sym_translated_string = 158, + sym_array = 159, + sym_simple_expansion = 160, + sym_expansion = 161, + sym_command_substitution = 162, + sym_process_substitution = 163, + aux_sym__statements_repeat1 = 164, + aux_sym_redirected_statement_repeat1 = 165, + aux_sym_for_statement_repeat1 = 166, + aux_sym_if_statement_repeat1 = 167, + aux_sym_case_statement_repeat1 = 168, + aux_sym_case_item_repeat1 = 169, + aux_sym_declaration_command_repeat1 = 170, + aux_sym_unset_command_repeat1 = 171, + aux_sym_command_repeat1 = 172, + aux_sym_command_repeat2 = 173, + aux_sym_heredoc_body_repeat1 = 174, + aux_sym__literal_repeat1 = 175, + aux_sym_concatenation_repeat1 = 176, + aux_sym_string_repeat1 = 177, + aux_sym_expansion_repeat1 = 178, + aux_sym_expansion_repeat2 = 179, }; static const char * const ts_symbol_names[] = { @@ -254,36 +270,50 @@ static const char * const ts_symbol_names[] = { [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT] = "%", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_STAR_STAR] = "**", [anon_sym_LT_EQ] = "<=", [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_AMP] = "&", + [anon_sym_CARET] = "^", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_CARET_EQ] = "^=", [anon_sym_QMARK] = "\?", [anon_sym_COLON] = ":", + [aux_sym_unary_expression_token1] = "unary_expression_token1", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", + [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_DOLLAR] = "$", [sym__special_character] = "_special_character", [anon_sym_DQUOTE] = "\"", [sym__string_content] = "_string_content", [sym_raw_string] = "raw_string", [sym_ansi_c_string] = "ansi_c_string", + [sym_number] = "number", [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", - [anon_sym_SLASH] = "/", + [anon_sym_SLASH2] = "/", [anon_sym_COLON_QMARK] = ":\?", [anon_sym_COLON_DASH] = ":-", - [anon_sym_PERCENT] = "%", - [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", [anon_sym_LT_LPAREN] = "<(", [anon_sym_GT_LPAREN] = ">(", [sym_comment] = "comment", + [sym__comment_word] = "word", [aux_sym__simple_variable_name_token1] = "variable_name", - [anon_sym_STAR] = "special_variable_name", [anon_sym_AT] = "special_variable_name", [anon_sym_0] = "special_variable_name", [anon_sym__] = "special_variable_name", [sym_test_operator] = "test_operator", - [anon_sym_AMP] = "&", [sym_heredoc_start] = "heredoc_start", [sym__simple_heredoc_body] = "_simple_heredoc_body", [sym__heredoc_body_beginning] = "_heredoc_body_beginning", @@ -332,6 +362,7 @@ static const char * const ts_symbol_names[] = { [sym_unary_expression] = "unary_expression", [sym_postfix_expression] = "postfix_expression", [sym_parenthesized_expression] = "parenthesized_expression", + [sym_arithmetic_expansion] = "arithmetic_expansion", [sym_concatenation] = "concatenation", [sym_string] = "string", [sym_translated_string] = "translated_string", @@ -355,6 +386,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_expansion_repeat1] = "expansion_repeat1", + [aux_sym_expansion_repeat2] = "expansion_repeat2", }; static const TSSymbol ts_symbol_map[] = { @@ -421,36 +453,50 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_COLON] = anon_sym_COLON, + [aux_sym_unary_expression_token1] = aux_sym_unary_expression_token1, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_DOLLAR] = anon_sym_DOLLAR, [sym__special_character] = sym__special_character, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [sym__string_content] = sym__string_content, [sym_raw_string] = sym_raw_string, [sym_ansi_c_string] = sym_ansi_c_string, + [sym_number] = sym_number, [anon_sym_POUND] = anon_sym_POUND, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, - [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_SLASH2] = anon_sym_SLASH, [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_LT_LPAREN] = anon_sym_LT_LPAREN, [anon_sym_GT_LPAREN] = anon_sym_GT_LPAREN, [sym_comment] = sym_comment, + [sym__comment_word] = sym_word, [aux_sym__simple_variable_name_token1] = sym_variable_name, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_AT] = anon_sym_STAR, - [anon_sym_0] = anon_sym_STAR, - [anon_sym__] = anon_sym_STAR, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_0] = anon_sym_AT, + [anon_sym__] = anon_sym_AT, [sym_test_operator] = sym_test_operator, - [anon_sym_AMP] = anon_sym_AMP, [sym_heredoc_start] = sym_heredoc_start, [sym__simple_heredoc_body] = sym__simple_heredoc_body, [sym__heredoc_body_beginning] = sym__heredoc_body_beginning, @@ -499,6 +545,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_unary_expression] = sym_unary_expression, [sym_postfix_expression] = sym_postfix_expression, [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_arithmetic_expansion] = sym_arithmetic_expansion, [sym_concatenation] = sym_concatenation, [sym_string] = sym_string, [sym_translated_string] = sym_translated_string, @@ -522,6 +569,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_repeat1] = aux_sym_expansion_repeat1, + [aux_sym_expansion_repeat2] = aux_sym_expansion_repeat2, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -777,6 +825,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, [anon_sym_LT_EQ] = { .visible = true, .named = false, @@ -785,6 +861,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK] = { .visible = true, .named = false, @@ -793,6 +897,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_unary_expression_token1] = { + .visible = false, + .named = false, + }, [anon_sym_PLUS_PLUS] = { .visible = true, .named = false, @@ -801,6 +909,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOLLAR_LPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLAR] = { .visible = true, .named = false, @@ -825,6 +937,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_number] = { + .visible = true, + .named = true, + }, [anon_sym_POUND] = { .visible = true, .named = false, @@ -833,7 +949,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_SLASH2] = { .visible = true, .named = false, }, @@ -845,14 +961,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR_LPAREN] = { - .visible = true, - .named = false, - }, [anon_sym_BQUOTE] = { .visible = true, .named = false, @@ -869,11 +977,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [aux_sym__simple_variable_name_token1] = { + [sym__comment_word] = { .visible = true, .named = true, }, - [anon_sym_STAR] = { + [aux_sym__simple_variable_name_token1] = { .visible = true, .named = true, }, @@ -893,10 +1001,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, [sym_heredoc_start] = { .visible = true, .named = true, @@ -1090,6 +1194,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_arithmetic_expansion] = { + .visible = true, + .named = true, + }, [sym_concatenation] = { .visible = true, .named = true, @@ -1182,6 +1290,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_expansion_repeat2] = { + .visible = false, + .named = false, + }, }; enum { @@ -1230,13 +1342,13 @@ static const char * const ts_field_names[] = { }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, + [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 1, .length = 1}, [6] = {.index = 2, .length = 2}, [7] = {.index = 4, .length = 1}, - [8] = {.index = 5, .length = 2}, - [9] = {.index = 4, .length = 1}, + [8] = {.index = 4, .length = 1}, + [9] = {.index = 5, .length = 2}, [10] = {.index = 7, .length = 1}, [11] = {.index = 8, .length = 2}, [12] = {.index = 8, .length = 2}, @@ -1253,69 +1365,69 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [24] = {.index = 24, .length = 2}, [25] = {.index = 26, .length = 3}, [26] = {.index = 29, .length = 1}, - [28] = {.index = 30, .length = 2}, - [29] = {.index = 32, .length = 1}, - [30] = {.index = 32, .length = 1}, + [27] = {.index = 30, .length = 1}, + [28] = {.index = 30, .length = 1}, + [30] = {.index = 31, .length = 2}, [31] = {.index = 33, .length = 1}, [32] = {.index = 33, .length = 1}, - [33] = {.index = 34, .length = 2}, - [35] = {.index = 36, .length = 1}, - [36] = {.index = 37, .length = 3}, - [37] = {.index = 40, .length = 3}, - [38] = {.index = 43, .length = 1}, - [39] = {.index = 43, .length = 1}, - [41] = {.index = 44, .length = 1}, - [42] = {.index = 45, .length = 2}, - [43] = {.index = 47, .length = 2}, - [44] = {.index = 49, .length = 2}, - [45] = {.index = 51, .length = 2}, - [46] = {.index = 53, .length = 2}, - [47] = {.index = 55, .length = 2}, - [48] = {.index = 57, .length = 2}, - [49] = {.index = 51, .length = 2}, - [50] = {.index = 53, .length = 2}, - [51] = {.index = 55, .length = 2}, + [33] = {.index = 34, .length = 1}, + [34] = {.index = 34, .length = 1}, + [35] = {.index = 35, .length = 2}, + [37] = {.index = 37, .length = 1}, + [38] = {.index = 38, .length = 3}, + [39] = {.index = 41, .length = 3}, + [40] = {.index = 44, .length = 2}, + [41] = {.index = 46, .length = 2}, + [42] = {.index = 48, .length = 2}, + [43] = {.index = 50, .length = 2}, + [44] = {.index = 44, .length = 2}, + [45] = {.index = 46, .length = 2}, + [46] = {.index = 48, .length = 2}, + [48] = {.index = 52, .length = 1}, + [49] = {.index = 53, .length = 2}, + [50] = {.index = 55, .length = 2}, + [51] = {.index = 57, .length = 2}, [52] = {.index = 59, .length = 2}, [53] = {.index = 61, .length = 2}, - [54] = {.index = 63, .length = 3}, - [55] = {.index = 66, .length = 2}, - [56] = {.index = 68, .length = 3}, - [57] = {.index = 71, .length = 3}, - [58] = {.index = 74, .length = 2}, - [59] = {.index = 76, .length = 2}, - [60] = {.index = 78, .length = 2}, - [61] = {.index = 74, .length = 2}, - [62] = {.index = 76, .length = 2}, - [63] = {.index = 78, .length = 2}, - [64] = {.index = 80, .length = 2}, - [65] = {.index = 82, .length = 2}, - [66] = {.index = 84, .length = 3}, - [67] = {.index = 87, .length = 3}, - [68] = {.index = 80, .length = 2}, + [54] = {.index = 63, .length = 2}, + [55] = {.index = 59, .length = 2}, + [56] = {.index = 61, .length = 2}, + [57] = {.index = 63, .length = 2}, + [58] = {.index = 65, .length = 2}, + [59] = {.index = 67, .length = 2}, + [60] = {.index = 69, .length = 3}, + [61] = {.index = 72, .length = 3}, + [62] = {.index = 65, .length = 2}, + [63] = {.index = 67, .length = 2}, + [64] = {.index = 69, .length = 3}, + [65] = {.index = 72, .length = 3}, + [66] = {.index = 75, .length = 2}, + [67] = {.index = 77, .length = 2}, + [68] = {.index = 79, .length = 3}, [69] = {.index = 82, .length = 2}, [70] = {.index = 84, .length = 3}, [71] = {.index = 87, .length = 3}, - [72] = {.index = 90, .length = 3}, - [73] = {.index = 93, .length = 3}, - [74] = {.index = 96, .length = 3}, - [75] = {.index = 99, .length = 4}, - [76] = {.index = 103, .length = 2}, - [77] = {.index = 105, .length = 2}, - [78] = {.index = 107, .length = 3}, - [79] = {.index = 110, .length = 3}, - [80] = {.index = 103, .length = 2}, - [81] = {.index = 105, .length = 2}, - [82] = {.index = 107, .length = 3}, - [83] = {.index = 110, .length = 3}, - [84] = {.index = 113, .length = 3}, - [85] = {.index = 116, .length = 3}, - [86] = {.index = 113, .length = 3}, - [87] = {.index = 116, .length = 3}, - [88] = {.index = 119, .length = 4}, - [89] = {.index = 123, .length = 3}, - [90] = {.index = 126, .length = 3}, - [91] = {.index = 123, .length = 3}, - [92] = {.index = 126, .length = 3}, + [72] = {.index = 90, .length = 2}, + [73] = {.index = 92, .length = 2}, + [74] = {.index = 94, .length = 3}, + [75] = {.index = 97, .length = 3}, + [76] = {.index = 90, .length = 2}, + [77] = {.index = 92, .length = 2}, + [78] = {.index = 94, .length = 3}, + [79] = {.index = 97, .length = 3}, + [80] = {.index = 100, .length = 3}, + [81] = {.index = 103, .length = 3}, + [82] = {.index = 100, .length = 3}, + [83] = {.index = 103, .length = 3}, + [84] = {.index = 106, .length = 3}, + [85] = {.index = 109, .length = 3}, + [86] = {.index = 112, .length = 3}, + [87] = {.index = 115, .length = 4}, + [88] = {.index = 119, .length = 3}, + [89] = {.index = 122, .length = 3}, + [90] = {.index = 119, .length = 3}, + [91] = {.index = 122, .length = 3}, + [92] = {.index = 125, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1367,160 +1479,160 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [29] = {field_condition, 1}, [30] = + {field_value, 1}, + [31] = {field_body, 3}, {field_name, 0}, - [32] = - {field_descriptor, 0}, [33] = - {field_value, 1}, + {field_descriptor, 0}, [34] = + {field_value, 0}, + [35] = {field_body, 4}, {field_name, 1}, - [36] = - {field_body, 5}, [37] = {field_body, 5}, + [38] = + {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [40] = + [41] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [43] = - {field_value, 0}, [44] = - {field_body, 6}, - [45] = - {field_body, 6}, - {field_update, 4}, - [47] = - {field_body, 6}, - {field_condition, 3}, - [49] = - {field_body, 6}, - {field_initializer, 2}, - [51] = {field_termination, 2}, {field_value, 0}, - [53] = + [46] = {field_fallthrough, 2}, {field_value, 0}, - [55] = + [48] = {field_value, 0}, {field_value, 1, .inherited = true}, - [57] = + [50] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [59] = - {field_body, 7}, + [52] = + {field_body, 6}, + [53] = + {field_body, 6}, {field_update, 4}, - [61] = - {field_body, 7}, - {field_condition, 3}, - [63] = - {field_body, 7}, + [55] = + {field_body, 6}, {field_condition, 3}, - {field_update, 5}, - [66] = - {field_body, 7}, - {field_initializer, 2}, - [68] = - {field_body, 7}, - {field_initializer, 2}, - {field_update, 5}, - [71] = - {field_body, 7}, - {field_condition, 4}, + [57] = + {field_body, 6}, {field_initializer, 2}, - [74] = + [59] = {field_termination, 3}, {field_value, 1}, - [76] = + [61] = {field_fallthrough, 3}, {field_value, 1}, - [78] = + [63] = {field_value, 1}, {field_value, 2, .inherited = true}, - [80] = + [65] = {field_termination, 3}, {field_value, 0}, - [82] = + [67] = {field_fallthrough, 3}, {field_value, 0}, - [84] = + [69] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [87] = + [72] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [90] = - {field_body, 8}, + [75] = + {field_body, 7}, + {field_update, 4}, + [77] = + {field_body, 7}, + {field_condition, 3}, + [79] = + {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [93] = - {field_body, 8}, + [82] = + {field_body, 7}, {field_initializer, 2}, - {field_update, 5}, - [96] = - {field_body, 8}, - {field_condition, 4}, + [84] = + {field_body, 7}, {field_initializer, 2}, - [99] = - {field_body, 8}, + {field_update, 5}, + [87] = + {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - {field_update, 6}, - [103] = + [90] = {field_termination, 4}, {field_value, 1}, - [105] = + [92] = {field_fallthrough, 4}, {field_value, 1}, - [107] = + [94] = {field_termination, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [110] = + [97] = {field_fallthrough, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [113] = + [100] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [116] = + [103] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [119] = - {field_body, 9}, + [106] = + {field_body, 8}, + {field_condition, 3}, + {field_update, 5}, + [109] = + {field_body, 8}, + {field_initializer, 2}, + {field_update, 5}, + [112] = + {field_body, 8}, + {field_condition, 4}, + {field_initializer, 2}, + [115] = + {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, - [123] = + [119] = {field_termination, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [126] = + [122] = {field_fallthrough, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, + [125] = + {field_body, 9}, + {field_condition, 4}, + {field_initializer, 2}, + {field_update, 6}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [2] = { + [1] = { [0] = sym_word, }, [4] = { [1] = sym_word, }, [5] = { - [1] = anon_sym_STAR, + [1] = anon_sym_AT, }, - [9] = { + [8] = { [0] = sym_word, }, [12] = { @@ -1538,76 +1650,76 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [23] = { [2] = sym_word, }, - [27] = { - [2] = anon_sym_STAR, + [28] = { + [1] = sym_word, }, - [30] = { - [2] = sym_word, + [29] = { + [2] = anon_sym_AT, }, [32] = { - [1] = sym_word, + [2] = sym_word, }, [34] = { - [3] = sym_word, - }, - [39] = { [0] = sym_word, }, - [40] = { - [4] = sym_word, + [36] = { + [3] = sym_word, }, - [49] = { + [44] = { [0] = sym_word, }, - [50] = { + [45] = { [0] = sym_word, }, - [51] = { + [46] = { [0] = sym_word, }, - [61] = { + [47] = { + [4] = sym_word, + }, + [55] = { [1] = sym_word, }, - [62] = { + [56] = { [1] = sym_word, }, - [63] = { + [57] = { [1] = sym_word, }, - [68] = { + [62] = { [0] = sym_word, }, - [69] = { + [63] = { [0] = sym_word, }, - [70] = { + [64] = { [0] = sym_word, }, - [71] = { + [65] = { [0] = sym_word, }, - [80] = { + [76] = { [1] = sym_word, }, - [81] = { + [77] = { [1] = sym_word, }, - [82] = { + [78] = { [1] = sym_word, }, - [83] = { + [79] = { [1] = sym_word, }, - [86] = { + [82] = { [0] = sym_word, }, - [87] = { + [83] = { [0] = sym_word, }, - [91] = { + [90] = { [1] = sym_word, }, - [92] = { + [91] = { [1] = sym_word, }, }; @@ -1624,3573 +1736,4285 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 4, + [4] = 2, + [5] = 2, [6] = 2, - [7] = 4, + [7] = 2, [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 31, - [33] = 31, - [34] = 34, - [35] = 35, - [36] = 34, + [9] = 2, + [10] = 2, + [11] = 2, + [12] = 2, + [13] = 2, + [14] = 2, + [15] = 2, + [16] = 2, + [17] = 2, + [18] = 2, + [19] = 2, + [20] = 2, + [21] = 2, + [22] = 2, + [23] = 2, + [24] = 2, + [25] = 8, + [26] = 2, + [27] = 2, + [28] = 2, + [29] = 2, + [30] = 2, + [31] = 2, + [32] = 2, + [33] = 2, + [34] = 2, + [35] = 2, + [36] = 2, [37] = 37, - [38] = 34, + [38] = 38, [39] = 39, - [40] = 37, - [41] = 39, - [42] = 34, + [40] = 39, + [41] = 38, + [42] = 38, [43] = 37, [44] = 39, - [45] = 34, + [45] = 45, [46] = 46, - [47] = 37, - [48] = 39, - [49] = 34, - [50] = 37, - [51] = 39, - [52] = 34, - [53] = 37, - [54] = 39, - [55] = 34, - [56] = 37, - [57] = 39, - [58] = 34, - [59] = 37, - [60] = 39, - [61] = 34, - [62] = 37, - [63] = 39, - [64] = 34, - [65] = 37, - [66] = 39, - [67] = 34, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, [68] = 68, - [69] = 37, - [70] = 39, - [71] = 34, - [72] = 37, - [73] = 39, - [74] = 34, - [75] = 37, - [76] = 39, - [77] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 72, + [74] = 72, + [75] = 75, + [76] = 76, + [77] = 76, [78] = 78, - [79] = 37, - [80] = 37, - [81] = 39, - [82] = 34, - [83] = 37, - [84] = 34, - [85] = 39, - [86] = 34, - [87] = 37, - [88] = 39, - [89] = 34, - [90] = 37, - [91] = 39, - [92] = 34, - [93] = 37, - [94] = 39, - [95] = 39, - [96] = 39, - [97] = 30, - [98] = 39, - [99] = 34, - [100] = 37, - [101] = 39, - [102] = 102, - [103] = 34, - [104] = 46, + [79] = 79, + [80] = 76, + [81] = 78, + [82] = 79, + [83] = 76, + [84] = 78, + [85] = 79, + [86] = 76, + [87] = 78, + [88] = 79, + [89] = 76, + [90] = 78, + [91] = 79, + [92] = 76, + [93] = 78, + [94] = 79, + [95] = 76, + [96] = 78, + [97] = 79, + [98] = 76, + [99] = 99, + [100] = 78, + [101] = 79, + [102] = 76, + [103] = 103, + [104] = 78, [105] = 105, - [106] = 37, - [107] = 34, - [108] = 46, - [109] = 102, - [110] = 39, - [111] = 34, - [112] = 30, - [113] = 37, - [114] = 39, - [115] = 34, - [116] = 37, - [117] = 39, - [118] = 34, - [119] = 37, - [120] = 39, - [121] = 37, - [122] = 34, - [123] = 37, - [124] = 39, - [125] = 34, - [126] = 37, - [127] = 39, - [128] = 34, - [129] = 37, - [130] = 39, - [131] = 34, - [132] = 132, - [133] = 68, - [134] = 78, - [135] = 37, - [136] = 39, - [137] = 132, - [138] = 34, - [139] = 132, + [106] = 76, + [107] = 79, + [108] = 78, + [109] = 79, + [110] = 76, + [111] = 78, + [112] = 78, + [113] = 79, + [114] = 76, + [115] = 76, + [116] = 79, + [117] = 78, + [118] = 76, + [119] = 79, + [120] = 78, + [121] = 79, + [122] = 76, + [123] = 78, + [124] = 78, + [125] = 79, + [126] = 76, + [127] = 127, + [128] = 78, + [129] = 79, + [130] = 76, + [131] = 76, + [132] = 78, + [133] = 79, + [134] = 79, + [135] = 79, + [136] = 78, + [137] = 79, + [138] = 76, + [139] = 78, [140] = 78, - [141] = 34, - [142] = 39, - [143] = 30, - [144] = 102, - [145] = 145, - [146] = 146, - [147] = 145, - [148] = 145, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 151, - [153] = 146, - [154] = 146, - [155] = 151, - [156] = 151, - [157] = 151, - [158] = 158, - [159] = 159, - [160] = 158, - [161] = 159, - [162] = 159, - [163] = 158, - [164] = 159, - [165] = 158, - [166] = 158, - [167] = 159, - [168] = 168, - [169] = 169, - [170] = 168, - [171] = 171, - [172] = 172, - [173] = 169, - [174] = 174, - [175] = 175, - [176] = 175, - [177] = 177, - [178] = 172, - [179] = 171, - [180] = 180, - [181] = 174, - [182] = 182, - [183] = 183, - [184] = 175, - [185] = 169, - [186] = 172, - [187] = 177, - [188] = 172, - [189] = 174, - [190] = 171, - [191] = 191, - [192] = 169, - [193] = 183, + [141] = 79, + [142] = 76, + [143] = 76, + [144] = 78, + [145] = 79, + [146] = 76, + [147] = 79, + [148] = 78, + [149] = 75, + [150] = 79, + [151] = 76, + [152] = 78, + [153] = 76, + [154] = 78, + [155] = 79, + [156] = 76, + [157] = 79, + [158] = 78, + [159] = 105, + [160] = 103, + [161] = 63, + [162] = 76, + [163] = 79, + [164] = 78, + [165] = 99, + [166] = 78, + [167] = 79, + [168] = 76, + [169] = 79, + [170] = 78, + [171] = 78, + [172] = 76, + [173] = 76, + [174] = 79, + [175] = 76, + [176] = 176, + [177] = 79, + [178] = 78, + [179] = 75, + [180] = 99, + [181] = 78, + [182] = 79, + [183] = 76, + [184] = 176, + [185] = 176, + [186] = 76, + [187] = 103, + [188] = 188, + [189] = 189, + [190] = 105, + [191] = 79, + [192] = 79, + [193] = 193, [194] = 194, - [195] = 177, + [195] = 195, [196] = 196, - [197] = 182, - [198] = 198, - [199] = 174, - [200] = 200, - [201] = 175, - [202] = 202, - [203] = 177, - [204] = 168, - [205] = 168, - [206] = 196, - [207] = 171, - [208] = 194, - [209] = 177, - [210] = 210, - [211] = 177, - [212] = 212, - [213] = 191, - [214] = 214, - [215] = 215, + [197] = 194, + [198] = 196, + [199] = 194, + [200] = 194, + [201] = 201, + [202] = 194, + [203] = 201, + [204] = 196, + [205] = 201, + [206] = 206, + [207] = 206, + [208] = 208, + [209] = 206, + [210] = 206, + [211] = 208, + [212] = 206, + [213] = 208, + [214] = 208, + [215] = 208, [216] = 216, - [217] = 180, - [218] = 198, - [219] = 202, - [220] = 220, - [221] = 172, - [222] = 177, - [223] = 168, - [224] = 177, - [225] = 171, - [226] = 200, - [227] = 177, - [228] = 169, - [229] = 202, - [230] = 202, - [231] = 198, - [232] = 177, - [233] = 198, - [234] = 177, - [235] = 180, - [236] = 177, - [237] = 177, - [238] = 200, - [239] = 220, - [240] = 180, - [241] = 200, - [242] = 210, - [243] = 191, - [244] = 191, - [245] = 214, - [246] = 177, - [247] = 215, - [248] = 216, - [249] = 200, - [250] = 182, - [251] = 177, - [252] = 194, - [253] = 191, - [254] = 216, - [255] = 196, - [256] = 210, - [257] = 183, - [258] = 220, - [259] = 216, - [260] = 202, - [261] = 214, - [262] = 214, - [263] = 215, - [264] = 210, - [265] = 220, - [266] = 177, - [267] = 198, - [268] = 215, - [269] = 194, - [270] = 182, + [217] = 216, + [218] = 216, + [219] = 216, + [220] = 216, + [221] = 221, + [222] = 216, + [223] = 223, + [224] = 223, + [225] = 221, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 226, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 227, + [248] = 229, + [249] = 232, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 230, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 228, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 254, + [269] = 264, + [270] = 261, [271] = 271, - [272] = 271, - [273] = 271, - [274] = 220, - [275] = 183, - [276] = 210, - [277] = 277, - [278] = 196, - [279] = 271, - [280] = 280, - [281] = 271, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 283, - [288] = 288, - [289] = 286, - [290] = 282, - [291] = 285, - [292] = 292, - [293] = 288, - [294] = 294, - [295] = 284, - [296] = 296, - [297] = 297, - [298] = 296, - [299] = 299, - [300] = 300, - [301] = 297, + [272] = 260, + [273] = 259, + [274] = 246, + [275] = 258, + [276] = 257, + [277] = 255, + [278] = 244, + [279] = 238, + [280] = 235, + [281] = 281, + [282] = 233, + [283] = 253, + [284] = 252, + [285] = 251, + [286] = 265, + [287] = 250, + [288] = 236, + [289] = 245, + [290] = 243, + [291] = 263, + [292] = 266, + [293] = 234, + [294] = 239, + [295] = 240, + [296] = 267, + [297] = 237, + [298] = 242, + [299] = 241, + [300] = 271, + [301] = 281, [302] = 302, - [303] = 288, + [303] = 302, [304] = 304, [305] = 305, - [306] = 305, + [306] = 306, [307] = 307, - [308] = 307, - [309] = 304, - [310] = 310, - [311] = 310, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 312, - [316] = 285, - [317] = 313, - [318] = 284, - [319] = 297, + [308] = 308, + [309] = 309, + [310] = 306, + [311] = 308, + [312] = 304, + [313] = 305, + [314] = 309, + [315] = 221, + [316] = 316, + [317] = 305, + [318] = 221, + [319] = 319, [320] = 320, - [321] = 321, - [322] = 296, - [323] = 323, - [324] = 292, - [325] = 296, - [326] = 326, - [327] = 327, - [328] = 297, + [321] = 309, + [322] = 309, + [323] = 223, + [324] = 304, + [325] = 223, + [326] = 304, + [327] = 305, + [328] = 328, [329] = 329, - [330] = 330, + [330] = 316, [331] = 331, - [332] = 332, - [333] = 288, - [334] = 334, - [335] = 335, - [336] = 336, + [332] = 306, + [333] = 333, + [334] = 329, + [335] = 308, + [336] = 221, [337] = 337, [338] = 338, - [339] = 339, - [340] = 340, - [341] = 282, + [339] = 320, + [340] = 221, + [341] = 223, [342] = 342, - [343] = 343, - [344] = 344, - [345] = 323, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 286, - [352] = 320, - [353] = 297, - [354] = 321, - [355] = 296, - [356] = 283, - [357] = 326, - [358] = 292, - [359] = 296, - [360] = 282, - [361] = 327, - [362] = 297, - [363] = 329, - [364] = 299, - [365] = 288, - [366] = 330, - [367] = 284, - [368] = 331, - [369] = 332, - [370] = 370, - [371] = 335, - [372] = 336, - [373] = 300, - [374] = 338, - [375] = 285, - [376] = 339, - [377] = 377, - [378] = 340, - [379] = 294, - [380] = 302, - [381] = 344, - [382] = 283, - [383] = 343, - [384] = 342, - [385] = 286, - [386] = 288, - [387] = 350, - [388] = 349, - [389] = 347, - [390] = 346, - [391] = 339, - [392] = 335, - [393] = 332, - [394] = 331, - [395] = 330, - [396] = 329, - [397] = 297, - [398] = 286, - [399] = 327, - [400] = 302, - [401] = 326, - [402] = 321, - [403] = 320, - [404] = 335, - [405] = 336, - [406] = 338, - [407] = 407, - [408] = 340, - [409] = 342, - [410] = 343, - [411] = 344, - [412] = 313, - [413] = 323, - [414] = 312, - [415] = 346, - [416] = 347, - [417] = 349, - [418] = 350, - [419] = 310, - [420] = 320, - [421] = 307, - [422] = 321, - [423] = 304, - [424] = 424, - [425] = 305, - [426] = 326, - [427] = 305, - [428] = 428, - [429] = 304, - [430] = 327, - [431] = 307, - [432] = 310, - [433] = 329, - [434] = 330, - [435] = 331, - [436] = 294, - [437] = 332, - [438] = 312, - [439] = 283, - [440] = 440, - [441] = 296, - [442] = 313, - [443] = 335, - [444] = 336, - [445] = 338, - [446] = 313, - [447] = 339, - [448] = 312, - [449] = 340, - [450] = 342, - [451] = 343, - [452] = 344, - [453] = 310, - [454] = 323, - [455] = 307, - [456] = 346, - [457] = 424, - [458] = 347, - [459] = 305, - [460] = 349, - [461] = 304, - [462] = 350, - [463] = 304, - [464] = 305, - [465] = 307, - [466] = 310, - [467] = 312, - [468] = 282, - [469] = 313, - [470] = 320, - [471] = 321, - [472] = 300, - [473] = 296, - [474] = 474, - [475] = 326, - [476] = 428, - [477] = 288, - [478] = 327, - [479] = 297, - [480] = 297, - [481] = 428, - [482] = 296, - [483] = 329, - [484] = 330, - [485] = 331, - [486] = 486, - [487] = 428, - [488] = 488, - [489] = 284, - [490] = 332, - [491] = 288, - [492] = 299, - [493] = 314, - [494] = 494, - [495] = 334, - [496] = 288, - [497] = 377, - [498] = 370, - [499] = 288, - [500] = 292, - [501] = 337, - [502] = 288, - [503] = 350, - [504] = 349, - [505] = 347, - [506] = 346, - [507] = 323, - [508] = 292, - [509] = 344, - [510] = 350, - [511] = 343, - [512] = 342, - [513] = 340, - [514] = 296, - [515] = 339, - [516] = 336, - [517] = 338, - [518] = 348, - [519] = 302, - [520] = 339, - [521] = 338, - [522] = 340, - [523] = 342, - [524] = 336, - [525] = 343, - [526] = 297, - [527] = 294, - [528] = 344, - [529] = 323, - [530] = 296, - [531] = 346, - [532] = 348, - [533] = 347, - [534] = 349, - [535] = 320, - [536] = 321, - [537] = 300, - [538] = 292, - [539] = 296, - [540] = 540, - [541] = 326, - [542] = 542, - [543] = 327, - [544] = 544, - [545] = 288, - [546] = 335, - [547] = 297, - [548] = 329, - [549] = 330, - [550] = 331, - [551] = 332, - [552] = 297, - [553] = 299, - [554] = 349, - [555] = 346, - [556] = 304, - [557] = 370, - [558] = 305, - [559] = 310, - [560] = 305, - [561] = 288, - [562] = 304, - [563] = 288, - [564] = 320, - [565] = 297, - [566] = 424, - [567] = 292, - [568] = 540, - [569] = 542, - [570] = 327, - [571] = 296, - [572] = 297, - [573] = 350, - [574] = 307, - [575] = 347, - [576] = 346, - [577] = 323, - [578] = 307, - [579] = 314, - [580] = 310, - [581] = 313, - [582] = 338, - [583] = 344, - [584] = 343, - [585] = 342, - [586] = 340, - [587] = 339, - [588] = 540, - [589] = 338, - [590] = 336, - [591] = 335, - [592] = 313, - [593] = 334, - [594] = 542, - [595] = 377, - [596] = 312, - [597] = 312, - [598] = 332, - [599] = 331, - [600] = 330, - [601] = 329, - [602] = 310, - [603] = 544, - [604] = 296, - [605] = 337, - [606] = 313, - [607] = 312, - [608] = 338, - [609] = 321, - [610] = 307, - [611] = 296, - [612] = 326, - [613] = 544, - [614] = 326, - [615] = 305, - [616] = 297, - [617] = 304, - [618] = 321, - [619] = 320, - [620] = 329, - [621] = 330, - [622] = 331, - [623] = 332, - [624] = 348, - [625] = 335, - [626] = 307, - [627] = 336, - [628] = 349, - [629] = 339, - [630] = 340, - [631] = 342, - [632] = 336, - [633] = 343, - [634] = 320, - [635] = 321, - [636] = 326, - [637] = 335, - [638] = 327, - [639] = 313, - [640] = 329, - [641] = 330, - [642] = 331, - [643] = 332, - [644] = 335, - [645] = 336, - [646] = 338, - [647] = 344, - [648] = 339, - [649] = 440, - [650] = 340, - [651] = 342, - [652] = 343, - [653] = 344, - [654] = 323, - [655] = 348, - [656] = 347, - [657] = 349, - [658] = 348, - [659] = 323, - [660] = 350, - [661] = 346, - [662] = 320, - [663] = 347, - [664] = 321, - [665] = 474, - [666] = 326, - [667] = 327, - [668] = 329, - [669] = 330, - [670] = 331, - [671] = 486, - [672] = 332, - [673] = 349, - [674] = 350, - [675] = 335, - [676] = 327, - [677] = 313, - [678] = 336, - [679] = 488, - [680] = 337, - [681] = 312, - [682] = 338, - [683] = 339, - [684] = 340, - [685] = 342, - [686] = 350, - [687] = 343, - [688] = 344, - [689] = 288, - [690] = 323, - [691] = 346, - [692] = 349, - [693] = 347, - [694] = 296, - [695] = 339, - [696] = 349, - [697] = 347, - [698] = 350, - [699] = 346, - [700] = 323, - [701] = 344, - [702] = 312, - [703] = 343, - [704] = 332, - [705] = 331, - [706] = 297, - [707] = 330, - [708] = 329, - [709] = 340, - [710] = 342, - [711] = 340, - [712] = 339, - [713] = 320, - [714] = 321, - [715] = 304, - [716] = 288, - [717] = 305, - [718] = 326, - [719] = 310, - [720] = 310, - [721] = 342, - [722] = 307, - [723] = 343, - [724] = 292, - [725] = 424, - [726] = 327, - [727] = 370, - [728] = 305, - [729] = 304, - [730] = 326, - [731] = 338, - [732] = 327, - [733] = 336, - [734] = 335, - [735] = 313, - [736] = 305, - [737] = 177, - [738] = 304, - [739] = 321, - [740] = 320, - [741] = 377, - [742] = 334, - [743] = 344, - [744] = 331, - [745] = 332, - [746] = 312, - [747] = 323, - [748] = 346, - [749] = 347, - [750] = 424, - [751] = 314, - [752] = 330, - [753] = 307, - [754] = 424, - [755] = 350, - [756] = 310, - [757] = 329, - [758] = 544, - [759] = 347, - [760] = 323, - [761] = 344, - [762] = 343, - [763] = 342, - [764] = 340, - [765] = 339, - [766] = 338, - [767] = 336, - [768] = 335, - [769] = 350, - [770] = 349, - [771] = 347, - [772] = 332, - [773] = 331, - [774] = 330, - [775] = 329, - [776] = 327, - [777] = 424, - [778] = 326, - [779] = 486, - [780] = 321, - [781] = 320, - [782] = 474, - [783] = 783, - [784] = 304, - [785] = 486, - [786] = 313, - [787] = 488, - [788] = 305, - [789] = 312, - [790] = 307, - [791] = 310, - [792] = 310, - [793] = 312, - [794] = 307, - [795] = 313, - [796] = 305, - [797] = 304, - [798] = 424, - [799] = 348, - [800] = 320, - [801] = 321, - [802] = 326, - [803] = 424, - [804] = 329, - [805] = 330, - [806] = 540, - [807] = 331, - [808] = 783, - [809] = 332, - [810] = 335, - [811] = 336, - [812] = 542, - [813] = 338, - [814] = 339, - [815] = 340, - [816] = 342, - [817] = 343, - [818] = 344, - [819] = 323, - [820] = 346, - [821] = 347, - [822] = 544, - [823] = 327, - [824] = 349, - [825] = 350, - [826] = 327, - [827] = 350, - [828] = 349, - [829] = 346, - [830] = 346, - [831] = 783, - [832] = 323, - [833] = 344, - [834] = 343, - [835] = 342, - [836] = 340, - [837] = 339, - [838] = 338, - [839] = 336, - [840] = 335, - [841] = 313, - [842] = 312, - [843] = 332, - [844] = 331, - [845] = 330, - [846] = 177, - [847] = 329, - [848] = 310, - [849] = 440, - [850] = 307, - [851] = 348, - [852] = 424, - [853] = 326, - [854] = 424, - [855] = 305, - [856] = 783, - [857] = 304, - [858] = 321, - [859] = 320, - [860] = 304, - [861] = 305, - [862] = 307, - [863] = 424, - [864] = 310, - [865] = 440, - [866] = 312, - [867] = 313, - [868] = 474, - [869] = 320, - [870] = 321, - [871] = 326, - [872] = 329, - [873] = 330, - [874] = 331, - [875] = 332, - [876] = 335, - [877] = 540, - [878] = 336, - [879] = 338, - [880] = 339, - [881] = 542, - [882] = 340, - [883] = 342, - [884] = 343, - [885] = 344, - [886] = 323, - [887] = 346, - [888] = 347, - [889] = 349, - [890] = 350, - [891] = 544, - [892] = 327, - [893] = 177, - [894] = 783, - [895] = 488, - [896] = 540, - [897] = 542, - [898] = 177, - [899] = 540, - [900] = 424, - [901] = 542, - [902] = 544, - [903] = 424, - [904] = 540, - [905] = 542, - [906] = 424, - [907] = 424, - [908] = 544, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 910, - [913] = 910, - [914] = 911, - [915] = 911, - [916] = 909, - [917] = 177, - [918] = 177, - [919] = 909, - [920] = 177, - [921] = 921, - [922] = 922, - [923] = 921, - [924] = 922, - [925] = 921, - [926] = 926, - [927] = 926, + [343] = 223, + [344] = 328, + [345] = 345, + [346] = 221, + [347] = 333, + [348] = 223, + [349] = 337, + [350] = 331, + [351] = 351, + [352] = 307, + [353] = 319, + [354] = 354, + [355] = 308, + [356] = 351, + [357] = 309, + [358] = 358, + [359] = 306, + [360] = 221, + [361] = 223, + [362] = 304, + [363] = 316, + [364] = 306, + [365] = 320, + [366] = 319, + [367] = 223, + [368] = 320, + [369] = 223, + [370] = 329, + [371] = 328, + [372] = 221, + [373] = 316, + [374] = 319, + [375] = 221, + [376] = 223, + [377] = 342, + [378] = 223, + [379] = 308, + [380] = 354, + [381] = 381, + [382] = 223, + [383] = 328, + [384] = 221, + [385] = 221, + [386] = 338, + [387] = 329, + [388] = 221, + [389] = 221, + [390] = 221, + [391] = 223, + [392] = 354, + [393] = 223, + [394] = 223, + [395] = 338, + [396] = 223, + [397] = 221, + [398] = 221, + [399] = 221, + [400] = 221, + [401] = 342, + [402] = 223, + [403] = 221, + [404] = 223, + [405] = 338, + [406] = 320, + [407] = 223, + [408] = 342, + [409] = 328, + [410] = 316, + [411] = 354, + [412] = 329, + [413] = 413, + [414] = 221, + [415] = 337, + [416] = 413, + [417] = 333, + [418] = 413, + [419] = 342, + [420] = 413, + [421] = 331, + [422] = 351, + [423] = 345, + [424] = 413, + [425] = 221, + [426] = 223, + [427] = 358, + [428] = 223, + [429] = 354, + [430] = 430, + [431] = 351, + [432] = 432, + [433] = 333, + [434] = 331, + [435] = 337, + [436] = 230, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 232, + [441] = 441, + [442] = 442, + [443] = 243, + [444] = 227, + [445] = 445, + [446] = 229, + [447] = 447, + [448] = 227, + [449] = 230, + [450] = 227, + [451] = 451, + [452] = 452, + [453] = 230, + [454] = 454, + [455] = 229, + [456] = 232, + [457] = 457, + [458] = 266, + [459] = 230, + [460] = 232, + [461] = 229, + [462] = 246, + [463] = 244, + [464] = 229, + [465] = 227, + [466] = 238, + [467] = 235, + [468] = 236, + [469] = 442, + [470] = 439, + [471] = 471, + [472] = 472, + [473] = 441, + [474] = 234, + [475] = 239, + [476] = 240, + [477] = 241, + [478] = 447, + [479] = 479, + [480] = 480, + [481] = 242, + [482] = 437, + [483] = 445, + [484] = 271, + [485] = 245, + [486] = 250, + [487] = 251, + [488] = 252, + [489] = 253, + [490] = 233, + [491] = 254, + [492] = 255, + [493] = 257, + [494] = 232, + [495] = 495, + [496] = 258, + [497] = 259, + [498] = 498, + [499] = 260, + [500] = 261, + [501] = 263, + [502] = 265, + [503] = 267, + [504] = 237, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 505, + [512] = 512, + [513] = 513, + [514] = 506, + [515] = 507, + [516] = 508, + [517] = 509, + [518] = 510, + [519] = 505, + [520] = 512, + [521] = 513, + [522] = 506, + [523] = 507, + [524] = 508, + [525] = 509, + [526] = 510, + [527] = 505, + [528] = 512, + [529] = 513, + [530] = 506, + [531] = 507, + [532] = 230, + [533] = 232, + [534] = 229, + [535] = 227, + [536] = 230, + [537] = 232, + [538] = 229, + [539] = 512, + [540] = 513, + [541] = 227, + [542] = 230, + [543] = 237, + [544] = 267, + [545] = 266, + [546] = 265, + [547] = 263, + [548] = 261, + [549] = 260, + [550] = 259, + [551] = 258, + [552] = 257, + [553] = 507, + [554] = 255, + [555] = 254, + [556] = 233, + [557] = 505, + [558] = 252, + [559] = 251, + [560] = 250, + [561] = 232, + [562] = 245, + [563] = 229, + [564] = 510, + [565] = 242, + [566] = 227, + [567] = 509, + [568] = 508, + [569] = 507, + [570] = 241, + [571] = 240, + [572] = 230, + [573] = 237, + [574] = 267, + [575] = 266, + [576] = 265, + [577] = 263, + [578] = 261, + [579] = 260, + [580] = 259, + [581] = 258, + [582] = 257, + [583] = 506, + [584] = 255, + [585] = 254, + [586] = 233, + [587] = 513, + [588] = 253, + [589] = 252, + [590] = 251, + [591] = 250, + [592] = 232, + [593] = 245, + [594] = 243, + [595] = 229, + [596] = 242, + [597] = 227, + [598] = 241, + [599] = 512, + [600] = 505, + [601] = 510, + [602] = 240, + [603] = 447, + [604] = 509, + [605] = 508, + [606] = 507, + [607] = 445, + [608] = 239, + [609] = 506, + [610] = 513, + [611] = 253, + [612] = 234, + [613] = 512, + [614] = 236, + [615] = 505, + [616] = 235, + [617] = 238, + [618] = 243, + [619] = 510, + [620] = 509, + [621] = 244, + [622] = 508, + [623] = 246, + [624] = 624, + [625] = 507, + [626] = 239, + [627] = 234, + [628] = 236, + [629] = 506, + [630] = 240, + [631] = 241, + [632] = 246, + [633] = 513, + [634] = 244, + [635] = 242, + [636] = 512, + [637] = 505, + [638] = 510, + [639] = 509, + [640] = 508, + [641] = 235, + [642] = 238, + [643] = 507, + [644] = 244, + [645] = 506, + [646] = 513, + [647] = 246, + [648] = 512, + [649] = 441, + [650] = 505, + [651] = 510, + [652] = 243, + [653] = 509, + [654] = 508, + [655] = 507, + [656] = 506, + [657] = 513, + [658] = 512, + [659] = 505, + [660] = 510, + [661] = 509, + [662] = 508, + [663] = 507, + [664] = 506, + [665] = 513, + [666] = 512, + [667] = 505, + [668] = 510, + [669] = 509, + [670] = 508, + [671] = 512, + [672] = 506, + [673] = 513, + [674] = 512, + [675] = 505, + [676] = 510, + [677] = 509, + [678] = 508, + [679] = 507, + [680] = 506, + [681] = 245, + [682] = 238, + [683] = 235, + [684] = 513, + [685] = 512, + [686] = 236, + [687] = 250, + [688] = 251, + [689] = 252, + [690] = 234, + [691] = 505, + [692] = 510, + [693] = 509, + [694] = 508, + [695] = 439, + [696] = 507, + [697] = 442, + [698] = 506, + [699] = 513, + [700] = 700, + [701] = 512, + [702] = 505, + [703] = 510, + [704] = 509, + [705] = 508, + [706] = 507, + [707] = 506, + [708] = 513, + [709] = 512, + [710] = 505, + [711] = 510, + [712] = 509, + [713] = 508, + [714] = 507, + [715] = 506, + [716] = 513, + [717] = 512, + [718] = 505, + [719] = 510, + [720] = 509, + [721] = 508, + [722] = 507, + [723] = 506, + [724] = 513, + [725] = 512, + [726] = 253, + [727] = 505, + [728] = 239, + [729] = 233, + [730] = 254, + [731] = 255, + [732] = 510, + [733] = 509, + [734] = 508, + [735] = 507, + [736] = 506, + [737] = 513, + [738] = 512, + [739] = 505, + [740] = 510, + [741] = 509, + [742] = 508, + [743] = 507, + [744] = 506, + [745] = 513, + [746] = 512, + [747] = 505, + [748] = 510, + [749] = 509, + [750] = 508, + [751] = 507, + [752] = 506, + [753] = 513, + [754] = 512, + [755] = 257, + [756] = 258, + [757] = 259, + [758] = 260, + [759] = 505, + [760] = 510, + [761] = 509, + [762] = 508, + [763] = 507, + [764] = 506, + [765] = 513, + [766] = 230, + [767] = 512, + [768] = 505, + [769] = 261, + [770] = 263, + [771] = 265, + [772] = 266, + [773] = 510, + [774] = 509, + [775] = 508, + [776] = 507, + [777] = 506, + [778] = 513, + [779] = 512, + [780] = 267, + [781] = 237, + [782] = 505, + [783] = 510, + [784] = 509, + [785] = 508, + [786] = 507, + [787] = 506, + [788] = 513, + [789] = 512, + [790] = 508, + [791] = 505, + [792] = 509, + [793] = 510, + [794] = 509, + [795] = 508, + [796] = 507, + [797] = 506, + [798] = 513, + [799] = 510, + [800] = 505, + [801] = 624, + [802] = 509, + [803] = 508, + [804] = 507, + [805] = 506, + [806] = 513, + [807] = 807, + [808] = 512, + [809] = 505, + [810] = 810, + [811] = 510, + [812] = 509, + [813] = 508, + [814] = 507, + [815] = 506, + [816] = 513, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 512, + [821] = 505, + [822] = 510, + [823] = 509, + [824] = 508, + [825] = 507, + [826] = 506, + [827] = 513, + [828] = 512, + [829] = 505, + [830] = 510, + [831] = 457, + [832] = 452, + [833] = 509, + [834] = 508, + [835] = 507, + [836] = 506, + [837] = 837, + [838] = 513, + [839] = 512, + [840] = 505, + [841] = 510, + [842] = 842, + [843] = 509, + [844] = 508, + [845] = 507, + [846] = 506, + [847] = 457, + [848] = 452, + [849] = 513, + [850] = 512, + [851] = 505, + [852] = 230, + [853] = 510, + [854] = 509, + [855] = 508, + [856] = 856, + [857] = 857, + [858] = 507, + [859] = 506, + [860] = 513, + [861] = 861, + [862] = 512, + [863] = 510, + [864] = 509, + [865] = 508, + [866] = 507, + [867] = 506, + [868] = 513, + [869] = 512, + [870] = 505, + [871] = 510, + [872] = 509, + [873] = 508, + [874] = 507, + [875] = 230, + [876] = 506, + [877] = 513, + [878] = 878, + [879] = 512, + [880] = 442, + [881] = 505, + [882] = 439, + [883] = 510, + [884] = 509, + [885] = 498, + [886] = 495, + [887] = 508, + [888] = 507, + [889] = 506, + [890] = 513, + [891] = 512, + [892] = 505, + [893] = 510, + [894] = 894, + [895] = 509, + [896] = 508, + [897] = 510, + [898] = 505, + [899] = 507, + [900] = 506, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 454, + [905] = 451, + [906] = 512, + [907] = 513, + [908] = 512, + [909] = 505, + [910] = 510, + [911] = 513, + [912] = 509, + [913] = 471, + [914] = 472, + [915] = 508, + [916] = 700, + [917] = 624, + [918] = 700, + [919] = 447, + [920] = 441, + [921] = 479, + [922] = 506, + [923] = 507, + [924] = 480, + [925] = 438, + [926] = 445, + [927] = 240, [928] = 928, - [929] = 928, - [930] = 928, - [931] = 926, - [932] = 932, - [933] = 926, - [934] = 934, - [935] = 921, - [936] = 936, - [937] = 921, - [938] = 922, - [939] = 928, - [940] = 940, - [941] = 922, - [942] = 940, - [943] = 940, - [944] = 921, - [945] = 922, - [946] = 946, - [947] = 940, - [948] = 926, - [949] = 946, - [950] = 928, - [951] = 936, - [952] = 926, - [953] = 934, - [954] = 954, - [955] = 946, - [956] = 956, + [929] = 929, + [930] = 930, + [931] = 929, + [932] = 261, + [933] = 260, + [934] = 259, + [935] = 258, + [936] = 930, + [937] = 937, + [938] = 938, + [939] = 257, + [940] = 937, + [941] = 938, + [942] = 230, + [943] = 255, + [944] = 254, + [945] = 233, + [946] = 253, + [947] = 480, + [948] = 479, + [949] = 252, + [950] = 251, + [951] = 250, + [952] = 930, + [953] = 232, + [954] = 245, + [955] = 243, + [956] = 810, [957] = 957, [958] = 958, - [959] = 936, - [960] = 934, - [961] = 934, - [962] = 936, - [963] = 946, - [964] = 940, - [965] = 922, - [966] = 921, - [967] = 932, - [968] = 954, - [969] = 926, - [970] = 928, - [971] = 956, - [972] = 957, - [973] = 928, - [974] = 958, - [975] = 934, - [976] = 936, - [977] = 926, - [978] = 921, - [979] = 958, - [980] = 922, - [981] = 936, - [982] = 921, - [983] = 934, - [984] = 922, - [985] = 940, - [986] = 946, - [987] = 940, - [988] = 936, - [989] = 934, - [990] = 946, - [991] = 946, - [992] = 936, - [993] = 928, - [994] = 926, - [995] = 177, - [996] = 922, - [997] = 934, - [998] = 940, - [999] = 922, - [1000] = 921, - [1001] = 922, - [1002] = 957, - [1003] = 956, - [1004] = 940, - [1005] = 921, - [1006] = 946, - [1007] = 934, - [1008] = 936, - [1009] = 936, - [1010] = 946, - [1011] = 940, - [1012] = 928, - [1013] = 922, - [1014] = 921, - [1015] = 926, - [1016] = 926, - [1017] = 928, - [1018] = 928, - [1019] = 934, - [1020] = 921, - [1021] = 921, - [1022] = 928, - [1023] = 926, - [1024] = 926, - [1025] = 928, - [1026] = 926, - [1027] = 928, - [1028] = 926, - [1029] = 921, - [1030] = 922, - [1031] = 940, - [1032] = 926, - [1033] = 922, - [1034] = 940, - [1035] = 934, - [1036] = 936, - [1037] = 946, - [1038] = 946, - [1039] = 946, - [1040] = 940, - [1041] = 922, - [1042] = 922, - [1043] = 936, - [1044] = 934, - [1045] = 926, - [1046] = 928, - [1047] = 922, - [1048] = 954, - [1049] = 932, - [1050] = 921, - [1051] = 922, - [1052] = 940, - [1053] = 946, - [1054] = 928, - [1055] = 922, - [1056] = 928, - [1057] = 940, - [1058] = 936, - [1059] = 921, - [1060] = 946, - [1061] = 926, - [1062] = 936, - [1063] = 934, - [1064] = 921, - [1065] = 922, - [1066] = 946, - [1067] = 940, - [1068] = 940, - [1069] = 946, - [1070] = 934, - [1071] = 936, - [1072] = 934, - [1073] = 936, - [1074] = 934, - [1075] = 932, - [1076] = 921, - [1077] = 946, - [1078] = 940, - [1079] = 922, - [1080] = 921, - [1081] = 928, - [1082] = 926, - [1083] = 921, - [1084] = 926, - [1085] = 928, - [1086] = 922, - [1087] = 940, - [1088] = 928, - [1089] = 926, - [1090] = 946, - [1091] = 926, - [1092] = 928, - [1093] = 936, - [1094] = 921, - [1095] = 922, - [1096] = 934, - [1097] = 940, - [1098] = 946, - [1099] = 921, - [1100] = 936, - [1101] = 934, - [1102] = 922, - [1103] = 940, - [1104] = 936, - [1105] = 934, - [1106] = 946, - [1107] = 928, - [1108] = 926, - [1109] = 936, - [1110] = 934, - [1111] = 934, - [1112] = 940, - [1113] = 928, - [1114] = 946, - [1115] = 936, - [1116] = 926, - [1117] = 934, - [1118] = 936, - [1119] = 921, - [1120] = 922, - [1121] = 936, - [1122] = 921, - [1123] = 940, - [1124] = 934, - [1125] = 946, - [1126] = 946, - [1127] = 940, - [1128] = 922, - [1129] = 934, - [1130] = 921, - [1131] = 946, - [1132] = 922, - [1133] = 934, - [1134] = 936, - [1135] = 940, - [1136] = 936, - [1137] = 926, - [1138] = 934, - [1139] = 928, - [1140] = 928, - [1141] = 926, - [1142] = 936, - [1143] = 940, - [1144] = 922, - [1145] = 921, - [1146] = 946, - [1147] = 940, - [1148] = 940, - [1149] = 946, - [1150] = 936, - [1151] = 934, - [1152] = 934, - [1153] = 936, - [1154] = 177, - [1155] = 934, - [1156] = 936, - [1157] = 922, - [1158] = 946, - [1159] = 940, - [1160] = 921, - [1161] = 921, - [1162] = 922, - [1163] = 922, - [1164] = 921, - [1165] = 940, - [1166] = 946, + [959] = 229, + [960] = 242, + [961] = 472, + [962] = 471, + [963] = 227, + [964] = 241, + [965] = 239, + [966] = 253, + [967] = 234, + [968] = 236, + [969] = 235, + [970] = 227, + [971] = 238, + [972] = 243, + [973] = 229, + [974] = 451, + [975] = 454, + [976] = 244, + [977] = 265, + [978] = 246, + [979] = 266, + [980] = 267, + [981] = 807, + [982] = 437, + [983] = 237, + [984] = 237, + [985] = 267, + [986] = 266, + [987] = 265, + [988] = 263, + [989] = 817, + [990] = 818, + [991] = 819, + [992] = 261, + [993] = 260, + [994] = 929, + [995] = 259, + [996] = 258, + [997] = 257, + [998] = 861, + [999] = 230, + [1000] = 255, + [1001] = 254, + [1002] = 233, + [1003] = 239, + [1004] = 240, + [1005] = 241, + [1006] = 234, + [1007] = 252, + [1008] = 251, + [1009] = 232, + [1010] = 250, + [1011] = 236, + [1012] = 227, + [1013] = 842, + [1014] = 235, + [1015] = 238, + [1016] = 245, + [1017] = 242, + [1018] = 229, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 242, + [1024] = 452, + [1025] = 457, + [1026] = 244, + [1027] = 246, + [1028] = 241, + [1029] = 1029, + [1030] = 928, + [1031] = 240, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 245, + [1042] = 1039, + [1043] = 1040, + [1044] = 1019, + [1045] = 1020, + [1046] = 1021, + [1047] = 1022, + [1048] = 1029, + [1049] = 237, + [1050] = 928, + [1051] = 1033, + [1052] = 894, + [1053] = 267, + [1054] = 442, + [1055] = 1034, + [1056] = 439, + [1057] = 266, + [1058] = 265, + [1059] = 263, + [1060] = 261, + [1061] = 1035, + [1062] = 1036, + [1063] = 1037, + [1064] = 1038, + [1065] = 1040, + [1066] = 1039, + [1067] = 260, + [1068] = 1019, + [1069] = 1020, + [1070] = 1021, + [1071] = 1022, + [1072] = 1029, + [1073] = 928, + [1074] = 1033, + [1075] = 1034, + [1076] = 1035, + [1077] = 1036, + [1078] = 1037, + [1079] = 1038, + [1080] = 1040, + [1081] = 1039, + [1082] = 259, + [1083] = 1019, + [1084] = 1020, + [1085] = 258, + [1086] = 257, + [1087] = 255, + [1088] = 254, + [1089] = 233, + [1090] = 232, + [1091] = 438, + [1092] = 1021, + [1093] = 232, + [1094] = 253, + [1095] = 250, + [1096] = 252, + [1097] = 227, + [1098] = 251, + [1099] = 250, + [1100] = 229, + [1101] = 251, + [1102] = 252, + [1103] = 1022, + [1104] = 1029, + [1105] = 928, + [1106] = 1033, + [1107] = 245, + [1108] = 243, + [1109] = 1034, + [1110] = 243, + [1111] = 1035, + [1112] = 1036, + [1113] = 1037, + [1114] = 1038, + [1115] = 233, + [1116] = 242, + [1117] = 254, + [1118] = 495, + [1119] = 232, + [1120] = 255, + [1121] = 257, + [1122] = 241, + [1123] = 240, + [1124] = 258, + [1125] = 498, + [1126] = 1040, + [1127] = 259, + [1128] = 1039, + [1129] = 260, + [1130] = 1130, + [1131] = 261, + [1132] = 263, + [1133] = 1019, + [1134] = 265, + [1135] = 266, + [1136] = 267, + [1137] = 237, + [1138] = 1020, + [1139] = 230, + [1140] = 1021, + [1141] = 239, + [1142] = 253, + [1143] = 234, + [1144] = 236, + [1145] = 235, + [1146] = 238, + [1147] = 243, + [1148] = 244, + [1149] = 246, + [1150] = 239, + [1151] = 234, + [1152] = 1022, + [1153] = 1029, + [1154] = 236, + [1155] = 235, + [1156] = 238, + [1157] = 227, + [1158] = 271, + [1159] = 958, + [1160] = 229, + [1161] = 244, + [1162] = 243, + [1163] = 246, + [1164] = 452, + [1165] = 457, + [1166] = 480, [1167] = 928, - [1168] = 926, - [1169] = 928, - [1170] = 926, - [1171] = 926, - [1172] = 932, - [1173] = 928, - [1174] = 928, - [1175] = 926, - [1176] = 921, - [1177] = 946, - [1178] = 940, - [1179] = 946, - [1180] = 926, - [1181] = 936, - [1182] = 928, - [1183] = 936, - [1184] = 946, - [1185] = 934, - [1186] = 934, - [1187] = 928, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1189, - [1194] = 1188, - [1195] = 1189, - [1196] = 1192, - [1197] = 1191, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1204, - [1207] = 1205, - [1208] = 1203, - [1209] = 1202, - [1210] = 1202, - [1211] = 1203, - [1212] = 1200, - [1213] = 1199, - [1214] = 1198, - [1215] = 1188, - [1216] = 1216, - [1217] = 1217, - [1218] = 1204, - [1219] = 1201, - [1220] = 1189, - [1221] = 1192, - [1222] = 1191, - [1223] = 1201, - [1224] = 1224, - [1225] = 1204, - [1226] = 1205, - [1227] = 1217, - [1228] = 1217, - [1229] = 1191, - [1230] = 1192, - [1231] = 1216, - [1232] = 1189, - [1233] = 1188, - [1234] = 1198, - [1235] = 1199, - [1236] = 1200, - [1237] = 1202, - [1238] = 1203, - [1239] = 1216, - [1240] = 1205, - [1241] = 1217, - [1242] = 1200, - [1243] = 1199, - [1244] = 1216, - [1245] = 1188, - [1246] = 1217, - [1247] = 1205, - [1248] = 1203, - [1249] = 1202, - [1250] = 1200, - [1251] = 1199, - [1252] = 1198, - [1253] = 1188, - [1254] = 1198, - [1255] = 1189, - [1256] = 1216, - [1257] = 1192, - [1258] = 1204, - [1259] = 1191, - [1260] = 1201, - [1261] = 1191, - [1262] = 1192, - [1263] = 1199, - [1264] = 1189, - [1265] = 1201, - [1266] = 1188, - [1267] = 1198, - [1268] = 1200, - [1269] = 1199, - [1270] = 1202, - [1271] = 1204, - [1272] = 1200, - [1273] = 1203, - [1274] = 1205, - [1275] = 1275, - [1276] = 1205, - [1277] = 1216, - [1278] = 1216, - [1279] = 1202, - [1280] = 1217, - [1281] = 1190, - [1282] = 1198, - [1283] = 1216, - [1284] = 1203, - [1285] = 1205, - [1286] = 1188, - [1287] = 1189, - [1288] = 1190, - [1289] = 1217, - [1290] = 1217, - [1291] = 1204, - [1292] = 1201, - [1293] = 1191, - [1294] = 1192, - [1295] = 1189, - [1296] = 1188, - [1297] = 1198, - [1298] = 1199, - [1299] = 1200, - [1300] = 1204, - [1301] = 1202, - [1302] = 1205, - [1303] = 1203, - [1304] = 1203, - [1305] = 1205, - [1306] = 1203, - [1307] = 1205, - [1308] = 1202, - [1309] = 1200, - [1310] = 1199, - [1311] = 1202, - [1312] = 1200, - [1313] = 1199, - [1314] = 1198, - [1315] = 1188, - [1316] = 1216, - [1317] = 1203, - [1318] = 1216, - [1319] = 1275, - [1320] = 1217, - [1321] = 1217, - [1322] = 1189, - [1323] = 1204, - [1324] = 1198, - [1325] = 1188, - [1326] = 1201, - [1327] = 1192, - [1328] = 1191, - [1329] = 1201, - [1330] = 1191, - [1331] = 1204, - [1332] = 1205, - [1333] = 1204, - [1334] = 1192, - [1335] = 1201, - [1336] = 1191, - [1337] = 1189, - [1338] = 1192, - [1339] = 1191, - [1340] = 1201, - [1341] = 1192, - [1342] = 1189, - [1343] = 1203, - [1344] = 1204, - [1345] = 1204, - [1346] = 1188, - [1347] = 1189, - [1348] = 1188, - [1349] = 1198, - [1350] = 1217, - [1351] = 1198, - [1352] = 1216, - [1353] = 1199, - [1354] = 1201, - [1355] = 1192, - [1356] = 1199, - [1357] = 1200, - [1358] = 1200, - [1359] = 1202, - [1360] = 1217, - [1361] = 1202, - [1362] = 1216, - [1363] = 1191, - [1364] = 1192, - [1365] = 1203, - [1366] = 1205, - [1367] = 1205, - [1368] = 1203, - [1369] = 1202, - [1370] = 1216, - [1371] = 1203, - [1372] = 1224, - [1373] = 1189, - [1374] = 1200, - [1375] = 1191, - [1376] = 1199, - [1377] = 1205, - [1378] = 1202, - [1379] = 1200, - [1380] = 1199, - [1381] = 1188, - [1382] = 1198, - [1383] = 1199, - [1384] = 1200, - [1385] = 1202, - [1386] = 1203, - [1387] = 1205, - [1388] = 1198, - [1389] = 1216, - [1390] = 1188, - [1391] = 1198, - [1392] = 1188, - [1393] = 1189, - [1394] = 1192, - [1395] = 1191, - [1396] = 1201, - [1397] = 1190, - [1398] = 1217, - [1399] = 1192, - [1400] = 1204, - [1401] = 1224, - [1402] = 1201, - [1403] = 1191, - [1404] = 1202, - [1405] = 1217, - [1406] = 1204, - [1407] = 1216, - [1408] = 1201, - [1409] = 1201, - [1410] = 1191, - [1411] = 1192, - [1412] = 1216, - [1413] = 1200, - [1414] = 1199, - [1415] = 1217, - [1416] = 1204, - [1417] = 1204, - [1418] = 1216, - [1419] = 1205, - [1420] = 1203, - [1421] = 1202, - [1422] = 1200, - [1423] = 1199, - [1424] = 1198, - [1425] = 1188, - [1426] = 1189, - [1427] = 1188, - [1428] = 1198, - [1429] = 1217, - [1430] = 1189, - [1431] = 1192, - [1432] = 1199, - [1433] = 1191, - [1434] = 1201, - [1435] = 1200, - [1436] = 1202, - [1437] = 1204, - [1438] = 1203, - [1439] = 1205, - [1440] = 1201, - [1441] = 1191, - [1442] = 1216, - [1443] = 1204, - [1444] = 1217, - [1445] = 1217, - [1446] = 1192, - [1447] = 1216, - [1448] = 1189, - [1449] = 1204, - [1450] = 1201, - [1451] = 1201, - [1452] = 1191, - [1453] = 1204, - [1454] = 1192, - [1455] = 1455, - [1456] = 1201, - [1457] = 1191, - [1458] = 1192, - [1459] = 1191, - [1460] = 1192, - [1461] = 1461, - [1462] = 1189, - [1463] = 1189, - [1464] = 1188, - [1465] = 1189, - [1466] = 1198, - [1467] = 1217, - [1468] = 1188, - [1469] = 1217, - [1470] = 1188, - [1471] = 1198, - [1472] = 1199, - [1473] = 1198, - [1474] = 1205, - [1475] = 1217, - [1476] = 1200, - [1477] = 1202, - [1478] = 1203, - [1479] = 1205, - [1480] = 1216, - [1481] = 1199, - [1482] = 1200, - [1483] = 1202, - [1484] = 1203, - [1485] = 1198, - [1486] = 1216, - [1487] = 1217, - [1488] = 1205, - [1489] = 1203, - [1490] = 1275, - [1491] = 1216, - [1492] = 1492, - [1493] = 1455, - [1494] = 1202, - [1495] = 1216, - [1496] = 1217, - [1497] = 1204, - [1498] = 1200, - [1499] = 1199, - [1500] = 1198, - [1501] = 1188, - [1502] = 1204, - [1503] = 1201, - [1504] = 1191, - [1505] = 1192, - [1506] = 1189, - [1507] = 1201, - [1508] = 1188, - [1509] = 1198, - [1510] = 1198, - [1511] = 1200, - [1512] = 1202, - [1513] = 1199, - [1514] = 1200, - [1515] = 1202, - [1516] = 1203, - [1517] = 1205, - [1518] = 1216, - [1519] = 1217, - [1520] = 1188, - [1521] = 1224, - [1522] = 1189, - [1523] = 1216, - [1524] = 1199, - [1525] = 1200, - [1526] = 1202, - [1527] = 1189, - [1528] = 1192, - [1529] = 1204, - [1530] = 1192, - [1531] = 1191, - [1532] = 1201, - [1533] = 1217, - [1534] = 1204, - [1535] = 1201, - [1536] = 1203, - [1537] = 1205, - [1538] = 1191, - [1539] = 1204, - [1540] = 1203, - [1541] = 1205, - [1542] = 1217, - [1543] = 1192, - [1544] = 1201, - [1545] = 1492, - [1546] = 1455, - [1547] = 1191, - [1548] = 1191, - [1549] = 1492, - [1550] = 1550, - [1551] = 1551, - [1552] = 1192, - [1553] = 1216, - [1554] = 1554, - [1555] = 1189, - [1556] = 1188, - [1557] = 1190, - [1558] = 1189, - [1559] = 1198, - [1560] = 1199, - [1561] = 1200, - [1562] = 1201, - [1563] = 1188, - [1564] = 1202, - [1565] = 1191, - [1566] = 1205, - [1567] = 1203, - [1568] = 1198, - [1569] = 1192, - [1570] = 1203, - [1571] = 1202, - [1572] = 1200, - [1573] = 1199, - [1574] = 1198, - [1575] = 1189, - [1576] = 1199, - [1577] = 1200, - [1578] = 1202, - [1579] = 1188, - [1580] = 1188, - [1581] = 1198, - [1582] = 1199, - [1583] = 1492, - [1584] = 1189, - [1585] = 1455, - [1586] = 1192, - [1587] = 1224, - [1588] = 1191, - [1589] = 1550, - [1590] = 1551, - [1591] = 1554, - [1592] = 1201, - [1593] = 1205, - [1594] = 1204, - [1595] = 1275, - [1596] = 1200, - [1597] = 1202, - [1598] = 1216, - [1599] = 1205, - [1600] = 1217, - [1601] = 1203, - [1602] = 1216, - [1603] = 1275, - [1604] = 1205, - [1605] = 1203, - [1606] = 1550, - [1607] = 1551, - [1608] = 1217, - [1609] = 1202, - [1610] = 1203, - [1611] = 1554, - [1612] = 1216, - [1613] = 1217, - [1614] = 1204, - [1615] = 1205, - [1616] = 1200, - [1617] = 1205, - [1618] = 1205, - [1619] = 1203, - [1620] = 1202, - [1621] = 1199, - [1622] = 1200, - [1623] = 1199, - [1624] = 1198, - [1625] = 1188, - [1626] = 1201, - [1627] = 1198, - [1628] = 1188, - [1629] = 1189, - [1630] = 1192, - [1631] = 1191, - [1632] = 1191, - [1633] = 1201, - [1634] = 1201, - [1635] = 1192, - [1636] = 1189, - [1637] = 1192, - [1638] = 1204, - [1639] = 1191, - [1640] = 1201, - [1641] = 1203, - [1642] = 1204, - [1643] = 1199, - [1644] = 1202, - [1645] = 1189, - [1646] = 1188, - [1647] = 1198, - [1648] = 1217, - [1649] = 1200, - [1650] = 1216, - [1651] = 1217, - [1652] = 1199, - [1653] = 1492, - [1654] = 1204, - [1655] = 1216, - [1656] = 1656, - [1657] = 177, - [1658] = 1658, - [1659] = 1659, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1659, - [1664] = 1660, - [1665] = 1661, - [1666] = 1656, - [1667] = 288, - [1668] = 1662, - [1669] = 1662, - [1670] = 1661, - [1671] = 1658, - [1672] = 1658, - [1673] = 1660, - [1674] = 1659, - [1675] = 1662, - [1676] = 1660, - [1677] = 1658, - [1678] = 288, - [1679] = 296, - [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 1660, - [1684] = 297, - [1685] = 1685, - [1686] = 1686, - [1687] = 1656, - [1688] = 327, - [1689] = 177, - [1690] = 1656, - [1691] = 288, - [1692] = 1692, - [1693] = 1659, - [1694] = 1694, - [1695] = 1659, - [1696] = 1696, - [1697] = 1656, - [1698] = 288, - [1699] = 1699, - [1700] = 1661, - [1701] = 1701, - [1702] = 288, - [1703] = 1703, - [1704] = 296, - [1705] = 1705, - [1706] = 1706, - [1707] = 1694, - [1708] = 1699, - [1709] = 1692, - [1710] = 1696, - [1711] = 288, - [1712] = 327, - [1713] = 1713, - [1714] = 1692, - [1715] = 1701, - [1716] = 304, - [1717] = 297, - [1718] = 1680, - [1719] = 1719, - [1720] = 1720, - [1721] = 320, - [1722] = 321, - [1723] = 296, + [1168] = 1033, + [1169] = 479, + [1170] = 1039, + [1171] = 1040, + [1172] = 1034, + [1173] = 232, + [1174] = 1038, + [1175] = 1037, + [1176] = 1036, + [1177] = 1035, + [1178] = 1034, + [1179] = 1033, + [1180] = 1035, + [1181] = 437, + [1182] = 1036, + [1183] = 928, + [1184] = 1029, + [1185] = 1022, + [1186] = 1021, + [1187] = 1037, + [1188] = 1038, + [1189] = 1040, + [1190] = 438, + [1191] = 1020, + [1192] = 1019, + [1193] = 472, + [1194] = 471, + [1195] = 271, + [1196] = 1039, + [1197] = 1040, + [1198] = 1038, + [1199] = 1037, + [1200] = 1036, + [1201] = 230, + [1202] = 1035, + [1203] = 1034, + [1204] = 1033, + [1205] = 928, + [1206] = 1029, + [1207] = 1022, + [1208] = 1021, + [1209] = 1020, + [1210] = 1019, + [1211] = 1039, + [1212] = 1039, + [1213] = 1040, + [1214] = 837, + [1215] = 1038, + [1216] = 1037, + [1217] = 451, + [1218] = 1019, + [1219] = 1036, + [1220] = 1035, + [1221] = 1034, + [1222] = 454, + [1223] = 1033, + [1224] = 928, + [1225] = 1020, + [1226] = 1029, + [1227] = 1022, + [1228] = 1021, + [1229] = 271, + [1230] = 1020, + [1231] = 1019, + [1232] = 1039, + [1233] = 1040, + [1234] = 1038, + [1235] = 1037, + [1236] = 1036, + [1237] = 1035, + [1238] = 1034, + [1239] = 1033, + [1240] = 928, + [1241] = 1029, + [1242] = 1022, + [1243] = 1021, + [1244] = 1020, + [1245] = 1019, + [1246] = 1021, + [1247] = 1022, + [1248] = 1029, + [1249] = 928, + [1250] = 1033, + [1251] = 1034, + [1252] = 1035, + [1253] = 1036, + [1254] = 1039, + [1255] = 1255, + [1256] = 441, + [1257] = 1037, + [1258] = 1258, + [1259] = 1038, + [1260] = 938, + [1261] = 1040, + [1262] = 1039, + [1263] = 1040, + [1264] = 1019, + [1265] = 1020, + [1266] = 1021, + [1267] = 1022, + [1268] = 1029, + [1269] = 928, + [1270] = 1038, + [1271] = 1033, + [1272] = 901, + [1273] = 1034, + [1274] = 902, + [1275] = 1035, + [1276] = 1036, + [1277] = 1037, + [1278] = 1037, + [1279] = 1038, + [1280] = 903, + [1281] = 1036, + [1282] = 1040, + [1283] = 1039, + [1284] = 1035, + [1285] = 1019, + [1286] = 1020, + [1287] = 1021, + [1288] = 1022, + [1289] = 1029, + [1290] = 928, + [1291] = 1033, + [1292] = 1034, + [1293] = 1035, + [1294] = 1036, + [1295] = 1037, + [1296] = 1038, + [1297] = 1040, + [1298] = 1039, + [1299] = 1034, + [1300] = 452, + [1301] = 457, + [1302] = 1033, + [1303] = 263, + [1304] = 1019, + [1305] = 1020, + [1306] = 1021, + [1307] = 1022, + [1308] = 1029, + [1309] = 928, + [1310] = 1033, + [1311] = 1034, + [1312] = 1035, + [1313] = 1036, + [1314] = 1314, + [1315] = 1037, + [1316] = 1038, + [1317] = 1040, + [1318] = 1039, + [1319] = 1029, + [1320] = 1019, + [1321] = 1020, + [1322] = 1322, + [1323] = 1021, + [1324] = 1022, + [1325] = 1029, + [1326] = 928, + [1327] = 1033, + [1328] = 1034, + [1329] = 1022, + [1330] = 1035, + [1331] = 1036, + [1332] = 1037, + [1333] = 1038, + [1334] = 1021, + [1335] = 1040, + [1336] = 1020, + [1337] = 1019, + [1338] = 1039, + [1339] = 1039, + [1340] = 1040, + [1341] = 1038, + [1342] = 1037, + [1343] = 1036, + [1344] = 1019, + [1345] = 229, + [1346] = 837, + [1347] = 1020, + [1348] = 1035, + [1349] = 1034, + [1350] = 1021, + [1351] = 1033, + [1352] = 928, + [1353] = 1022, + [1354] = 1029, + [1355] = 928, + [1356] = 1029, + [1357] = 1033, + [1358] = 1022, + [1359] = 1034, + [1360] = 1021, + [1361] = 1020, + [1362] = 1035, + [1363] = 1036, + [1364] = 1037, + [1365] = 1019, + [1366] = 1039, + [1367] = 1038, + [1368] = 1038, + [1369] = 1040, + [1370] = 1040, + [1371] = 1037, + [1372] = 1039, + [1373] = 1373, + [1374] = 1038, + [1375] = 1036, + [1376] = 1035, + [1377] = 1037, + [1378] = 1036, + [1379] = 1035, + [1380] = 227, + [1381] = 1034, + [1382] = 1033, + [1383] = 928, + [1384] = 495, + [1385] = 1019, + [1386] = 1029, + [1387] = 498, + [1388] = 1020, + [1389] = 1021, + [1390] = 1022, + [1391] = 1029, + [1392] = 928, + [1393] = 1022, + [1394] = 1021, + [1395] = 1020, + [1396] = 1396, + [1397] = 1033, + [1398] = 1019, + [1399] = 1039, + [1400] = 1034, + [1401] = 1040, + [1402] = 1019, + [1403] = 1020, + [1404] = 1038, + [1405] = 438, + [1406] = 1037, + [1407] = 1036, + [1408] = 1035, + [1409] = 1034, + [1410] = 1033, + [1411] = 928, + [1412] = 1029, + [1413] = 1022, + [1414] = 1021, + [1415] = 1020, + [1416] = 1019, + [1417] = 1039, + [1418] = 1418, + [1419] = 445, + [1420] = 1040, + [1421] = 227, + [1422] = 1038, + [1423] = 1035, + [1424] = 229, + [1425] = 230, + [1426] = 1036, + [1427] = 1037, + [1428] = 1037, + [1429] = 1036, + [1430] = 1038, + [1431] = 232, + [1432] = 1035, + [1433] = 1034, + [1434] = 1040, + [1435] = 1039, + [1436] = 1034, + [1437] = 1033, + [1438] = 1019, + [1439] = 1020, + [1440] = 928, + [1441] = 1021, + [1442] = 1022, + [1443] = 1029, + [1444] = 928, + [1445] = 1033, + [1446] = 1034, + [1447] = 1035, + [1448] = 1036, + [1449] = 1037, + [1450] = 1038, + [1451] = 1040, + [1452] = 1039, + [1453] = 1029, + [1454] = 1019, + [1455] = 1020, + [1456] = 1022, + [1457] = 1021, + [1458] = 1020, + [1459] = 227, + [1460] = 1019, + [1461] = 1039, + [1462] = 229, + [1463] = 1040, + [1464] = 243, + [1465] = 1038, + [1466] = 1037, + [1467] = 1036, + [1468] = 1021, + [1469] = 232, + [1470] = 1035, + [1471] = 1034, + [1472] = 1033, + [1473] = 928, + [1474] = 1029, + [1475] = 1022, + [1476] = 1022, + [1477] = 1029, + [1478] = 1021, + [1479] = 1020, + [1480] = 1019, + [1481] = 1039, + [1482] = 1040, + [1483] = 1038, + [1484] = 1037, + [1485] = 1036, + [1486] = 1035, + [1487] = 1034, + [1488] = 1033, + [1489] = 928, + [1490] = 1029, + [1491] = 1022, + [1492] = 1021, + [1493] = 230, + [1494] = 1020, + [1495] = 1019, + [1496] = 1039, + [1497] = 1040, + [1498] = 1038, + [1499] = 1037, + [1500] = 1036, + [1501] = 1035, + [1502] = 1034, + [1503] = 1033, + [1504] = 928, + [1505] = 1029, + [1506] = 928, + [1507] = 1022, + [1508] = 1021, + [1509] = 1020, + [1510] = 1019, + [1511] = 1039, + [1512] = 1040, + [1513] = 1033, + [1514] = 1038, + [1515] = 1034, + [1516] = 1037, + [1517] = 1036, + [1518] = 1035, + [1519] = 1034, + [1520] = 1035, + [1521] = 1033, + [1522] = 928, + [1523] = 1029, + [1524] = 1022, + [1525] = 1021, + [1526] = 1020, + [1527] = 1019, + [1528] = 1039, + [1529] = 1040, + [1530] = 1038, + [1531] = 1037, + [1532] = 1036, + [1533] = 1035, + [1534] = 1036, + [1535] = 1037, + [1536] = 1038, + [1537] = 1021, + [1538] = 1040, + [1539] = 1034, + [1540] = 1022, + [1541] = 1033, + [1542] = 1039, + [1543] = 928, + [1544] = 1019, + [1545] = 1020, + [1546] = 1021, + [1547] = 1029, + [1548] = 1022, + [1549] = 1021, + [1550] = 1022, + [1551] = 1029, + [1552] = 1020, + [1553] = 928, + [1554] = 1033, + [1555] = 1019, + [1556] = 1029, + [1557] = 1039, + [1558] = 937, + [1559] = 1040, + [1560] = 1038, + [1561] = 1037, + [1562] = 1036, + [1563] = 1035, + [1564] = 928, + [1565] = 1034, + [1566] = 1033, + [1567] = 1033, + [1568] = 928, + [1569] = 1034, + [1570] = 1570, + [1571] = 1035, + [1572] = 1036, + [1573] = 1037, + [1574] = 1038, + [1575] = 1040, + [1576] = 1039, + [1577] = 1029, + [1578] = 1019, + [1579] = 1020, + [1580] = 1021, + [1581] = 1022, + [1582] = 1029, + [1583] = 928, + [1584] = 1033, + [1585] = 1034, + [1586] = 1035, + [1587] = 1036, + [1588] = 1037, + [1589] = 1038, + [1590] = 1040, + [1591] = 1039, + [1592] = 1022, + [1593] = 1019, + [1594] = 1020, + [1595] = 1021, + [1596] = 1022, + [1597] = 1029, + [1598] = 1021, + [1599] = 1020, + [1600] = 1019, + [1601] = 928, + [1602] = 1033, + [1603] = 1034, + [1604] = 1035, + [1605] = 1036, + [1606] = 1037, + [1607] = 1038, + [1608] = 1040, + [1609] = 1039, + [1610] = 1039, + [1611] = 1019, + [1612] = 1020, + [1613] = 1021, + [1614] = 1022, + [1615] = 1029, + [1616] = 928, + [1617] = 1033, + [1618] = 1034, + [1619] = 1035, + [1620] = 1036, + [1621] = 1037, + [1622] = 1038, + [1623] = 1040, + [1624] = 243, + [1625] = 263, + [1626] = 257, + [1627] = 258, + [1628] = 259, + [1629] = 258, + [1630] = 259, + [1631] = 260, + [1632] = 261, + [1633] = 263, + [1634] = 265, + [1635] = 239, + [1636] = 266, + [1637] = 234, + [1638] = 1638, + [1639] = 807, + [1640] = 236, + [1641] = 235, + [1642] = 238, + [1643] = 267, + [1644] = 237, + [1645] = 271, + [1646] = 244, + [1647] = 260, + [1648] = 817, + [1649] = 246, + [1650] = 818, + [1651] = 819, + [1652] = 240, + [1653] = 241, + [1654] = 246, + [1655] = 244, + [1656] = 242, + [1657] = 271, + [1658] = 842, + [1659] = 1418, + [1660] = 230, + [1661] = 237, + [1662] = 267, + [1663] = 266, + [1664] = 1638, + [1665] = 265, + [1666] = 243, + [1667] = 261, + [1668] = 260, + [1669] = 259, + [1670] = 258, + [1671] = 257, + [1672] = 255, + [1673] = 254, + [1674] = 233, + [1675] = 452, + [1676] = 253, + [1677] = 457, + [1678] = 255, + [1679] = 252, + [1680] = 254, + [1681] = 1396, + [1682] = 251, + [1683] = 250, + [1684] = 245, + [1685] = 232, + [1686] = 238, + [1687] = 233, + [1688] = 245, + [1689] = 243, + [1690] = 246, + [1691] = 229, + [1692] = 242, + [1693] = 239, + [1694] = 253, + [1695] = 227, + [1696] = 235, + [1697] = 236, + [1698] = 241, + [1699] = 240, + [1700] = 237, + [1701] = 267, + [1702] = 266, + [1703] = 265, + [1704] = 263, + [1705] = 261, + [1706] = 260, + [1707] = 259, + [1708] = 258, + [1709] = 257, + [1710] = 1258, + [1711] = 255, + [1712] = 244, + [1713] = 254, + [1714] = 233, + [1715] = 239, + [1716] = 253, + [1717] = 234, + [1718] = 252, + [1719] = 251, + [1720] = 250, + [1721] = 236, + [1722] = 235, + [1723] = 238, [1724] = 1724, - [1725] = 1725, - [1726] = 326, - [1727] = 424, - [1728] = 1682, - [1729] = 1705, - [1730] = 296, - [1731] = 1725, - [1732] = 1703, - [1733] = 329, - [1734] = 330, - [1735] = 331, - [1736] = 332, - [1737] = 1724, - [1738] = 1703, - [1739] = 327, - [1740] = 335, - [1741] = 336, - [1742] = 338, - [1743] = 339, - [1744] = 340, - [1745] = 342, - [1746] = 343, - [1747] = 344, - [1748] = 323, - [1749] = 346, - [1750] = 347, - [1751] = 349, - [1752] = 350, - [1753] = 1680, - [1754] = 1696, - [1755] = 1701, - [1756] = 1713, - [1757] = 1757, - [1758] = 1681, - [1759] = 1705, - [1760] = 1760, - [1761] = 313, - [1762] = 1725, - [1763] = 312, - [1764] = 1724, - [1765] = 1681, - [1766] = 1686, - [1767] = 310, - [1768] = 307, - [1769] = 296, - [1770] = 297, - [1771] = 1703, - [1772] = 297, - [1773] = 1696, - [1774] = 1713, - [1775] = 305, - [1776] = 1680, - [1777] = 1777, - [1778] = 1778, - [1779] = 329, - [1780] = 313, - [1781] = 320, - [1782] = 321, - [1783] = 326, - [1784] = 310, - [1785] = 329, - [1786] = 1786, - [1787] = 326, - [1788] = 321, - [1789] = 320, - [1790] = 330, - [1791] = 331, - [1792] = 332, - [1793] = 340, - [1794] = 1794, - [1795] = 1795, - [1796] = 307, - [1797] = 1797, - [1798] = 335, - [1799] = 336, - [1800] = 338, - [1801] = 339, - [1802] = 1802, - [1803] = 313, - [1804] = 330, - [1805] = 1805, - [1806] = 312, - [1807] = 1694, - [1808] = 310, - [1809] = 1692, - [1810] = 331, - [1811] = 1811, - [1812] = 307, - [1813] = 305, - [1814] = 340, - [1815] = 304, - [1816] = 342, - [1817] = 343, - [1818] = 344, - [1819] = 323, - [1820] = 346, - [1821] = 347, - [1822] = 332, - [1823] = 349, - [1824] = 1824, - [1825] = 350, - [1826] = 1826, - [1827] = 1827, - [1828] = 1699, - [1829] = 335, - [1830] = 336, - [1831] = 1696, - [1832] = 338, - [1833] = 424, - [1834] = 305, - [1835] = 1835, - [1836] = 304, - [1837] = 1837, - [1838] = 1838, - [1839] = 1839, - [1840] = 339, - [1841] = 424, - [1842] = 1699, - [1843] = 292, - [1844] = 1797, - [1845] = 297, - [1846] = 1846, - [1847] = 1811, - [1848] = 1848, - [1849] = 326, - [1850] = 1827, - [1851] = 1824, - [1852] = 296, - [1853] = 288, - [1854] = 1682, - [1855] = 342, - [1856] = 343, - [1857] = 1719, - [1858] = 344, - [1859] = 1686, - [1860] = 327, - [1861] = 1681, - [1862] = 1862, - [1863] = 323, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1797, - [1870] = 1824, - [1871] = 1811, - [1872] = 327, - [1873] = 1873, - [1874] = 312, - [1875] = 350, - [1876] = 349, - [1877] = 347, - [1878] = 1878, - [1879] = 346, - [1880] = 1880, - [1881] = 1881, - [1882] = 323, - [1883] = 1883, - [1884] = 344, - [1885] = 343, - [1886] = 342, - [1887] = 340, - [1888] = 339, - [1889] = 338, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 336, - [1899] = 335, - [1900] = 313, - [1901] = 312, - [1902] = 332, - [1903] = 331, - [1904] = 1904, - [1905] = 1905, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1827, - [1910] = 330, - [1911] = 1911, + [1725] = 227, + [1726] = 250, + [1727] = 245, + [1728] = 229, + [1729] = 271, + [1730] = 242, + [1731] = 837, + [1732] = 243, + [1733] = 251, + [1734] = 244, + [1735] = 232, + [1736] = 1032, + [1737] = 246, + [1738] = 241, + [1739] = 240, + [1740] = 252, + [1741] = 234, + [1742] = 239, + [1743] = 252, + [1744] = 238, + [1745] = 234, + [1746] = 236, + [1747] = 235, + [1748] = 238, + [1749] = 244, + [1750] = 246, + [1751] = 1638, + [1752] = 251, + [1753] = 261, + [1754] = 263, + [1755] = 250, + [1756] = 236, + [1757] = 235, + [1758] = 235, + [1759] = 230, + [1760] = 240, + [1761] = 236, + [1762] = 241, + [1763] = 246, + [1764] = 244, + [1765] = 242, + [1766] = 265, + [1767] = 238, + [1768] = 245, + [1769] = 234, + [1770] = 266, + [1771] = 253, + [1772] = 239, + [1773] = 1322, + [1774] = 271, + [1775] = 271, + [1776] = 245, + [1777] = 238, + [1778] = 235, + [1779] = 236, + [1780] = 250, + [1781] = 255, + [1782] = 251, + [1783] = 252, + [1784] = 234, + [1785] = 894, + [1786] = 253, + [1787] = 239, + [1788] = 233, + [1789] = 254, + [1790] = 255, + [1791] = 240, + [1792] = 241, + [1793] = 242, + [1794] = 257, + [1795] = 245, + [1796] = 258, + [1797] = 1314, + [1798] = 250, + [1799] = 259, + [1800] = 251, + [1801] = 894, + [1802] = 252, + [1803] = 253, + [1804] = 240, + [1805] = 260, + [1806] = 241, + [1807] = 246, + [1808] = 233, + [1809] = 254, + [1810] = 261, + [1811] = 230, + [1812] = 255, + [1813] = 254, + [1814] = 263, + [1815] = 271, + [1816] = 257, + [1817] = 244, + [1818] = 258, + [1819] = 242, + [1820] = 265, + [1821] = 259, + [1822] = 266, + [1823] = 232, + [1824] = 260, + [1825] = 261, + [1826] = 1255, + [1827] = 263, + [1828] = 233, + [1829] = 229, + [1830] = 265, + [1831] = 266, + [1832] = 227, + [1833] = 267, + [1834] = 239, + [1835] = 253, + [1836] = 237, + [1837] = 240, + [1838] = 837, + [1839] = 241, + [1840] = 242, + [1841] = 245, + [1842] = 1322, + [1843] = 1314, + [1844] = 250, + [1845] = 251, + [1846] = 252, + [1847] = 233, + [1848] = 230, + [1849] = 254, + [1850] = 255, + [1851] = 267, + [1852] = 257, + [1853] = 258, + [1854] = 259, + [1855] = 237, + [1856] = 260, + [1857] = 261, + [1858] = 263, + [1859] = 240, + [1860] = 265, + [1861] = 266, + [1862] = 241, + [1863] = 246, + [1864] = 267, + [1865] = 457, + [1866] = 452, + [1867] = 237, + [1868] = 244, + [1869] = 242, + [1870] = 271, + [1871] = 837, + [1872] = 245, + [1873] = 243, + [1874] = 232, + [1875] = 238, + [1876] = 235, + [1877] = 842, + [1878] = 250, + [1879] = 251, + [1880] = 252, + [1881] = 234, + [1882] = 236, + [1883] = 234, + [1884] = 257, + [1885] = 1638, + [1886] = 807, + [1887] = 253, + [1888] = 239, + [1889] = 1255, + [1890] = 233, + [1891] = 254, + [1892] = 243, + [1893] = 255, + [1894] = 229, + [1895] = 257, + [1896] = 258, + [1897] = 227, + [1898] = 259, + [1899] = 1638, + [1900] = 260, + [1901] = 237, + [1902] = 267, + [1903] = 266, + [1904] = 261, + [1905] = 267, + [1906] = 237, + [1907] = 265, + [1908] = 263, + [1909] = 817, + [1910] = 818, + [1911] = 819, [1912] = 1912, - [1913] = 346, - [1914] = 1682, - [1915] = 1915, - [1916] = 329, - [1917] = 310, - [1918] = 350, - [1919] = 1680, - [1920] = 307, + [1913] = 861, + [1914] = 1396, + [1915] = 856, + [1916] = 857, + [1917] = 1917, + [1918] = 1912, + [1919] = 1919, + [1920] = 878, [1921] = 1921, - [1922] = 320, - [1923] = 321, - [1924] = 304, - [1925] = 1925, - [1926] = 349, - [1927] = 1927, - [1928] = 296, - [1929] = 305, - [1930] = 347, - [1931] = 1931, - [1932] = 1932, - [1933] = 297, - [1934] = 1934, - [1935] = 1935, - [1936] = 1895, - [1937] = 1906, - [1938] = 1935, - [1939] = 312, - [1940] = 1904, - [1941] = 305, - [1942] = 344, - [1943] = 304, - [1944] = 313, - [1945] = 327, - [1946] = 320, - [1947] = 1947, - [1948] = 321, - [1949] = 1935, - [1950] = 326, - [1951] = 1935, - [1952] = 329, - [1953] = 1835, - [1954] = 330, - [1955] = 331, - [1956] = 332, - [1957] = 1935, - [1958] = 335, - [1959] = 336, - [1960] = 338, - [1961] = 339, - [1962] = 340, - [1963] = 342, - [1964] = 1964, - [1965] = 343, - [1966] = 1935, - [1967] = 1935, - [1968] = 1935, - [1969] = 344, - [1970] = 323, - [1971] = 346, - [1972] = 347, - [1973] = 349, - [1974] = 1974, - [1975] = 1975, - [1976] = 1935, - [1977] = 350, - [1978] = 1911, - [1979] = 424, - [1980] = 1975, - [1981] = 343, - [1982] = 1982, - [1983] = 1935, - [1984] = 1805, - [1985] = 1896, - [1986] = 1873, - [1987] = 1826, - [1988] = 347, - [1989] = 1868, - [1990] = 307, - [1991] = 1878, - [1992] = 1848, - [1993] = 1975, - [1994] = 1935, - [1995] = 1897, - [1996] = 323, - [1997] = 1935, - [1998] = 177, - [1999] = 424, - [2000] = 1880, - [2001] = 1975, - [2002] = 1777, - [2003] = 1883, - [2004] = 326, - [2005] = 305, - [2006] = 1935, - [2007] = 1974, - [2008] = 1935, - [2009] = 1881, - [2010] = 1786, - [2011] = 1794, - [2012] = 327, - [2013] = 307, - [2014] = 1890, - [2015] = 1891, - [2016] = 1935, - [2017] = 1894, - [2018] = 1935, - [2019] = 1760, - [2020] = 310, - [2021] = 1935, - [2022] = 1805, - [2023] = 304, - [2024] = 2024, - [2025] = 288, - [2026] = 1881, - [2027] = 288, - [2028] = 310, - [2029] = 329, - [2030] = 330, - [2031] = 1935, - [2032] = 1905, - [2033] = 2033, - [2034] = 2034, - [2035] = 1935, - [2036] = 2036, - [2037] = 1893, - [2038] = 1907, - [2039] = 1935, - [2040] = 1975, - [2041] = 331, - [2042] = 1935, - [2043] = 348, - [2044] = 1908, - [2045] = 2045, - [2046] = 1892, - [2047] = 1935, - [2048] = 1862, - [2049] = 1839, - [2050] = 332, - [2051] = 1935, - [2052] = 312, - [2053] = 1935, - [2054] = 1975, - [2055] = 1795, - [2056] = 1802, - [2057] = 1975, - [2058] = 1846, - [2059] = 1912, - [2060] = 1838, - [2061] = 1837, - [2062] = 350, - [2063] = 1935, - [2064] = 2064, - [2065] = 349, - [2066] = 1915, - [2067] = 1935, - [2068] = 1865, - [2069] = 288, - [2070] = 1866, - [2071] = 1935, - [2072] = 346, - [2073] = 1867, - [2074] = 1935, - [2075] = 313, - [2076] = 335, - [2077] = 2077, - [2078] = 2024, - [2079] = 336, - [2080] = 339, - [2081] = 1935, - [2082] = 2077, - [2083] = 1935, - [2084] = 340, - [2085] = 1974, - [2086] = 338, - [2087] = 1864, - [2088] = 2077, - [2089] = 1921, - [2090] = 1975, - [2091] = 1935, - [2092] = 1925, - [2093] = 297, - [2094] = 342, - [2095] = 1778, - [2096] = 2024, - [2097] = 1927, - [2098] = 1934, - [2099] = 1932, - [2100] = 320, - [2101] = 1931, - [2102] = 321, - [2103] = 1975, - [2104] = 349, - [2105] = 342, - [2106] = 1826, - [2107] = 542, - [2108] = 288, - [2109] = 2064, - [2110] = 1868, - [2111] = 1873, - [2112] = 1786, - [2113] = 544, - [2114] = 297, - [2115] = 540, - [2116] = 1760, - [2117] = 296, - [2118] = 1719, - [2119] = 2119, - [2120] = 2120, - [2121] = 424, - [2122] = 350, - [2123] = 2120, - [2124] = 347, - [2125] = 346, - [2126] = 2120, - [2127] = 323, - [2128] = 344, - [2129] = 343, - [2130] = 2119, - [2131] = 340, - [2132] = 339, - [2133] = 2119, - [2134] = 1878, - [2135] = 338, - [2136] = 336, - [2137] = 1880, - [2138] = 335, - [2139] = 1777, - [2140] = 1897, - [2141] = 1883, - [2142] = 1890, - [2143] = 2120, - [2144] = 1760, - [2145] = 332, - [2146] = 331, - [2147] = 330, - [2148] = 329, - [2149] = 1915, - [2150] = 326, - [2151] = 1805, - [2152] = 321, - [2153] = 320, - [2154] = 313, - [2155] = 312, - [2156] = 310, - [2157] = 307, - [2158] = 305, - [2159] = 2119, - [2160] = 296, - [2161] = 1891, - [2162] = 1894, - [2163] = 2163, - [2164] = 1895, - [2165] = 1760, - [2166] = 2166, - [2167] = 1905, - [2168] = 304, - [2169] = 2120, - [2170] = 2170, - [2171] = 1911, - [2172] = 1912, - [2173] = 2120, - [2174] = 296, + [1922] = 240, + [1923] = 241, + [1924] = 246, + [1925] = 244, + [1926] = 242, + [1927] = 271, + [1928] = 1928, + [1929] = 1912, + [1930] = 810, + [1931] = 1912, + [1932] = 1919, + [1933] = 245, + [1934] = 238, + [1935] = 856, + [1936] = 250, + [1937] = 251, + [1938] = 1418, + [1939] = 252, + [1940] = 1258, + [1941] = 236, + [1942] = 1919, + [1943] = 234, + [1944] = 1314, + [1945] = 1912, + [1946] = 857, + [1947] = 253, + [1948] = 1928, + [1949] = 1949, + [1950] = 239, + [1951] = 233, + [1952] = 1255, + [1953] = 1917, + [1954] = 254, + [1955] = 1912, + [1956] = 1921, + [1957] = 255, + [1958] = 271, + [1959] = 837, + [1960] = 856, + [1961] = 1919, + [1962] = 857, + [1963] = 1322, + [1964] = 257, + [1965] = 258, + [1966] = 259, + [1967] = 260, + [1968] = 261, + [1969] = 263, + [1970] = 861, + [1971] = 265, + [1972] = 266, + [1973] = 267, + [1974] = 237, + [1975] = 1912, + [1976] = 243, + [1977] = 1912, + [1978] = 1919, + [1979] = 1919, + [1980] = 1912, + [1981] = 1255, + [1982] = 1912, + [1983] = 1912, + [1984] = 246, + [1985] = 1912, + [1986] = 244, + [1987] = 1912, + [1988] = 238, + [1989] = 235, + [1990] = 236, + [1991] = 234, + [1992] = 1314, + [1993] = 239, + [1994] = 1994, + [1995] = 1912, + [1996] = 1322, + [1997] = 233, + [1998] = 240, + [1999] = 878, + [2000] = 241, + [2001] = 1032, + [2002] = 242, + [2003] = 243, + [2004] = 245, + [2005] = 250, + [2006] = 251, + [2007] = 252, + [2008] = 237, + [2009] = 267, + [2010] = 266, + [2011] = 1912, + [2012] = 271, + [2013] = 265, + [2014] = 263, + [2015] = 254, + [2016] = 1322, + [2017] = 260, + [2018] = 259, + [2019] = 258, + [2020] = 257, + [2021] = 1912, + [2022] = 1314, + [2023] = 1912, + [2024] = 255, + [2025] = 261, + [2026] = 1994, + [2027] = 1949, + [2028] = 1912, + [2029] = 233, + [2030] = 254, + [2031] = 252, + [2032] = 251, + [2033] = 250, + [2034] = 1032, + [2035] = 255, + [2036] = 257, + [2037] = 258, + [2038] = 245, + [2039] = 243, + [2040] = 259, + [2041] = 242, + [2042] = 260, + [2043] = 261, + [2044] = 263, + [2045] = 241, + [2046] = 240, + [2047] = 265, + [2048] = 266, + [2049] = 267, + [2050] = 237, + [2051] = 1912, + [2052] = 239, + [2053] = 1912, + [2054] = 1912, + [2055] = 1912, + [2056] = 1912, + [2057] = 903, + [2058] = 902, + [2059] = 901, + [2060] = 1912, + [2061] = 234, + [2062] = 236, + [2063] = 235, + [2064] = 1912, + [2065] = 857, + [2066] = 856, + [2067] = 238, + [2068] = 1912, + [2069] = 1255, + [2070] = 271, + [2071] = 244, + [2072] = 246, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 1912, + [2077] = 1928, + [2078] = 878, + [2079] = 1912, + [2080] = 246, + [2081] = 878, + [2082] = 244, + [2083] = 271, + [2084] = 238, + [2085] = 235, + [2086] = 236, + [2087] = 2073, + [2088] = 2074, + [2089] = 2075, + [2090] = 1994, + [2091] = 857, + [2092] = 856, + [2093] = 1928, + [2094] = 1912, + [2095] = 2075, + [2096] = 234, + [2097] = 837, + [2098] = 2074, + [2099] = 239, + [2100] = 810, + [2101] = 235, + [2102] = 1912, + [2103] = 271, + [2104] = 240, + [2105] = 241, + [2106] = 1258, + [2107] = 242, + [2108] = 2073, + [2109] = 243, + [2110] = 245, + [2111] = 1912, + [2112] = 250, + [2113] = 1396, + [2114] = 251, + [2115] = 252, + [2116] = 253, + [2117] = 233, + [2118] = 254, + [2119] = 1949, + [2120] = 1917, + [2121] = 1912, + [2122] = 255, + [2123] = 257, + [2124] = 258, + [2125] = 259, + [2126] = 1921, + [2127] = 260, + [2128] = 261, + [2129] = 263, + [2130] = 1418, + [2131] = 265, + [2132] = 266, + [2133] = 267, + [2134] = 237, + [2135] = 253, + [2136] = 1912, + [2137] = 878, + [2138] = 903, + [2139] = 902, + [2140] = 901, + [2141] = 253, + [2142] = 271, + [2143] = 1255, + [2144] = 271, + [2145] = 2145, + [2146] = 223, + [2147] = 2147, + [2148] = 1314, + [2149] = 221, + [2150] = 1255, + [2151] = 1322, + [2152] = 2152, + [2153] = 2147, + [2154] = 271, + [2155] = 1314, + [2156] = 2147, + [2157] = 223, + [2158] = 2145, + [2159] = 2152, + [2160] = 221, + [2161] = 271, + [2162] = 1322, + [2163] = 2152, + [2164] = 2145, + [2165] = 223, + [2166] = 221, + [2167] = 223, + [2168] = 223, + [2169] = 221, + [2170] = 221, + [2171] = 221, + [2172] = 223, + [2173] = 2173, + [2174] = 2174, [2175] = 2175, - [2176] = 1892, - [2177] = 1908, - [2178] = 1719, - [2179] = 327, - [2180] = 424, - [2181] = 1881, - [2182] = 2119, - [2183] = 1921, - [2184] = 1925, - [2185] = 1927, - [2186] = 1934, - [2187] = 1947, - [2188] = 1932, - [2189] = 2119, - [2190] = 1931, - [2191] = 297, - [2192] = 1906, - [2193] = 1904, - [2194] = 1835, - [2195] = 2120, - [2196] = 1964, - [2197] = 1896, - [2198] = 2119, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2173, + [2181] = 2174, + [2182] = 2178, + [2183] = 2179, + [2184] = 2174, + [2185] = 2173, + [2186] = 2178, + [2187] = 2176, + [2188] = 2177, + [2189] = 2173, + [2190] = 2179, + [2191] = 2175, + [2192] = 2173, + [2193] = 2175, + [2194] = 2176, + [2195] = 2173, + [2196] = 2177, + [2197] = 2197, + [2198] = 2198, [2199] = 2199, - [2200] = 1893, - [2201] = 1794, - [2202] = 2120, - [2203] = 327, - [2204] = 1867, - [2205] = 1866, - [2206] = 1865, - [2207] = 1864, - [2208] = 1907, - [2209] = 1720, - [2210] = 1848, - [2211] = 1846, - [2212] = 1778, - [2213] = 1862, - [2214] = 1839, - [2215] = 1838, - [2216] = 2033, - [2217] = 2034, - [2218] = 2120, - [2219] = 2036, - [2220] = 1837, - [2221] = 1795, - [2222] = 1802, - [2223] = 2119, - [2224] = 2119, - [2225] = 2225, - [2226] = 321, - [2227] = 2227, - [2228] = 2227, - [2229] = 343, - [2230] = 2225, - [2231] = 2225, - [2232] = 2232, - [2233] = 2225, - [2234] = 2227, - [2235] = 342, - [2236] = 346, - [2237] = 347, - [2238] = 340, - [2239] = 2225, - [2240] = 2225, - [2241] = 2045, - [2242] = 2227, - [2243] = 2225, - [2244] = 2225, - [2245] = 349, - [2246] = 2227, - [2247] = 339, - [2248] = 350, - [2249] = 327, - [2250] = 312, - [2251] = 2227, - [2252] = 338, - [2253] = 350, - [2254] = 424, - [2255] = 349, - [2256] = 2225, - [2257] = 336, - [2258] = 347, - [2259] = 335, - [2260] = 313, - [2261] = 2227, - [2262] = 312, - [2263] = 2227, - [2264] = 2225, - [2265] = 2227, - [2266] = 332, - [2267] = 346, - [2268] = 2227, - [2269] = 2225, - [2270] = 323, - [2271] = 344, - [2272] = 331, - [2273] = 330, - [2274] = 329, - [2275] = 343, - [2276] = 2225, - [2277] = 2227, - [2278] = 310, - [2279] = 2227, - [2280] = 2225, - [2281] = 2227, - [2282] = 342, - [2283] = 340, - [2284] = 2225, + [2200] = 2200, + [2201] = 2199, + [2202] = 2202, + [2203] = 2199, + [2204] = 2198, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2211, + [2212] = 2202, + [2213] = 2206, + [2214] = 2211, + [2215] = 2211, + [2216] = 2199, + [2217] = 2208, + [2218] = 2211, + [2219] = 2202, + [2220] = 2210, + [2221] = 2209, + [2222] = 2200, + [2223] = 2209, + [2224] = 2206, + [2225] = 2197, + [2226] = 2226, + [2227] = 2202, + [2228] = 2205, + [2229] = 2207, + [2230] = 2210, + [2231] = 2211, + [2232] = 2209, + [2233] = 2207, + [2234] = 2210, + [2235] = 2199, + [2236] = 2205, + [2237] = 2209, + [2238] = 2202, + [2239] = 2211, + [2240] = 2206, + [2241] = 2210, + [2242] = 2209, + [2243] = 2202, + [2244] = 2226, + [2245] = 2210, + [2246] = 2199, + [2247] = 2226, + [2248] = 2197, + [2249] = 2198, + [2250] = 2200, + [2251] = 2208, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 227, + [2256] = 232, + [2257] = 2257, + [2258] = 2258, + [2259] = 230, + [2260] = 2260, + [2261] = 229, + [2262] = 251, + [2263] = 2263, + [2264] = 238, + [2265] = 239, + [2266] = 258, + [2267] = 267, + [2268] = 257, + [2269] = 255, + [2270] = 261, + [2271] = 266, + [2272] = 254, + [2273] = 265, + [2274] = 233, + [2275] = 253, + [2276] = 252, + [2277] = 236, + [2278] = 2278, + [2279] = 263, + [2280] = 250, + [2281] = 235, + [2282] = 240, + [2283] = 260, + [2284] = 237, [2285] = 2285, - [2286] = 2286, - [2287] = 2225, - [2288] = 2227, - [2289] = 2227, - [2290] = 323, - [2291] = 2225, - [2292] = 2225, - [2293] = 338, - [2294] = 2227, - [2295] = 307, - [2296] = 424, - [2297] = 326, - [2298] = 2286, - [2299] = 305, - [2300] = 336, - [2301] = 335, - [2302] = 2227, - [2303] = 332, - [2304] = 2227, - [2305] = 304, - [2306] = 331, - [2307] = 321, - [2308] = 320, - [2309] = 2286, - [2310] = 2227, - [2311] = 2286, - [2312] = 2225, - [2313] = 2313, - [2314] = 2314, - [2315] = 330, - [2316] = 329, - [2317] = 326, - [2318] = 339, - [2319] = 2225, - [2320] = 2227, - [2321] = 2225, - [2322] = 320, - [2323] = 313, - [2324] = 2227, - [2325] = 2225, - [2326] = 2227, - [2327] = 344, - [2328] = 2227, - [2329] = 2227, - [2330] = 2225, - [2331] = 2227, - [2332] = 2225, - [2333] = 2333, - [2334] = 2232, + [2286] = 241, + [2287] = 244, + [2288] = 245, + [2289] = 243, + [2290] = 234, + [2291] = 259, + [2292] = 246, + [2293] = 242, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 271, + [2299] = 2299, + [2300] = 1322, + [2301] = 2301, + [2302] = 2302, + [2303] = 2301, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 1314, + [2308] = 2308, + [2309] = 2306, + [2310] = 2296, + [2311] = 2302, + [2312] = 2312, + [2313] = 2312, + [2314] = 2312, + [2315] = 2296, + [2316] = 2316, + [2317] = 2302, + [2318] = 2306, + [2319] = 2301, + [2320] = 223, + [2321] = 2321, + [2322] = 2322, + [2323] = 221, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2305, + [2329] = 2308, + [2330] = 2316, + [2331] = 227, + [2332] = 2332, + [2333] = 2308, + [2334] = 2325, [2335] = 2335, - [2336] = 2227, - [2337] = 2225, - [2338] = 2225, - [2339] = 2225, - [2340] = 2227, - [2341] = 2232, - [2342] = 2227, - [2343] = 2227, - [2344] = 2225, - [2345] = 2225, - [2346] = 2225, - [2347] = 2227, - [2348] = 2227, - [2349] = 304, - [2350] = 2225, - [2351] = 2225, - [2352] = 305, - [2353] = 307, - [2354] = 310, - [2355] = 2355, - [2356] = 2034, - [2357] = 2357, + [2336] = 2332, + [2337] = 2337, + [2338] = 2338, + [2339] = 229, + [2340] = 2325, + [2341] = 2338, + [2342] = 232, + [2343] = 2325, + [2344] = 2325, + [2345] = 2316, + [2346] = 2325, + [2347] = 2335, + [2348] = 2337, + [2349] = 2297, + [2350] = 2299, + [2351] = 2322, + [2352] = 2325, + [2353] = 2305, + [2354] = 2354, + [2355] = 2326, + [2356] = 2338, + [2357] = 2325, [2358] = 2358, - [2359] = 2359, - [2360] = 1964, - [2361] = 2361, - [2362] = 1947, - [2363] = 2036, - [2364] = 2357, - [2365] = 2361, - [2366] = 2064, - [2367] = 2367, - [2368] = 1947, - [2369] = 2367, - [2370] = 2367, - [2371] = 2033, - [2372] = 2372, - [2373] = 2373, - [2374] = 2045, - [2375] = 2375, - [2376] = 2359, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 1964, - [2384] = 2380, - [2385] = 2373, - [2386] = 2372, + [2359] = 2337, + [2360] = 2325, + [2361] = 2325, + [2362] = 2335, + [2363] = 2332, + [2364] = 230, + [2365] = 2365, + [2366] = 230, + [2367] = 2327, + [2368] = 2326, + [2369] = 2327, + [2370] = 2370, + [2371] = 251, + [2372] = 2322, + [2373] = 2297, + [2374] = 265, + [2375] = 230, + [2376] = 243, + [2377] = 243, + [2378] = 452, + [2379] = 457, + [2380] = 237, + [2381] = 232, + [2382] = 267, + [2383] = 266, + [2384] = 229, + [2385] = 227, + [2386] = 2386, [2387] = 2358, - [2388] = 2355, - [2389] = 2389, - [2390] = 2358, - [2391] = 2375, - [2392] = 2045, - [2393] = 2382, - [2394] = 2064, - [2395] = 2379, - [2396] = 2359, - [2397] = 2397, - [2398] = 2361, - [2399] = 2372, - [2400] = 2380, - [2401] = 2359, - [2402] = 2380, - [2403] = 2357, - [2404] = 2377, - [2405] = 2358, - [2406] = 2381, - [2407] = 2378, - [2408] = 2045, - [2409] = 2409, - [2410] = 2355, - [2411] = 2036, - [2412] = 2034, - [2413] = 2378, - [2414] = 424, - [2415] = 2377, - [2416] = 2033, - [2417] = 2381, - [2418] = 2382, - [2419] = 2372, - [2420] = 2375, - [2421] = 2379, - [2422] = 2357, - [2423] = 2380, - [2424] = 2372, - [2425] = 2359, - [2426] = 2361, + [2388] = 263, + [2389] = 2316, + [2390] = 2365, + [2391] = 261, + [2392] = 2297, + [2393] = 260, + [2394] = 2386, + [2395] = 259, + [2396] = 2299, + [2397] = 2305, + [2398] = 258, + [2399] = 257, + [2400] = 245, + [2401] = 255, + [2402] = 254, + [2403] = 2370, + [2404] = 240, + [2405] = 241, + [2406] = 2406, + [2407] = 2407, + [2408] = 246, + [2409] = 233, + [2410] = 2322, + [2411] = 244, + [2412] = 239, + [2413] = 2413, + [2414] = 242, + [2415] = 253, + [2416] = 2416, + [2417] = 2299, + [2418] = 234, + [2419] = 2419, + [2420] = 238, + [2421] = 2421, + [2422] = 236, + [2423] = 2322, + [2424] = 230, + [2425] = 2324, + [2426] = 2308, [2427] = 2427, - [2428] = 2427, - [2429] = 2429, - [2430] = 2429, - [2431] = 2431, - [2432] = 2431, - [2433] = 2429, - [2434] = 2431, - [2435] = 2429, - [2436] = 2429, - [2437] = 2431, - [2438] = 2429, - [2439] = 288, - [2440] = 2429, - [2441] = 2431, - [2442] = 2431, - [2443] = 2431, - [2444] = 2431, - [2445] = 2431, - [2446] = 2429, - [2447] = 2429, - [2448] = 2429, - [2449] = 2431, - [2450] = 2431, - [2451] = 2431, - [2452] = 2429, - [2453] = 2429, - [2454] = 2431, - [2455] = 2431, - [2456] = 2431, - [2457] = 2431, - [2458] = 2431, - [2459] = 2429, - [2460] = 2431, - [2461] = 2431, - [2462] = 2431, - [2463] = 2429, - [2464] = 2429, - [2465] = 2429, - [2466] = 2431, - [2467] = 2431, - [2468] = 2429, - [2469] = 2429, - [2470] = 2429, - [2471] = 2429, - [2472] = 2431, - [2473] = 2431, - [2474] = 2429, - [2475] = 2431, - [2476] = 2429, - [2477] = 2431, - [2478] = 2429, - [2479] = 2429, - [2480] = 2429, - [2481] = 2429, - [2482] = 2431, - [2483] = 2429, - [2484] = 2429, - [2485] = 2431, - [2486] = 296, - [2487] = 2429, - [2488] = 2429, - [2489] = 2429, - [2490] = 2490, - [2491] = 297, - [2492] = 177, - [2493] = 2429, - [2494] = 2431, - [2495] = 340, - [2496] = 342, - [2497] = 312, - [2498] = 327, - [2499] = 313, - [2500] = 2500, - [2501] = 350, - [2502] = 349, - [2503] = 304, - [2504] = 320, - [2505] = 321, - [2506] = 326, - [2507] = 347, - [2508] = 329, - [2509] = 346, - [2510] = 330, - [2511] = 305, - [2512] = 307, - [2513] = 331, - [2514] = 335, - [2515] = 336, - [2516] = 338, - [2517] = 339, - [2518] = 323, - [2519] = 310, - [2520] = 332, - [2521] = 343, - [2522] = 344, - [2523] = 424, - [2524] = 296, - [2525] = 297, - [2526] = 2490, - [2527] = 288, - [2528] = 177, - [2529] = 177, - [2530] = 323, - [2531] = 2531, - [2532] = 2532, - [2533] = 2531, - [2534] = 2531, - [2535] = 329, - [2536] = 2531, - [2537] = 304, - [2538] = 2538, - [2539] = 2539, - [2540] = 2531, - [2541] = 177, - [2542] = 2531, - [2543] = 305, - [2544] = 2544, - [2545] = 2531, - [2546] = 307, - [2547] = 2531, - [2548] = 2531, - [2549] = 2531, - [2550] = 2531, - [2551] = 2531, - [2552] = 2531, - [2553] = 310, - [2554] = 2531, - [2555] = 312, - [2556] = 2500, - [2557] = 313, - [2558] = 2531, + [2428] = 250, + [2429] = 235, + [2430] = 252, + [2431] = 2299, + [2432] = 2297, + [2433] = 2354, + [2434] = 2434, + [2435] = 2434, + [2436] = 2436, + [2437] = 2434, + [2438] = 2438, + [2439] = 2434, + [2440] = 2434, + [2441] = 2441, + [2442] = 243, + [2443] = 2438, + [2444] = 2427, + [2445] = 2438, + [2446] = 2436, + [2447] = 2413, + [2448] = 2438, + [2449] = 2434, + [2450] = 2421, + [2451] = 2434, + [2452] = 2413, + [2453] = 2421, + [2454] = 251, + [2455] = 2406, + [2456] = 2434, + [2457] = 2434, + [2458] = 2434, + [2459] = 2436, + [2460] = 2438, + [2461] = 2436, + [2462] = 2434, + [2463] = 229, + [2464] = 2434, + [2465] = 2406, + [2466] = 2407, + [2467] = 2434, + [2468] = 2436, + [2469] = 2365, + [2470] = 227, + [2471] = 2358, + [2472] = 2434, + [2473] = 2438, + [2474] = 2434, + [2475] = 2434, + [2476] = 2354, + [2477] = 2477, + [2478] = 2436, + [2479] = 250, + [2480] = 2436, + [2481] = 2324, + [2482] = 2434, + [2483] = 2416, + [2484] = 2436, + [2485] = 2434, + [2486] = 2438, + [2487] = 2436, + [2488] = 2324, + [2489] = 2434, + [2490] = 2438, + [2491] = 2491, + [2492] = 2434, + [2493] = 2434, + [2494] = 2434, + [2495] = 232, + [2496] = 2304, + [2497] = 2434, + [2498] = 2441, + [2499] = 2434, + [2500] = 246, + [2501] = 2501, + [2502] = 244, + [2503] = 221, + [2504] = 238, + [2505] = 235, + [2506] = 837, + [2507] = 223, + [2508] = 2508, + [2509] = 236, + [2510] = 234, + [2511] = 2434, + [2512] = 239, + [2513] = 2434, + [2514] = 271, + [2515] = 2434, + [2516] = 2407, + [2517] = 271, + [2518] = 253, + [2519] = 2370, + [2520] = 2434, + [2521] = 2434, + [2522] = 240, + [2523] = 241, + [2524] = 245, + [2525] = 2365, + [2526] = 2436, + [2527] = 2438, + [2528] = 227, + [2529] = 229, + [2530] = 2434, + [2531] = 2358, + [2532] = 2386, + [2533] = 237, + [2534] = 2434, + [2535] = 267, + [2536] = 2434, + [2537] = 2438, + [2538] = 266, + [2539] = 265, + [2540] = 263, + [2541] = 261, + [2542] = 260, + [2543] = 2354, + [2544] = 2436, + [2545] = 259, + [2546] = 258, + [2547] = 257, + [2548] = 255, + [2549] = 254, + [2550] = 233, + [2551] = 230, + [2552] = 2434, + [2553] = 2434, + [2554] = 242, + [2555] = 252, + [2556] = 2556, + [2557] = 2557, + [2558] = 2557, [2559] = 2559, - [2560] = 320, - [2561] = 2531, - [2562] = 2562, - [2563] = 321, - [2564] = 2531, - [2565] = 2531, - [2566] = 2531, - [2567] = 326, - [2568] = 330, - [2569] = 331, - [2570] = 332, - [2571] = 2531, - [2572] = 335, - [2573] = 336, + [2560] = 2560, + [2561] = 2561, + [2562] = 2561, + [2563] = 2557, + [2564] = 2557, + [2565] = 2561, + [2566] = 2561, + [2567] = 2557, + [2568] = 2557, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2561, [2574] = 2574, - [2575] = 338, - [2576] = 339, - [2577] = 2531, - [2578] = 340, - [2579] = 342, - [2580] = 343, - [2581] = 2581, - [2582] = 344, - [2583] = 2531, - [2584] = 2584, - [2585] = 2585, - [2586] = 2531, - [2587] = 2587, - [2588] = 2531, - [2589] = 2589, - [2590] = 2531, - [2591] = 346, + [2575] = 2575, + [2576] = 2576, + [2577] = 2557, + [2578] = 2561, + [2579] = 2354, + [2580] = 2580, + [2581] = 2561, + [2582] = 1322, + [2583] = 2557, + [2584] = 2561, + [2585] = 2561, + [2586] = 2421, + [2587] = 2557, + [2588] = 2386, + [2589] = 2406, + [2590] = 2557, + [2591] = 246, [2592] = 2592, - [2593] = 347, - [2594] = 2594, - [2595] = 2595, - [2596] = 2531, - [2597] = 349, - [2598] = 2598, - [2599] = 350, - [2600] = 327, - [2601] = 2531, - [2602] = 2602, - [2603] = 2531, - [2604] = 2531, - [2605] = 2531, - [2606] = 2531, - [2607] = 2607, - [2608] = 2608, - [2609] = 2609, + [2593] = 2407, + [2594] = 2561, + [2595] = 2413, + [2596] = 2596, + [2597] = 244, + [2598] = 2324, + [2599] = 2557, + [2600] = 2557, + [2601] = 2601, + [2602] = 2557, + [2603] = 238, + [2604] = 2370, + [2605] = 235, + [2606] = 2416, + [2607] = 2561, + [2608] = 2427, + [2609] = 2561, [2610] = 2610, [2611] = 2611, [2612] = 2612, - [2613] = 2613, - [2614] = 2614, + [2613] = 236, + [2614] = 234, [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2611, - [2619] = 2619, + [2616] = 2561, + [2617] = 2561, + [2618] = 2612, + [2619] = 257, [2620] = 2620, [2621] = 2621, - [2622] = 2622, - [2623] = 2611, - [2624] = 2612, + [2622] = 2561, + [2623] = 2557, + [2624] = 2624, [2625] = 2625, - [2626] = 2612, - [2627] = 2611, - [2628] = 2628, - [2629] = 2614, - [2630] = 2612, - [2631] = 2631, - [2632] = 2632, + [2626] = 2626, + [2627] = 239, + [2628] = 2557, + [2629] = 2629, + [2630] = 2630, + [2631] = 2561, + [2632] = 2557, [2633] = 2633, - [2634] = 2614, - [2635] = 2635, - [2636] = 2611, - [2637] = 2614, - [2638] = 2638, + [2634] = 2634, + [2635] = 2557, + [2636] = 2561, + [2637] = 2561, + [2638] = 2358, [2639] = 2639, - [2640] = 2612, - [2641] = 2612, + [2640] = 2640, + [2641] = 2641, [2642] = 2642, - [2643] = 2643, + [2643] = 2561, [2644] = 2644, [2645] = 2645, - [2646] = 2611, - [2647] = 2647, - [2648] = 2611, - [2649] = 2614, - [2650] = 2650, - [2651] = 2651, + [2646] = 2491, + [2647] = 2645, + [2648] = 2648, + [2649] = 2557, + [2650] = 2561, + [2651] = 2557, [2652] = 2652, [2653] = 2653, - [2654] = 2654, - [2655] = 2612, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, - [2660] = 2614, - [2661] = 2614, - [2662] = 2614, - [2663] = 2612, - [2664] = 2664, - [2665] = 2665, - [2666] = 2611, - [2667] = 2667, - [2668] = 2614, - [2669] = 2612, + [2654] = 2561, + [2655] = 2557, + [2656] = 2557, + [2657] = 240, + [2658] = 2557, + [2659] = 241, + [2660] = 2660, + [2661] = 242, + [2662] = 271, + [2663] = 2557, + [2664] = 245, + [2665] = 2561, + [2666] = 2557, + [2667] = 2612, + [2668] = 2561, + [2669] = 2561, [2670] = 2670, - [2671] = 2611, - [2672] = 2672, - [2673] = 2612, - [2674] = 2614, - [2675] = 2611, + [2671] = 2561, + [2672] = 250, + [2673] = 2673, + [2674] = 2645, + [2675] = 2675, [2676] = 2676, - [2677] = 2612, - [2678] = 2611, - [2679] = 2611, - [2680] = 2680, - [2681] = 2614, - [2682] = 2612, - [2683] = 2683, - [2684] = 2684, - [2685] = 2611, - [2686] = 2612, - [2687] = 2614, - [2688] = 2614, - [2689] = 2612, - [2690] = 2690, - [2691] = 2611, - [2692] = 2611, - [2693] = 2614, - [2694] = 2612, + [2677] = 2557, + [2678] = 227, + [2679] = 2561, + [2680] = 2557, + [2681] = 237, + [2682] = 267, + [2683] = 2561, + [2684] = 251, + [2685] = 229, + [2686] = 2557, + [2687] = 2557, + [2688] = 2688, + [2689] = 2689, + [2690] = 1255, + [2691] = 1314, + [2692] = 2561, + [2693] = 232, + [2694] = 2557, [2695] = 2695, - [2696] = 2611, - [2697] = 2614, - [2698] = 2612, - [2699] = 2699, - [2700] = 2612, - [2701] = 2611, - [2702] = 2614, - [2703] = 2614, - [2704] = 2611, - [2705] = 2612, + [2696] = 2365, + [2697] = 2561, + [2698] = 266, + [2699] = 2561, + [2700] = 2557, + [2701] = 243, + [2702] = 265, + [2703] = 2557, + [2704] = 263, + [2705] = 2561, [2706] = 2706, - [2707] = 2707, - [2708] = 2612, - [2709] = 2709, - [2710] = 2611, - [2711] = 2614, - [2712] = 2712, - [2713] = 2612, - [2714] = 2714, - [2715] = 2612, - [2716] = 2611, - [2717] = 2614, - [2718] = 2611, - [2719] = 2611, - [2720] = 2611, - [2721] = 2611, - [2722] = 2612, - [2723] = 2723, - [2724] = 2612, - [2725] = 2614, - [2726] = 2614, - [2727] = 2612, + [2707] = 2612, + [2708] = 2708, + [2709] = 2477, + [2710] = 261, + [2711] = 260, + [2712] = 259, + [2713] = 258, + [2714] = 2561, + [2715] = 2715, + [2716] = 252, + [2717] = 2717, + [2718] = 255, + [2719] = 2561, + [2720] = 2561, + [2721] = 2557, + [2722] = 2557, + [2723] = 254, + [2724] = 233, + [2725] = 2725, + [2726] = 253, + [2727] = 2557, [2728] = 2728, - [2729] = 2614, - [2730] = 2614, - [2731] = 2614, - [2732] = 2614, - [2733] = 2611, - [2734] = 2612, - [2735] = 2611, - [2736] = 2614, - [2737] = 2614, - [2738] = 2612, + [2729] = 2729, + [2730] = 2653, + [2731] = 2728, + [2732] = 240, + [2733] = 2615, + [2734] = 2734, + [2735] = 241, + [2736] = 2736, + [2737] = 242, + [2738] = 271, [2739] = 2739, - [2740] = 2611, - [2741] = 424, - [2742] = 2742, - [2743] = 2612, - [2744] = 2614, - [2745] = 2611, - [2746] = 2612, - [2747] = 2614, - [2748] = 2612, - [2749] = 2611, - [2750] = 2750, - [2751] = 2750, - [2752] = 2750, - [2753] = 2750, - [2754] = 2750, - [2755] = 2755, - [2756] = 2755, - [2757] = 2750, - [2758] = 2758, - [2759] = 2755, - [2760] = 2750, - [2761] = 2750, - [2762] = 2750, - [2763] = 2750, - [2764] = 2750, - [2765] = 2750, - [2766] = 2750, - [2767] = 2750, - [2768] = 2750, - [2769] = 2750, - [2770] = 2750, - [2771] = 2750, - [2772] = 2750, - [2773] = 2750, - [2774] = 2750, - [2775] = 2750, - [2776] = 2750, - [2777] = 2750, - [2778] = 2750, - [2779] = 2750, - [2780] = 2750, - [2781] = 2755, - [2782] = 2750, - [2783] = 2750, - [2784] = 2750, - [2785] = 2750, - [2786] = 2786, - [2787] = 2787, - [2788] = 2787, - [2789] = 2786, - [2790] = 2787, - [2791] = 2791, - [2792] = 2792, - [2793] = 2787, - [2794] = 2786, - [2795] = 2795, - [2796] = 2796, - [2797] = 2787, - [2798] = 2786, - [2799] = 2786, - [2800] = 2787, - [2801] = 2787, - [2802] = 2787, - [2803] = 2786, - [2804] = 2786, - [2805] = 2787, - [2806] = 2796, - [2807] = 2787, - [2808] = 2787, - [2809] = 2786, - [2810] = 2786, - [2811] = 2787, - [2812] = 2786, - [2813] = 2787, - [2814] = 2786, - [2815] = 2786, - [2816] = 2786, - [2817] = 2787, - [2818] = 2792, - [2819] = 2786, - [2820] = 2786, - [2821] = 2786, - [2822] = 2787, - [2823] = 2787, - [2824] = 2786, - [2825] = 2786, - [2826] = 2826, - [2827] = 2786, - [2828] = 2787, - [2829] = 2786, - [2830] = 2786, - [2831] = 2787, - [2832] = 2786, - [2833] = 2786, - [2834] = 2787, - [2835] = 2787, - [2836] = 2786, - [2837] = 2787, - [2838] = 2787, - [2839] = 2787, - [2840] = 2787, - [2841] = 2786, - [2842] = 2787, - [2843] = 2786, - [2844] = 2796, - [2845] = 2786, - [2846] = 2792, - [2847] = 2787, - [2848] = 2786, - [2849] = 2787, - [2850] = 2786, - [2851] = 2787, - [2852] = 2787, - [2853] = 2853, - [2854] = 2854, - [2855] = 288, - [2856] = 2856, - [2857] = 2854, - [2858] = 2853, - [2859] = 2859, - [2860] = 2859, - [2861] = 2854, - [2862] = 2859, - [2863] = 2853, - [2864] = 338, - [2865] = 321, - [2866] = 343, - [2867] = 2867, - [2868] = 2868, - [2869] = 329, - [2870] = 331, - [2871] = 332, - [2872] = 335, - [2873] = 344, - [2874] = 339, - [2875] = 336, - [2876] = 330, - [2877] = 346, - [2878] = 2878, - [2879] = 2879, - [2880] = 326, - [2881] = 342, - [2882] = 320, - [2883] = 347, - [2884] = 340, - [2885] = 323, - [2886] = 350, - [2887] = 2879, - [2888] = 2868, - [2889] = 297, - [2890] = 2890, - [2891] = 327, - [2892] = 2892, - [2893] = 2879, - [2894] = 2868, - [2895] = 296, - [2896] = 349, - [2897] = 2897, - [2898] = 2898, - [2899] = 2899, - [2900] = 343, - [2901] = 320, - [2902] = 321, - [2903] = 331, - [2904] = 346, - [2905] = 347, - [2906] = 332, - [2907] = 349, - [2908] = 2908, - [2909] = 350, - [2910] = 335, - [2911] = 336, - [2912] = 338, - [2913] = 326, - [2914] = 339, - [2915] = 340, - [2916] = 342, - [2917] = 2908, - [2918] = 2918, - [2919] = 329, - [2920] = 330, - [2921] = 2921, - [2922] = 2921, - [2923] = 343, - [2924] = 344, - [2925] = 320, - [2926] = 2890, - [2927] = 307, - [2928] = 323, - [2929] = 2899, - [2930] = 350, - [2931] = 349, - [2932] = 347, - [2933] = 346, - [2934] = 2908, - [2935] = 323, - [2936] = 344, - [2937] = 342, - [2938] = 340, - [2939] = 339, - [2940] = 2898, - [2941] = 338, - [2942] = 336, - [2943] = 335, - [2944] = 2921, - [2945] = 313, - [2946] = 2897, - [2947] = 2878, - [2948] = 312, - [2949] = 332, - [2950] = 331, - [2951] = 330, - [2952] = 329, - [2953] = 310, - [2954] = 424, - [2955] = 326, - [2956] = 305, - [2957] = 304, - [2958] = 321, - [2959] = 2959, - [2960] = 2960, - [2961] = 2961, - [2962] = 2962, - [2963] = 2963, - [2964] = 2964, - [2965] = 2878, - [2966] = 2898, - [2967] = 2967, - [2968] = 2960, - [2969] = 2969, - [2970] = 2898, - [2971] = 2961, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2967, - [2978] = 2978, - [2979] = 2878, - [2980] = 2980, - [2981] = 2897, - [2982] = 2898, - [2983] = 2960, - [2984] = 2961, - [2985] = 2978, - [2986] = 2964, - [2987] = 2987, - [2988] = 2969, - [2989] = 2878, + [2740] = 239, + [2741] = 245, + [2742] = 234, + [2743] = 2743, + [2744] = 250, + [2745] = 2745, + [2746] = 251, + [2747] = 2491, + [2748] = 2728, + [2749] = 236, + [2750] = 235, + [2751] = 238, + [2752] = 2752, + [2753] = 252, + [2754] = 244, + [2755] = 2752, + [2756] = 246, + [2757] = 253, + [2758] = 233, + [2759] = 254, + [2760] = 2736, + [2761] = 2620, + [2762] = 2729, + [2763] = 2739, + [2764] = 2764, + [2765] = 255, + [2766] = 257, + [2767] = 2729, + [2768] = 2625, + [2769] = 258, + [2770] = 259, + [2771] = 2626, + [2772] = 260, + [2773] = 261, + [2774] = 2610, + [2775] = 2574, + [2776] = 2570, + [2777] = 2569, + [2778] = 2630, + [2779] = 2734, + [2780] = 263, + [2781] = 265, + [2782] = 2576, + [2783] = 266, + [2784] = 267, + [2785] = 2743, + [2786] = 237, + [2787] = 2556, + [2788] = 2688, + [2789] = 2752, + [2790] = 2673, + [2791] = 2611, + [2792] = 2601, + [2793] = 2477, + [2794] = 2745, + [2795] = 2621, + [2796] = 2559, + [2797] = 2560, + [2798] = 2571, + [2799] = 2633, + [2800] = 2652, + [2801] = 2592, + [2802] = 2644, + [2803] = 2670, + [2804] = 2640, + [2805] = 2708, + [2806] = 2806, + [2807] = 2715, + [2808] = 2717, + [2809] = 2660, + [2810] = 2725, + [2811] = 2641, + [2812] = 2743, + [2813] = 2695, + [2814] = 2689, + [2815] = 2676, + [2816] = 2675, + [2817] = 2648, + [2818] = 2642, + [2819] = 2572, + [2820] = 2706, + [2821] = 2734, + [2822] = 2734, + [2823] = 2639, + [2824] = 2580, + [2825] = 2729, + [2826] = 2634, + [2827] = 2629, + [2828] = 2624, + [2829] = 2575, + [2830] = 2830, + [2831] = 2596, + [2832] = 2728, + [2833] = 2743, + [2834] = 2734, + [2835] = 2743, + [2836] = 2706, + [2837] = 2574, + [2838] = 2838, + [2839] = 2839, + [2840] = 2838, + [2841] = 2841, + [2842] = 2838, + [2843] = 2841, + [2844] = 2841, + [2845] = 2839, + [2846] = 2841, + [2847] = 2571, + [2848] = 2838, + [2849] = 2576, + [2850] = 2841, + [2851] = 2715, + [2852] = 2673, + [2853] = 2569, + [2854] = 2640, + [2855] = 2839, + [2856] = 2839, + [2857] = 2841, + [2858] = 2708, + [2859] = 2572, + [2860] = 2639, + [2861] = 2841, + [2862] = 2839, + [2863] = 2644, + [2864] = 2838, + [2865] = 2838, + [2866] = 2839, + [2867] = 2841, + [2868] = 2839, + [2869] = 2839, + [2870] = 2689, + [2871] = 2839, + [2872] = 2839, + [2873] = 2839, + [2874] = 2841, + [2875] = 2841, + [2876] = 2626, + [2877] = 2841, + [2878] = 2838, + [2879] = 2841, + [2880] = 2838, + [2881] = 2653, + [2882] = 2838, + [2883] = 2556, + [2884] = 2839, + [2885] = 2839, + [2886] = 2630, + [2887] = 2838, + [2888] = 2648, + [2889] = 2688, + [2890] = 2838, + [2891] = 2477, + [2892] = 2717, + [2893] = 2725, + [2894] = 2841, + [2895] = 2570, + [2896] = 2839, + [2897] = 2839, + [2898] = 2839, + [2899] = 2633, + [2900] = 2841, + [2901] = 2838, + [2902] = 2841, + [2903] = 2839, + [2904] = 2839, + [2905] = 2841, + [2906] = 2841, + [2907] = 2839, + [2908] = 2838, + [2909] = 2841, + [2910] = 2839, + [2911] = 2841, + [2912] = 2839, + [2913] = 2841, + [2914] = 2839, + [2915] = 2839, + [2916] = 2652, + [2917] = 2580, + [2918] = 2634, + [2919] = 2629, + [2920] = 2624, + [2921] = 2838, + [2922] = 2575, + [2923] = 2660, + [2924] = 2841, + [2925] = 2839, + [2926] = 2838, + [2927] = 2838, + [2928] = 2838, + [2929] = 2839, + [2930] = 2615, + [2931] = 2838, + [2932] = 2839, + [2933] = 2592, + [2934] = 2841, + [2935] = 2610, + [2936] = 2642, + [2937] = 2611, + [2938] = 2841, + [2939] = 2838, + [2940] = 2601, + [2941] = 2596, + [2942] = 2838, + [2943] = 2841, + [2944] = 2839, + [2945] = 2620, + [2946] = 2839, + [2947] = 2841, + [2948] = 2841, + [2949] = 2839, + [2950] = 2841, + [2951] = 2841, + [2952] = 2621, + [2953] = 2838, + [2954] = 2838, + [2955] = 2838, + [2956] = 2841, + [2957] = 2838, + [2958] = 2841, + [2959] = 2625, + [2960] = 2838, + [2961] = 2839, + [2962] = 2675, + [2963] = 2841, + [2964] = 2676, + [2965] = 2839, + [2966] = 2838, + [2967] = 2841, + [2968] = 2838, + [2969] = 2838, + [2970] = 2559, + [2971] = 2838, + [2972] = 2841, + [2973] = 2695, + [2974] = 2839, + [2975] = 2839, + [2976] = 2560, + [2977] = 2841, + [2978] = 2839, + [2979] = 2641, + [2980] = 2839, + [2981] = 2838, + [2982] = 2491, + [2983] = 2838, + [2984] = 2670, + [2985] = 2841, + [2986] = 2838, + [2987] = 229, + [2988] = 227, + [2989] = 232, [2990] = 2990, - [2991] = 2890, - [2992] = 288, - [2993] = 2993, - [2994] = 2974, - [2995] = 2975, - [2996] = 2976, - [2997] = 2980, - [2998] = 2967, - [2999] = 2976, - [3000] = 2975, - [3001] = 2974, - [3002] = 2969, - [3003] = 2980, - [3004] = 3004, - [3005] = 2964, - [3006] = 3006, - [3007] = 2978, - [3008] = 2899, - [3009] = 3009, - [3010] = 296, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3016, - [3017] = 3016, - [3018] = 3018, - [3019] = 3019, - [3020] = 3020, - [3021] = 3021, - [3022] = 3022, - [3023] = 3015, - [3024] = 3024, - [3025] = 3022, - [3026] = 3026, - [3027] = 3015, - [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 3031, - [3032] = 3030, - [3033] = 3033, - [3034] = 3034, - [3035] = 3009, - [3036] = 3036, - [3037] = 3011, - [3038] = 3034, - [3039] = 3039, - [3040] = 3018, - [3041] = 3016, - [3042] = 3024, - [3043] = 288, - [3044] = 3044, - [3045] = 3014, - [3046] = 3036, - [3047] = 3047, - [3048] = 3012, - [3049] = 3011, - [3050] = 3024, - [3051] = 3047, - [3052] = 3022, - [3053] = 3034, - [3054] = 3047, - [3055] = 3009, - [3056] = 3024, - [3057] = 3036, - [3058] = 3026, - [3059] = 327, - [3060] = 288, - [3061] = 3014, - [3062] = 3062, - [3063] = 3030, + [2991] = 2991, + [2992] = 230, + [2993] = 246, + [2994] = 238, + [2995] = 2995, + [2996] = 239, + [2997] = 237, + [2998] = 267, + [2999] = 266, + [3000] = 236, + [3001] = 244, + [3002] = 240, + [3003] = 241, + [3004] = 242, + [3005] = 265, + [3006] = 243, + [3007] = 235, + [3008] = 263, + [3009] = 245, + [3010] = 234, + [3011] = 261, + [3012] = 250, + [3013] = 251, + [3014] = 252, + [3015] = 253, + [3016] = 233, + [3017] = 254, + [3018] = 255, + [3019] = 257, + [3020] = 258, + [3021] = 260, + [3022] = 259, + [3023] = 221, + [3024] = 223, + [3025] = 232, + [3026] = 271, + [3027] = 241, + [3028] = 254, + [3029] = 242, + [3030] = 240, + [3031] = 230, + [3032] = 237, + [3033] = 267, + [3034] = 266, + [3035] = 245, + [3036] = 243, + [3037] = 227, + [3038] = 244, + [3039] = 246, + [3040] = 234, + [3041] = 229, + [3042] = 2991, + [3043] = 265, + [3044] = 263, + [3045] = 261, + [3046] = 260, + [3047] = 2990, + [3048] = 223, + [3049] = 238, + [3050] = 235, + [3051] = 233, + [3052] = 259, + [3053] = 250, + [3054] = 239, + [3055] = 258, + [3056] = 257, + [3057] = 255, + [3058] = 236, + [3059] = 251, + [3060] = 252, + [3061] = 221, + [3062] = 253, + [3063] = 3063, [3064] = 3064, - [3065] = 3012, + [3065] = 3065, [3066] = 3066, - [3067] = 3018, + [3067] = 3067, [3068] = 3068, [3069] = 3069, [3070] = 3070, - [3071] = 3069, - [3072] = 3068, - [3073] = 3068, + [3071] = 2995, + [3072] = 3072, + [3073] = 3073, [3074] = 3074, - [3075] = 3074, - [3076] = 3069, + [3075] = 3075, + [3076] = 3076, [3077] = 3077, - [3078] = 3077, - [3079] = 3068, - [3080] = 3068, + [3078] = 271, + [3079] = 3079, + [3080] = 3080, [3081] = 3081, - [3082] = 3068, - [3083] = 3077, - [3084] = 3068, - [3085] = 3069, - [3086] = 3077, - [3087] = 3077, - [3088] = 3074, - [3089] = 3068, - [3090] = 3069, - [3091] = 3074, - [3092] = 3069, - [3093] = 3068, - [3094] = 3074, - [3095] = 3077, - [3096] = 3068, - [3097] = 3077, - [3098] = 3081, - [3099] = 327, + [3082] = 3082, + [3083] = 3083, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, + [3087] = 3087, + [3088] = 3088, + [3089] = 3089, + [3090] = 3090, + [3091] = 3090, + [3092] = 3092, + [3093] = 3090, + [3094] = 3090, + [3095] = 3092, + [3096] = 221, + [3097] = 3092, + [3098] = 3098, + [3099] = 3090, [3100] = 3100, - [3101] = 3074, - [3102] = 296, - [3103] = 3068, - [3104] = 3074, - [3105] = 3077, - [3106] = 3069, - [3107] = 3074, - [3108] = 3074, - [3109] = 3074, - [3110] = 3069, - [3111] = 3069, - [3112] = 3112, - [3113] = 3074, - [3114] = 3068, - [3115] = 3069, - [3116] = 3074, - [3117] = 3077, - [3118] = 3069, - [3119] = 3077, - [3120] = 3069, - [3121] = 3068, - [3122] = 3069, - [3123] = 3074, - [3124] = 3068, - [3125] = 3068, - [3126] = 3077, - [3127] = 3077, - [3128] = 3077, - [3129] = 3081, - [3130] = 3074, - [3131] = 3077, - [3132] = 3069, - [3133] = 297, + [3101] = 223, + [3102] = 3090, + [3103] = 3103, + [3104] = 3104, + [3105] = 3090, + [3106] = 3090, + [3107] = 3107, + [3108] = 3092, + [3109] = 3109, + [3110] = 3090, + [3111] = 3092, + [3112] = 3092, + [3113] = 3092, + [3114] = 3092, + [3115] = 3092, + [3116] = 3090, + [3117] = 3090, + [3118] = 3092, + [3119] = 3090, + [3120] = 3092, + [3121] = 3121, + [3122] = 3090, + [3123] = 3090, + [3124] = 3092, + [3125] = 3125, + [3126] = 3092, + [3127] = 3092, + [3128] = 3090, + [3129] = 3129, + [3130] = 3130, + [3131] = 3131, + [3132] = 3090, + [3133] = 3092, [3134] = 3134, - [3135] = 3069, + [3135] = 3135, [3136] = 3136, [3137] = 3137, - [3138] = 3074, - [3139] = 3068, - [3140] = 3068, - [3141] = 3081, - [3142] = 3069, - [3143] = 3077, - [3144] = 3144, - [3145] = 3069, - [3146] = 3074, - [3147] = 3077, - [3148] = 296, - [3149] = 3074, - [3150] = 3150, - [3151] = 3077, - [3152] = 3152, - [3153] = 3153, - [3154] = 3068, - [3155] = 3074, - [3156] = 3074, - [3157] = 3069, - [3158] = 3068, - [3159] = 3159, - [3160] = 3081, - [3161] = 3077, - [3162] = 3069, - [3163] = 3068, - [3164] = 3074, - [3165] = 3077, - [3166] = 3077, - [3167] = 3074, - [3168] = 2199, - [3169] = 3068, - [3170] = 3077, - [3171] = 2175, - [3172] = 3074, - [3173] = 3069, - [3174] = 3069, - [3175] = 3068, - [3176] = 3068, - [3177] = 3074, - [3178] = 3068, - [3179] = 3069, + [3138] = 3138, + [3139] = 3090, + [3140] = 3140, + [3141] = 3141, + [3142] = 3092, + [3143] = 3092, + [3144] = 3090, + [3145] = 3145, + [3146] = 3092, + [3147] = 3092, + [3148] = 3092, + [3149] = 3092, + [3150] = 3092, + [3151] = 3090, + [3152] = 221, + [3153] = 3092, + [3154] = 3154, + [3155] = 3155, + [3156] = 3090, + [3157] = 3092, + [3158] = 3092, + [3159] = 223, + [3160] = 3090, + [3161] = 3161, + [3162] = 3162, + [3163] = 3163, + [3164] = 3164, + [3165] = 3092, + [3166] = 3166, + [3167] = 3090, + [3168] = 3090, + [3169] = 3169, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 3173, + [3174] = 3090, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3090, + [3179] = 3179, [3180] = 3180, - [3181] = 3077, - [3182] = 3077, - [3183] = 3081, - [3184] = 3077, - [3185] = 3069, - [3186] = 3068, - [3187] = 3187, - [3188] = 3077, + [3181] = 3090, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3090, + [3188] = 3188, [3189] = 3189, - [3190] = 3190, - [3191] = 3069, - [3192] = 3068, - [3193] = 3074, - [3194] = 3074, - [3195] = 2166, + [3190] = 3092, + [3191] = 3191, + [3192] = 3090, + [3193] = 3092, + [3194] = 3194, + [3195] = 3195, [3196] = 3196, - [3197] = 2163, + [3197] = 3092, [3198] = 3198, - [3199] = 3074, - [3200] = 3068, - [3201] = 3068, + [3199] = 3199, + [3200] = 3200, + [3201] = 3090, [3202] = 3202, - [3203] = 3077, - [3204] = 3204, - [3205] = 3068, - [3206] = 3069, - [3207] = 3069, - [3208] = 3208, - [3209] = 3081, + [3203] = 3203, + [3204] = 3090, + [3205] = 3205, + [3206] = 3206, + [3207] = 3090, + [3208] = 3090, + [3209] = 3209, [3210] = 3210, - [3211] = 3074, + [3211] = 3211, [3212] = 3212, - [3213] = 3074, - [3214] = 3074, - [3215] = 3069, - [3216] = 3069, - [3217] = 3077, - [3218] = 3069, - [3219] = 3069, - [3220] = 3074, - [3221] = 3077, - [3222] = 3077, - [3223] = 3069, + [3213] = 3213, + [3214] = 3092, + [3215] = 3092, + [3216] = 3090, + [3217] = 3217, + [3218] = 3092, + [3219] = 3219, + [3220] = 3220, + [3221] = 3090, + [3222] = 3092, + [3223] = 3092, [3224] = 3224, - [3225] = 424, + [3225] = 223, [3226] = 3226, - [3227] = 3074, - [3228] = 3081, + [3227] = 221, + [3228] = 3228, [3229] = 3229, - [3230] = 3068, - [3231] = 3068, - [3232] = 3081, - [3233] = 3233, - [3234] = 3144, - [3235] = 3235, - [3236] = 3077, - [3237] = 3237, - [3238] = 3077, - [3239] = 305, - [3240] = 338, - [3241] = 3241, - [3242] = 2335, - [3243] = 3241, - [3244] = 2333, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 3246, - [3249] = 3245, - [3250] = 3241, - [3251] = 3245, - [3252] = 3241, - [3253] = 3245, - [3254] = 3241, - [3255] = 3245, - [3256] = 3241, - [3257] = 3241, - [3258] = 3258, - [3259] = 3245, - [3260] = 3246, - [3261] = 3245, - [3262] = 2314, - [3263] = 2313, - [3264] = 3241, - [3265] = 3245, - [3266] = 3266, - [3267] = 3241, - [3268] = 3245, - [3269] = 3245, - [3270] = 3241, - [3271] = 3245, - [3272] = 3246, - [3273] = 3241, - [3274] = 3245, - [3275] = 3241, - [3276] = 3276, - [3277] = 3245, - [3278] = 304, - [3279] = 3241, - [3280] = 3245, - [3281] = 3281, - [3282] = 3241, - [3283] = 3245, - [3284] = 3241, - [3285] = 3241, - [3286] = 321, - [3287] = 3245, - [3288] = 3241, - [3289] = 3245, - [3290] = 3241, - [3291] = 3281, - [3292] = 3245, - [3293] = 3247, - [3294] = 3241, - [3295] = 3245, - [3296] = 3276, - [3297] = 3241, - [3298] = 3245, - [3299] = 336, - [3300] = 3246, - [3301] = 3245, - [3302] = 307, - [3303] = 3303, - [3304] = 3246, - [3305] = 3241, - [3306] = 3245, - [3307] = 310, - [3308] = 3241, - [3309] = 3245, - [3310] = 312, - [3311] = 3246, - [3312] = 313, - [3313] = 3245, - [3314] = 3241, - [3315] = 3245, - [3316] = 3241, - [3317] = 329, - [3318] = 3266, - [3319] = 320, - [3320] = 3241, - [3321] = 3245, - [3322] = 3241, - [3323] = 3245, - [3324] = 3241, - [3325] = 3245, - [3326] = 3241, - [3327] = 3245, - [3328] = 3241, - [3329] = 3329, - [3330] = 424, - [3331] = 3329, - [3332] = 3266, - [3333] = 350, - [3334] = 349, - [3335] = 347, - [3336] = 346, - [3337] = 323, - [3338] = 344, - [3339] = 343, - [3340] = 3246, - [3341] = 342, - [3342] = 3245, - [3343] = 3329, - [3344] = 340, - [3345] = 3281, - [3346] = 3241, - [3347] = 339, - [3348] = 3246, - [3349] = 3241, - [3350] = 3245, - [3351] = 335, - [3352] = 332, - [3353] = 331, - [3354] = 330, - [3355] = 3276, - [3356] = 326, - [3357] = 3357, - [3358] = 3357, - [3359] = 3359, - [3360] = 3360, - [3361] = 3360, - [3362] = 3362, - [3363] = 3363, - [3364] = 3363, - [3365] = 3357, - [3366] = 3359, - [3367] = 3360, - [3368] = 3363, - [3369] = 3357, - [3370] = 3359, - [3371] = 3371, - [3372] = 3372, - [3373] = 3371, - [3374] = 3374, - [3375] = 3360, - [3376] = 3371, - [3377] = 3359, - [3378] = 3374, - [3379] = 3372, - [3380] = 3371, - [3381] = 3359, - [3382] = 3382, - [3383] = 3362, - [3384] = 3384, - [3385] = 3357, - [3386] = 3363, - [3387] = 3360, - [3388] = 3360, - [3389] = 3360, - [3390] = 3359, - [3391] = 3371, - [3392] = 3359, - [3393] = 3357, - [3394] = 3363, - [3395] = 3371, + [3230] = 3228, + [3231] = 3229, + [3232] = 3232, + [3233] = 3232, + [3234] = 3232, + [3235] = 3229, + [3236] = 3232, + [3237] = 3228, + [3238] = 3228, + [3239] = 3229, + [3240] = 3232, + [3241] = 3232, + [3242] = 3229, + [3243] = 3232, + [3244] = 3228, + [3245] = 3229, + [3246] = 3229, + [3247] = 3228, + [3248] = 3228, + [3249] = 3228, + [3250] = 3228, + [3251] = 3228, + [3252] = 3229, + [3253] = 3229, + [3254] = 3232, + [3255] = 3232, + [3256] = 3229, + [3257] = 3232, + [3258] = 3232, + [3259] = 3232, + [3260] = 3229, + [3261] = 3229, + [3262] = 3232, + [3263] = 3229, + [3264] = 3228, + [3265] = 3229, + [3266] = 3228, + [3267] = 3232, + [3268] = 3228, + [3269] = 3232, + [3270] = 3229, + [3271] = 3228, + [3272] = 3228, + [3273] = 3229, + [3274] = 3228, + [3275] = 3232, + [3276] = 3228, + [3277] = 3228, + [3278] = 3232, + [3279] = 3232, + [3280] = 3229, + [3281] = 3232, + [3282] = 3229, + [3283] = 3228, + [3284] = 3229, + [3285] = 3232, + [3286] = 3229, + [3287] = 3229, + [3288] = 3229, + [3289] = 3228, + [3290] = 3228, + [3291] = 3229, + [3292] = 3232, + [3293] = 3232, + [3294] = 3232, + [3295] = 3228, + [3296] = 3228, + [3297] = 3229, + [3298] = 3232, + [3299] = 3232, + [3300] = 3228, + [3301] = 3228, + [3302] = 3232, + [3303] = 3229, + [3304] = 3229, + [3305] = 3229, + [3306] = 3232, + [3307] = 3232, + [3308] = 3228, + [3309] = 3232, + [3310] = 3229, + [3311] = 3232, + [3312] = 3229, + [3313] = 3232, + [3314] = 3229, + [3315] = 3228, + [3316] = 3228, + [3317] = 3228, + [3318] = 3229, + [3319] = 3228, + [3320] = 3228, + [3321] = 3232, + [3322] = 3229, + [3323] = 3228, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 3327, + [3328] = 3325, + [3329] = 3325, + [3330] = 3324, + [3331] = 3325, + [3332] = 3325, + [3333] = 3333, + [3334] = 3327, + [3335] = 3324, + [3336] = 3324, + [3337] = 3325, + [3338] = 3324, + [3339] = 3325, + [3340] = 3324, + [3341] = 3324, + [3342] = 3324, + [3343] = 3325, + [3344] = 3325, + [3345] = 3325, + [3346] = 3325, + [3347] = 3325, + [3348] = 3324, + [3349] = 3325, + [3350] = 3325, + [3351] = 3325, + [3352] = 3324, + [3353] = 3324, + [3354] = 3324, + [3355] = 3324, + [3356] = 3325, + [3357] = 3324, + [3358] = 3325, + [3359] = 3324, + [3360] = 3325, + [3361] = 3325, + [3362] = 3324, + [3363] = 3324, + [3364] = 3325, + [3365] = 3325, + [3366] = 3325, + [3367] = 3325, + [3368] = 3324, + [3369] = 3325, + [3370] = 3324, + [3371] = 3324, + [3372] = 3324, + [3373] = 3324, + [3374] = 3327, + [3375] = 3324, + [3376] = 3324, + [3377] = 3325, + [3378] = 3325, + [3379] = 3325, + [3380] = 3325, + [3381] = 3324, + [3382] = 3325, + [3383] = 3324, + [3384] = 3325, + [3385] = 3324, + [3386] = 3327, + [3387] = 3325, + [3388] = 3324, + [3389] = 3324, + [3390] = 3324, + [3391] = 3325, + [3392] = 3324, + [3393] = 3324, + [3394] = 3394, + [3395] = 3395, [3396] = 3396, - [3397] = 3360, - [3398] = 3357, - [3399] = 3363, - [3400] = 3363, - [3401] = 3359, - [3402] = 3357, + [3397] = 3395, + [3398] = 3398, + [3399] = 3395, + [3400] = 3396, + [3401] = 3396, + [3402] = 3402, [3403] = 3403, - [3404] = 3371, - [3405] = 3360, - [3406] = 3371, - [3407] = 3357, - [3408] = 3363, - [3409] = 3409, - [3410] = 3359, - [3411] = 3359, - [3412] = 3363, - [3413] = 3413, - [3414] = 3414, - [3415] = 3357, - [3416] = 3360, - [3417] = 3363, - [3418] = 3357, - [3419] = 3371, - [3420] = 3359, - [3421] = 3371, - [3422] = 3357, - [3423] = 3371, - [3424] = 3363, - [3425] = 3371, - [3426] = 3360, - [3427] = 3360, - [3428] = 3357, - [3429] = 3359, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 3363, - [3434] = 3374, - [3435] = 3371, - [3436] = 3360, - [3437] = 3359, - [3438] = 3357, - [3439] = 3439, - [3440] = 3363, - [3441] = 3441, - [3442] = 3430, - [3443] = 3371, - [3444] = 3360, - [3445] = 3363, - [3446] = 3363, - [3447] = 3359, - [3448] = 3360, - [3449] = 3363, - [3450] = 3357, - [3451] = 3359, - [3452] = 3363, - [3453] = 3371, - [3454] = 3363, - [3455] = 3359, - [3456] = 3357, - [3457] = 3371, - [3458] = 3360, - [3459] = 3459, - [3460] = 3360, - [3461] = 3360, - [3462] = 3462, - [3463] = 3463, - [3464] = 3359, - [3465] = 3360, - [3466] = 3359, - [3467] = 3359, - [3468] = 3468, - [3469] = 3363, - [3470] = 3357, - [3471] = 3471, - [3472] = 3371, - [3473] = 3468, - [3474] = 3357, - [3475] = 3359, - [3476] = 3363, - [3477] = 3363, - [3478] = 3371, - [3479] = 3372, - [3480] = 3371, - [3481] = 3357, - [3482] = 3357, - [3483] = 3363, - [3484] = 3371, - [3485] = 3359, - [3486] = 3430, - [3487] = 3360, - [3488] = 3357, - [3489] = 3403, - [3490] = 3360, - [3491] = 3409, - [3492] = 3471, - [3493] = 3413, - [3494] = 3371, - [3495] = 3357, - [3496] = 3463, - [3497] = 3462, - [3498] = 3363, - [3499] = 3363, - [3500] = 3357, - [3501] = 3459, - [3502] = 3360, - [3503] = 3371, - [3504] = 3363, - [3505] = 3414, - [3506] = 3357, - [3507] = 3359, - [3508] = 3359, - [3509] = 3509, - [3510] = 3510, - [3511] = 3371, - [3512] = 3359, - [3513] = 3439, - [3514] = 3360, - [3515] = 3360, - [3516] = 3432, - [3517] = 3431, - [3518] = 3360, - [3519] = 3360, - [3520] = 3371, - [3521] = 3357, - [3522] = 3363, - [3523] = 3362, - [3524] = 3363, - [3525] = 3431, - [3526] = 3359, - [3527] = 3357, + [3404] = 3404, + [3405] = 3404, + [3406] = 230, + [3407] = 3407, + [3408] = 3407, + [3409] = 3404, + [3410] = 3403, + [3411] = 3403, + [3412] = 3407, + [3413] = 253, + [3414] = 240, + [3415] = 237, + [3416] = 3416, + [3417] = 243, + [3418] = 3418, + [3419] = 230, + [3420] = 266, + [3421] = 265, + [3422] = 263, + [3423] = 261, + [3424] = 260, + [3425] = 259, + [3426] = 3426, + [3427] = 258, + [3428] = 3428, + [3429] = 3429, + [3430] = 3416, + [3431] = 257, + [3432] = 3426, + [3433] = 3433, + [3434] = 255, + [3435] = 3429, + [3436] = 245, + [3437] = 254, + [3438] = 227, + [3439] = 233, + [3440] = 232, + [3441] = 3429, + [3442] = 3426, + [3443] = 3443, + [3444] = 3444, + [3445] = 3445, + [3446] = 242, + [3447] = 3416, + [3448] = 3448, + [3449] = 267, + [3450] = 229, + [3451] = 241, + [3452] = 250, + [3453] = 251, + [3454] = 252, + [3455] = 259, + [3456] = 245, + [3457] = 234, + [3458] = 260, + [3459] = 237, + [3460] = 3460, + [3461] = 244, + [3462] = 253, + [3463] = 250, + [3464] = 3444, + [3465] = 271, + [3466] = 3418, + [3467] = 254, + [3468] = 258, + [3469] = 233, + [3470] = 235, + [3471] = 240, + [3472] = 242, + [3473] = 3473, + [3474] = 259, + [3475] = 261, + [3476] = 241, + [3477] = 258, + [3478] = 457, + [3479] = 255, + [3480] = 246, + [3481] = 260, + [3482] = 252, + [3483] = 3428, + [3484] = 263, + [3485] = 266, + [3486] = 265, + [3487] = 837, + [3488] = 452, + [3489] = 254, + [3490] = 238, + [3491] = 236, + [3492] = 252, + [3493] = 3448, + [3494] = 3460, + [3495] = 251, + [3496] = 241, + [3497] = 3473, + [3498] = 227, + [3499] = 3473, + [3500] = 229, + [3501] = 255, + [3502] = 265, + [3503] = 237, + [3504] = 233, + [3505] = 257, + [3506] = 250, + [3507] = 261, + [3508] = 240, + [3509] = 239, + [3510] = 251, + [3511] = 267, + [3512] = 266, + [3513] = 3443, + [3514] = 245, + [3515] = 242, + [3516] = 3460, + [3517] = 3517, + [3518] = 267, + [3519] = 263, + [3520] = 3520, + [3521] = 257, + [3522] = 3444, + [3523] = 3444, + [3524] = 3524, + [3525] = 3525, + [3526] = 3428, + [3527] = 3527, [3528] = 3528, - [3529] = 3432, - [3530] = 3414, - [3531] = 3413, - [3532] = 3528, - [3533] = 3439, - [3534] = 3371, - [3535] = 3409, - [3536] = 3359, - [3537] = 3359, - [3538] = 3360, - [3539] = 3360, - [3540] = 3382, - [3541] = 3384, - [3542] = 3403, - [3543] = 3359, - [3544] = 3360, - [3545] = 3396, - [3546] = 3459, - [3547] = 3357, - [3548] = 3471, - [3549] = 3363, - [3550] = 3371, - [3551] = 3371, - [3552] = 3396, - [3553] = 3528, - [3554] = 3371, - [3555] = 3357, - [3556] = 3357, - [3557] = 3363, - [3558] = 3357, - [3559] = 3359, - [3560] = 3382, - [3561] = 3384, - [3562] = 3357, - [3563] = 3359, - [3564] = 3360, - [3565] = 3363, - [3566] = 3363, - [3567] = 3468, - [3568] = 3359, - [3569] = 3371, - [3570] = 3360, + [3529] = 3428, + [3530] = 3524, + [3531] = 3531, + [3532] = 3532, + [3533] = 3533, + [3534] = 3534, + [3535] = 3535, + [3536] = 3536, + [3537] = 3537, + [3538] = 3418, + [3539] = 3539, + [3540] = 3540, + [3541] = 3541, + [3542] = 3542, + [3543] = 3535, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, + [3547] = 3546, + [3548] = 3541, + [3549] = 230, + [3550] = 3525, + [3551] = 3527, + [3552] = 3528, + [3553] = 3540, + [3554] = 3537, + [3555] = 3448, + [3556] = 3556, + [3557] = 3534, + [3558] = 3541, + [3559] = 3535, + [3560] = 3444, + [3561] = 3428, + [3562] = 3537, + [3563] = 3563, + [3564] = 3528, + [3565] = 3527, + [3566] = 3540, + [3567] = 3525, + [3568] = 3524, + [3569] = 3546, + [3570] = 3534, + [3571] = 3571, + [3572] = 3443, + [3573] = 3573, + [3574] = 3574, + [3575] = 3575, + [3576] = 3576, + [3577] = 3577, + [3578] = 3578, + [3579] = 3579, + [3580] = 3580, + [3581] = 1255, + [3582] = 3582, + [3583] = 3583, + [3584] = 3584, + [3585] = 3585, + [3586] = 3582, + [3587] = 3587, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3593, + [3594] = 3594, + [3595] = 3584, + [3596] = 3596, + [3597] = 3592, + [3598] = 3583, + [3599] = 1314, + [3600] = 1322, + [3601] = 3580, + [3602] = 3602, + [3603] = 3603, + [3604] = 3593, + [3605] = 3588, + [3606] = 227, + [3607] = 3582, + [3608] = 3587, + [3609] = 229, + [3610] = 3610, + [3611] = 3611, + [3612] = 3612, + [3613] = 230, + [3614] = 3610, + [3615] = 3615, + [3616] = 3587, + [3617] = 3592, + [3618] = 3590, + [3619] = 3593, + [3620] = 3620, + [3621] = 243, + [3622] = 230, + [3623] = 3584, + [3624] = 3583, + [3625] = 3590, + [3626] = 3580, + [3627] = 3615, + [3628] = 3588, + [3629] = 3629, + [3630] = 3630, + [3631] = 3630, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, + [3636] = 3630, + [3637] = 3637, + [3638] = 3638, + [3639] = 3630, + [3640] = 3640, + [3641] = 3637, + [3642] = 3642, + [3643] = 3635, + [3644] = 3634, + [3645] = 3645, + [3646] = 3646, + [3647] = 3640, + [3648] = 3648, + [3649] = 3630, + [3650] = 3633, + [3651] = 3651, + [3652] = 3652, + [3653] = 3633, + [3654] = 3630, + [3655] = 3638, + [3656] = 3637, + [3657] = 3633, + [3658] = 3635, + [3659] = 3634, + [3660] = 2253, + [3661] = 3640, + [3662] = 3630, + [3663] = 3633, + [3664] = 3630, + [3665] = 3640, + [3666] = 3640, + [3667] = 3630, + [3668] = 3633, + [3669] = 3634, + [3670] = 3634, + [3671] = 3640, + [3672] = 3672, + [3673] = 243, + [3674] = 3635, + [3675] = 3637, + [3676] = 3635, + [3677] = 3634, + [3678] = 3635, + [3679] = 3679, + [3680] = 3637, + [3681] = 3635, + [3682] = 3634, + [3683] = 3633, + [3684] = 3640, + [3685] = 3634, + [3686] = 3630, + [3687] = 3633, + [3688] = 3635, + [3689] = 3634, + [3690] = 2258, + [3691] = 3635, + [3692] = 3637, + [3693] = 229, + [3694] = 3630, + [3695] = 3638, + [3696] = 3637, + [3697] = 3640, + [3698] = 3637, + [3699] = 3637, + [3700] = 3635, + [3701] = 3634, + [3702] = 3702, + [3703] = 3630, + [3704] = 3640, + [3705] = 3638, + [3706] = 3630, + [3707] = 3633, + [3708] = 3633, + [3709] = 3630, + [3710] = 3637, + [3711] = 3640, + [3712] = 3712, + [3713] = 3713, + [3714] = 3714, + [3715] = 3633, + [3716] = 3716, + [3717] = 3717, + [3718] = 3635, + [3719] = 3637, + [3720] = 3640, + [3721] = 3635, + [3722] = 3634, + [3723] = 3635, + [3724] = 3634, + [3725] = 3637, + [3726] = 3633, + [3727] = 3640, + [3728] = 3634, + [3729] = 3630, + [3730] = 3633, + [3731] = 3630, + [3732] = 3732, + [3733] = 3635, + [3734] = 227, + [3735] = 3640, + [3736] = 3637, + [3737] = 3634, + [3738] = 3635, + [3739] = 3634, + [3740] = 3640, + [3741] = 3635, + [3742] = 3742, + [3743] = 3637, + [3744] = 3630, + [3745] = 3633, + [3746] = 3634, + [3747] = 3635, + [3748] = 3637, + [3749] = 3749, + [3750] = 3637, + [3751] = 232, + [3752] = 2260, + [3753] = 3633, + [3754] = 3630, + [3755] = 3755, + [3756] = 3640, + [3757] = 3757, + [3758] = 3640, + [3759] = 3638, + [3760] = 3637, + [3761] = 3634, + [3762] = 3633, + [3763] = 3635, + [3764] = 2254, + [3765] = 3634, + [3766] = 3640, + [3767] = 3634, + [3768] = 3635, + [3769] = 3637, + [3770] = 3637, + [3771] = 3634, + [3772] = 3630, + [3773] = 3633, + [3774] = 3630, + [3775] = 3775, + [3776] = 3640, + [3777] = 3640, + [3778] = 229, + [3779] = 3634, + [3780] = 227, + [3781] = 232, + [3782] = 3634, + [3783] = 3637, + [3784] = 3635, + [3785] = 3635, + [3786] = 3640, + [3787] = 3635, + [3788] = 3637, + [3789] = 3789, + [3790] = 3640, + [3791] = 3637, + [3792] = 3630, + [3793] = 3633, + [3794] = 3794, + [3795] = 3634, + [3796] = 3638, + [3797] = 3797, + [3798] = 3633, + [3799] = 3630, + [3800] = 3637, + [3801] = 3640, + [3802] = 3802, + [3803] = 3637, + [3804] = 3635, + [3805] = 3635, + [3806] = 3634, + [3807] = 3807, + [3808] = 3640, + [3809] = 3809, + [3810] = 3810, + [3811] = 3630, + [3812] = 3634, + [3813] = 3635, + [3814] = 3633, + [3815] = 3637, + [3816] = 3633, + [3817] = 3630, + [3818] = 3638, + [3819] = 3640, + [3820] = 3634, + [3821] = 3821, + [3822] = 3634, + [3823] = 3637, + [3824] = 3635, + [3825] = 3637, + [3826] = 3635, + [3827] = 3634, + [3828] = 3828, + [3829] = 3829, + [3830] = 3640, + [3831] = 3635, + [3832] = 3634, + [3833] = 3637, + [3834] = 3630, + [3835] = 3633, + [3836] = 3836, + [3837] = 3837, + [3838] = 3638, + [3839] = 3630, + [3840] = 3633, + [3841] = 3633, + [3842] = 3633, + [3843] = 3633, + [3844] = 3630, + [3845] = 3640, + [3846] = 3640, + [3847] = 3630, + [3848] = 3637, + [3849] = 3633, + [3850] = 3635, + [3851] = 3634, + [3852] = 3640, + [3853] = 3640, + [3854] = 3640, + [3855] = 3634, + [3856] = 3630, + [3857] = 3634, + [3858] = 3635, + [3859] = 3635, + [3860] = 3637, + [3861] = 3633, + [3862] = 3862, + [3863] = 3638, + [3864] = 3633, + [3865] = 3638, + [3866] = 3630, + [3867] = 3637, + [3868] = 3630, + [3869] = 3637, + [3870] = 3633, + [3871] = 3640, + [3872] = 3633, + [3873] = 3635, + [3874] = 3634, + [3875] = 3875, + [3876] = 3640, + [3877] = 271, + [3878] = 3633, + [3879] = 3630, + [3880] = 3633, + [3881] = 3633, + [3882] = 3630, + [3883] = 3630, + [3884] = 3640, + [3885] = 3637, + [3886] = 3742, + [3887] = 3635, + [3888] = 3749, + [3889] = 3637, + [3890] = 3635, + [3891] = 3634, + [3892] = 3640, + [3893] = 238, + [3894] = 3894, + [3895] = 3895, + [3896] = 239, + [3897] = 257, + [3898] = 258, + [3899] = 265, + [3900] = 266, + [3901] = 259, + [3902] = 263, + [3903] = 3895, + [3904] = 3904, + [3905] = 3905, + [3906] = 3894, + [3907] = 261, + [3908] = 3894, + [3909] = 260, + [3910] = 3910, + [3911] = 3895, + [3912] = 3894, + [3913] = 3895, + [3914] = 260, + [3915] = 3894, + [3916] = 3894, + [3917] = 3894, + [3918] = 3895, + [3919] = 261, + [3920] = 3895, + [3921] = 263, + [3922] = 3895, + [3923] = 267, + [3924] = 259, + [3925] = 3894, + [3926] = 3904, + [3927] = 254, + [3928] = 265, + [3929] = 3929, + [3930] = 3930, + [3931] = 3894, + [3932] = 266, + [3933] = 3895, + [3934] = 3895, + [3935] = 3894, + [3936] = 267, + [3937] = 237, + [3938] = 3895, + [3939] = 3894, + [3940] = 3904, + [3941] = 3895, + [3942] = 237, + [3943] = 3943, + [3944] = 3895, + [3945] = 234, + [3946] = 3894, + [3947] = 3943, + [3948] = 3895, + [3949] = 3894, + [3950] = 3895, + [3951] = 3904, + [3952] = 3894, + [3953] = 3894, + [3954] = 236, + [3955] = 3895, + [3956] = 3895, + [3957] = 246, + [3958] = 258, + [3959] = 3894, + [3960] = 244, + [3961] = 3895, + [3962] = 3904, + [3963] = 2263, + [3964] = 235, + [3965] = 2278, + [3966] = 233, + [3967] = 3894, + [3968] = 257, + [3969] = 3969, + [3970] = 255, + [3971] = 238, + [3972] = 235, + [3973] = 254, + [3974] = 246, + [3975] = 3894, + [3976] = 3894, + [3977] = 2295, + [3978] = 236, + [3979] = 234, + [3980] = 3895, + [3981] = 3895, + [3982] = 3894, + [3983] = 3905, + [3984] = 239, + [3985] = 3895, + [3986] = 3894, + [3987] = 3895, + [3988] = 3894, + [3989] = 233, + [3990] = 253, + [3991] = 3895, + [3992] = 3894, + [3993] = 3904, + [3994] = 3969, + [3995] = 3943, + [3996] = 3895, + [3997] = 252, + [3998] = 3894, + [3999] = 255, + [4000] = 240, + [4001] = 241, + [4002] = 3895, + [4003] = 3894, + [4004] = 3895, + [4005] = 3894, + [4006] = 3895, + [4007] = 242, + [4008] = 271, + [4009] = 3904, + [4010] = 3894, + [4011] = 3910, + [4012] = 253, + [4013] = 3904, + [4014] = 3895, + [4015] = 3894, + [4016] = 245, + [4017] = 251, + [4018] = 3895, + [4019] = 3904, + [4020] = 3895, + [4021] = 250, + [4022] = 4022, + [4023] = 3894, + [4024] = 3894, + [4025] = 244, + [4026] = 3895, + [4027] = 3894, + [4028] = 250, + [4029] = 3895, + [4030] = 251, + [4031] = 3894, + [4032] = 252, + [4033] = 3895, + [4034] = 3969, + [4035] = 245, + [4036] = 3894, + [4037] = 3910, + [4038] = 240, + [4039] = 3895, + [4040] = 3894, + [4041] = 2294, + [4042] = 3904, + [4043] = 3930, + [4044] = 3930, + [4045] = 3895, + [4046] = 241, + [4047] = 242, + [4048] = 4048, + [4049] = 4049, + [4050] = 4048, + [4051] = 4051, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 4055, + [4056] = 4056, + [4057] = 4053, + [4058] = 4056, + [4059] = 4059, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 4055, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 4054, + [4068] = 4052, + [4069] = 4048, + [4070] = 4059, + [4071] = 4055, + [4072] = 4054, + [4073] = 4052, + [4074] = 4048, + [4075] = 4059, + [4076] = 4053, + [4077] = 4056, + [4078] = 4055, + [4079] = 4060, + [4080] = 4061, + [4081] = 4055, + [4082] = 4054, + [4083] = 4052, + [4084] = 4048, + [4085] = 4064, + [4086] = 4059, + [4087] = 4051, + [4088] = 4055, + [4089] = 4055, + [4090] = 4054, + [4091] = 4091, + [4092] = 4092, + [4093] = 4052, + [4094] = 4094, + [4095] = 4048, + [4096] = 4059, + [4097] = 4059, + [4098] = 4059, + [4099] = 4052, + [4100] = 4054, + [4101] = 4054, + [4102] = 4052, + [4103] = 4055, + [4104] = 4055, + [4105] = 4054, + [4106] = 4052, + [4107] = 4048, + [4108] = 4062, + [4109] = 4059, + [4110] = 4059, + [4111] = 4111, + [4112] = 4052, + [4113] = 4059, + [4114] = 4055, + [4115] = 4054, + [4116] = 4054, + [4117] = 4052, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4048, + [4122] = 4055, + [4123] = 4049, + [4124] = 4059, + [4125] = 4111, + [4126] = 4055, + [4127] = 4059, + [4128] = 4059, + [4129] = 4129, + [4130] = 4052, + [4131] = 4048, + [4132] = 4060, + [4133] = 4048, + [4134] = 4052, + [4135] = 4048, + [4136] = 4052, + [4137] = 4059, + [4138] = 4055, + [4139] = 4054, + [4140] = 4054, + [4141] = 4052, + [4142] = 4048, + [4143] = 4065, + [4144] = 4129, + [4145] = 4066, + [4146] = 4055, + [4147] = 4048, + [4148] = 4052, + [4149] = 4059, + [4150] = 4054, + [4151] = 4055, + [4152] = 4055, + [4153] = 4054, + [4154] = 4154, + [4155] = 4055, + [4156] = 4054, + [4157] = 4052, + [4158] = 4048, + [4159] = 4054, + [4160] = 4059, + [4161] = 4048, + [4162] = 4052, + [4163] = 4054, + [4164] = 4054, + [4165] = 4054, + [4166] = 4054, + [4167] = 4052, + [4168] = 4048, + [4169] = 4055, + [4170] = 4055, + [4171] = 4054, + [4172] = 4049, + [4173] = 4051, + [4174] = 4052, + [4175] = 4059, + [4176] = 4176, + [4177] = 4048, + [4178] = 4178, + [4179] = 4048, + [4180] = 4052, + [4181] = 4059, + [4182] = 4055, + [4183] = 4054, + [4184] = 4154, + [4185] = 4062, + [4186] = 4054, + [4187] = 4052, + [4188] = 4048, + [4189] = 4065, + [4190] = 4066, + [4191] = 4061, + [4192] = 4091, + [4193] = 4059, + [4194] = 4059, + [4195] = 4055, + [4196] = 4055, + [4197] = 4054, + [4198] = 4052, + [4199] = 4048, + [4200] = 4059, + [4201] = 4059, + [4202] = 4055, + [4203] = 4055, + [4204] = 4048, + [4205] = 4052, + [4206] = 4054, + [4207] = 4052, + [4208] = 4048, + [4209] = 4091, + [4210] = 4092, + [4211] = 4054, + [4212] = 4092, + [4213] = 4094, + [4214] = 4059, + [4215] = 4055, + [4216] = 4055, + [4217] = 4054, + [4218] = 4094, + [4219] = 4052, + [4220] = 4220, + [4221] = 4221, + [4222] = 4059, + [4223] = 4048, + [4224] = 4224, + [4225] = 4059, + [4226] = 4059, + [4227] = 4055, + [4228] = 4118, + [4229] = 4052, + [4230] = 4052, + [4231] = 4119, + [4232] = 4120, + [4233] = 4178, + [4234] = 4176, + [4235] = 4048, + [4236] = 4052, + [4237] = 4064, + [4238] = 4111, + [4239] = 4048, + [4240] = 4120, + [4241] = 4059, + [4242] = 4242, + [4243] = 4054, + [4244] = 4055, + [4245] = 4054, + [4246] = 4242, + [4247] = 4055, + [4248] = 4052, + [4249] = 4048, + [4250] = 4059, + [4251] = 4059, + [4252] = 4055, + [4253] = 4048, + [4254] = 4052, + [4255] = 4129, + [4256] = 4048, + [4257] = 4052, + [4258] = 4119, + [4259] = 4054, + [4260] = 4154, + [4261] = 4052, + [4262] = 4054, + [4263] = 4059, + [4264] = 4055, + [4265] = 4055, + [4266] = 4054, + [4267] = 4052, + [4268] = 4242, + [4269] = 4048, + [4270] = 4059, + [4271] = 4118, + [4272] = 4048, + [4273] = 4052, + [4274] = 4059, + [4275] = 4054, + [4276] = 4059, + [4277] = 4055, + [4278] = 4055, + [4279] = 4054, + [4280] = 4048, + [4281] = 4048, + [4282] = 4059, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -5198,7 +6022,7 @@ static inline bool sym_word_character_set_1(int32_t c) { ? (c < ' ' ? (c < '\t' ? c == 0 - : (c <= '\n' || c == '\r')) + : c <= '\r') : (c <= ' ' || (c < '$' ? c == '"' : c <= '$'))) @@ -5212,65 +6036,13 @@ static inline bool sym_word_character_set_1(int32_t c) { } static inline bool sym_word_character_set_2(int32_t c) { - return (c < '$' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '"' - ? c == ' ' - : c <= '"'))) - : (c <= '$' || (c < '>' - ? (c < ';' - ? (c >= '&' && c <= ')') - : c <= '<') - : (c <= '>' || (c < '`' - ? (c >= '[' && c <= ']') - : c <= '}'))))); -} - -static inline bool sym_word_character_set_3(int32_t c) { - return (c < '$' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '"' - ? c == ' ' - : c <= '"'))) - : (c <= '$' || (c < '[' - ? (c < ';' - ? (c >= '&' && c <= ')') - : c <= '>') - : (c <= ']' || (c < '{' - ? c == '`' - : c <= '}'))))); -} - -static inline bool sym_word_character_set_4(int32_t c) { - return (c < '$' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '"' - ? c == ' ' - : c <= '"'))) - : (c <= '$' || (c < '[' - ? (c < ';' - ? (c >= '&' && c <= ')') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} - -static inline bool sym_word_character_set_5(int32_t c) { return (c < '&' - ? (c < '\r' + ? (c < ' ' ? (c < '\t' ? c == 0 - : c <= '\t') - : (c <= '\r' || (c < '"' - ? c == ' ' + : c <= '\r') + : (c <= ' ' || (c < '$' + ? c == '"' : c <= '$'))) : (c <= ')' || (c < '[' ? (c < '>' @@ -5279,30 +6051,14 @@ static inline bool sym_word_character_set_5(int32_t c) { : (c <= ']' || (c >= '`' && c <= '}'))))); } -static inline bool sym_word_character_set_6(int32_t c) { - return (c < ';' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\t') - : (c <= '\r' || (c < '&' - ? (c >= ' ' && c <= '$') - : c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_7(int32_t c) { +static inline bool sym_word_character_set_3(int32_t c) { return (c < '&' - ? (c < '\r' + ? (c < ' ' ? (c < '\t' ? c == 0 - : c <= '\t') - : (c <= '\r' || (c < '"' - ? c == ' ' + : c <= '\r') + : (c <= ' ' || (c < '$' + ? c == '"' : c <= '$'))) : (c <= ')' || (c < '`' ? (c < '[' @@ -5311,32 +6067,28 @@ static inline bool sym_word_character_set_7(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_8(int32_t c) { - return (c < '&' - ? (c < '\r' +static inline bool sym_word_character_set_4(int32_t c) { + return (c < '$' + ? (c < ' ' ? (c < '\t' ? c == 0 - : c <= '\t') - : (c <= '\r' || (c < '"' - ? c == ' ' - : c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') + : c <= '\r') + : (c <= ' ' || c == '"')) + : (c <= '$' || (c < '[' + ? (c < ';' + ? (c >= '&' && c <= ')') : c <= '>') - : (c <= ']' || (c < '{' - ? c == '`' - : c <= '}'))))); + : (c <= ']' || (c >= '`' && c <= '}'))))); } -static inline bool sym_word_character_set_9(int32_t c) { +static inline bool sym_word_character_set_5(int32_t c) { return (c < ';' - ? (c < '\r' + ? (c < ' ' ? (c < '\t' ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '&' - ? (c >= ' ' && c <= '$') + : c <= '\r') + : (c <= ' ' || (c < '&' + ? (c >= '"' && c <= '$') : c <= ')'))) : (c <= '<' || (c < '`' ? (c < '[' @@ -5345,3854 +6097,4064 @@ static inline bool sym_word_character_set_9(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_10(int32_t c) { - return (c < '"' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\n') - : (c <= '\r' || c == ' ')) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_11(int32_t c) { +static inline bool sym_word_character_set_6(int32_t c) { return (c < '&' - ? (c < '\r' + ? (c < ' ' ? (c < '\t' ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '"' - ? c == ' ' - : c <= '$'))) + : c <= '\r') + : (c <= ' ' || (c >= '"' && c <= '$'))) : (c <= ')' || (c < '[' ? (c < '>' ? (c >= ';' && c <= '<') : c <= '>') - : (c <= ']' || (c < '{' - ? c == '`' - : c <= '}'))))); + : (c <= ']' || (c >= '`' && c <= '}'))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); - eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(204); - if (lookahead == '!') ADVANCE(263); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(302); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '0') ADVANCE(366); - if (lookahead == ':') ADVANCE(315); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(284); - if (lookahead == '=') ADVANCE(276); - if (lookahead == '>') ADVANCE(287); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(131); - if (lookahead == ']') ADVANCE(268); - if (lookahead == '_') ADVANCE(369); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'd') ADVANCE(418); - if (lookahead == 'e') ADVANCE(414); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == 'i') ADVANCE(416); - if (lookahead == 't') ADVANCE(411); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (eof) ADVANCE(235); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == ')') ADVANCE(283); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(417); + if (lookahead == '0') ADVANCE(439); + if (lookahead == ':') ADVANCE(382); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(150); + if (lookahead == ']') ADVANCE(299); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '_') ADVANCE(443); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (lookahead == 'i') ADVANCE(449); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(279); + if (lookahead == '}') ADVANCE(289); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 1: - if (lookahead == '\n') SKIP(76) + if (lookahead == '\n') SKIP(100) END_STATE(); case 2: - if (lookahead == '\n') SKIP(79) + if (lookahead == '\n') SKIP(108) END_STATE(); case 3: - if (lookahead == '\n') SKIP(81) + if (lookahead == '\n') SKIP(109) END_STATE(); case 4: - if (lookahead == '\n') SKIP(80) + if (lookahead == '\n') SKIP(5) END_STATE(); case 5: - if (lookahead == '\n') SKIP(82) + if (lookahead == '\n') ADVANCE(236); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(283); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(153); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 6: - if (lookahead == '\n') SKIP(83) + if (lookahead == '\n') SKIP(111) END_STATE(); case 7: - if (lookahead == '\n') SKIP(8) + if (lookahead == '\n') SKIP(112) END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(205); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(137); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(354); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(421); + if (lookahead == '\n') SKIP(104) END_STATE(); case 9: - if (lookahead == '\n') SKIP(60) + if (lookahead == '\n') SKIP(101) END_STATE(); case 10: - if (lookahead == '\n') SKIP(61) + if (lookahead == '\n') SKIP(103) END_STATE(); case 11: - if (lookahead == '\n') SKIP(62) + if (lookahead == '\n') SKIP(12) END_STATE(); case 12: - if (lookahead == '\n') SKIP(63) + if (lookahead == '\n') ADVANCE(237); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(283); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(340); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(159); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 13: - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') SKIP(83) END_STATE(); case 14: - if (lookahead == '\n') SKIP(65) + if (lookahead == '\n') SKIP(110) END_STATE(); case 15: - if (lookahead == '\n') SKIP(66) + if (lookahead == '\n') SKIP(74) END_STATE(); case 16: - if (lookahead == '\n') SKIP(67) + if (lookahead == '\n') SKIP(80) END_STATE(); case 17: - if (lookahead == '\n') SKIP(68) + if (lookahead == '\n') SKIP(77) END_STATE(); case 18: - if (lookahead == '\n') SKIP(69) + if (lookahead == '\n') SKIP(84) END_STATE(); case 19: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(88) END_STATE(); case 20: - if (lookahead == '\n') SKIP(95) + if (lookahead == '\n') SKIP(21) END_STATE(); case 21: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') ADVANCE(238); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(167) + if (lookahead == '^') ADVANCE(374); + if (lookahead == '_') ADVANCE(444); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 22: - if (lookahead == '\n') SKIP(72) + if (lookahead == '\n') ADVANCE(238); + if (lookahead == '!') ADVANCE(142); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(178) + if (lookahead == '^') ADVANCE(374); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22) END_STATE(); case 23: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') SKIP(90) END_STATE(); case 24: - if (lookahead == '\n') SKIP(25) + if (lookahead == '\n') SKIP(81) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(165) - if (lookahead == '_') ADVANCE(370); - if (lookahead == 'e') ADVANCE(359); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (lookahead == '\n') SKIP(85) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(166) - if (lookahead == '_') ADVANCE(370); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (lookahead == '\n') SKIP(115) END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(424); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(175) - if (lookahead == '_') ADVANCE(370); - if (lookahead == 'i') ADVANCE(358); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (lookahead == '\n') SKIP(92) END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(426); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(170) - if (lookahead == 'e') ADVANCE(129); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(28) + if (lookahead == '\n') SKIP(89) END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(424); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '\\') SKIP(182) - if (lookahead == 'e') ADVANCE(129); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) + if (lookahead == '\n') SKIP(91) END_STATE(); case 30: - if (lookahead == '\n') SKIP(96) + if (lookahead == '\n') SKIP(114) END_STATE(); case 31: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(93) END_STATE(); case 32: - if (lookahead == '\n') SKIP(33) + if (lookahead == '\n') SKIP(125) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(207); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(424); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == '-') ADVANCE(420); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(154); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(421); + if (lookahead == '\n') SKIP(22) END_STATE(); case 34: - if (lookahead == '\n') SKIP(78) + if (lookahead == '\n') SKIP(94) END_STATE(); case 35: - if (lookahead == '\n') SKIP(36) + if (lookahead == '\n') SKIP(116) END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(208); - if (lookahead == '!') ADVANCE(264); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(425); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(167) - if (lookahead == '_') ADVANCE(370); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (lookahead == '\n') SKIP(117) END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(208); - if (lookahead == '!') ADVANCE(113); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(425); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(171) - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) + if (lookahead == '\n') SKIP(96) END_STATE(); case 38: - if (lookahead == '\n') SKIP(89) + if (lookahead == '\n') SKIP(123) END_STATE(); case 39: - if (lookahead == '\n') SKIP(94) + if (lookahead == '\n') SKIP(124) END_STATE(); case 40: - if (lookahead == '\n') SKIP(84) + if (lookahead == '\n') SKIP(97) END_STATE(); case 41: - if (lookahead == '\n') SKIP(93) + if (lookahead == '\n') SKIP(118) END_STATE(); case 42: - if (lookahead == '\n') SKIP(88) + if (lookahead == '\n') SKIP(119) END_STATE(); case 43: - if (lookahead == '\n') SKIP(28) + if (lookahead == '\n') SKIP(86) END_STATE(); case 44: - if (lookahead == '\n') SKIP(77) + if (lookahead == '\n') SKIP(126) END_STATE(); case 45: - if (lookahead == '\n') SKIP(37) + if (lookahead == '\n') SKIP(46) END_STATE(); case 46: - if (lookahead == '\n') SKIP(74) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(190) + if (lookahead == '_') ADVANCE(444); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(46) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 47: - if (lookahead == '\n') SKIP(97) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(192) + if (lookahead == '_') ADVANCE(444); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(47) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 48: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(203) + if (lookahead == '_') ADVANCE(444); + if (lookahead == 'i') ADVANCE(434); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(48) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 49: - if (lookahead == '\n') SKIP(90) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(204) + if (lookahead == '_') ADVANCE(444); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 50: - if (lookahead == '\n') SKIP(91) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(372); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(197) + if (lookahead == 'e') ADVANCE(149); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(50) END_STATE(); case 51: - if (lookahead == '\n') SKIP(92) + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(369); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '\\') SKIP(211) + if (lookahead == 'e') ADVANCE(149); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51) END_STATE(); case 52: - if (lookahead == '\n') SKIP(98) + if (lookahead == '\n') SKIP(106) END_STATE(); case 53: - if (lookahead == '\n') SKIP(99) + if (lookahead == '\n') SKIP(47) END_STATE(); case 54: - if (lookahead == '\n') SKIP(27) + if (lookahead == '\n') SKIP(107) END_STATE(); case 55: - if (lookahead == '\n') SKIP(85) + if (lookahead == '\n') SKIP(113) END_STATE(); case 56: - if (lookahead == '\n') SKIP(101) + if (lookahead == '\n') SKIP(98) END_STATE(); case 57: - if (lookahead == '\n') SKIP(102) + if (lookahead == '\n') SKIP(99) END_STATE(); case 58: - if (lookahead == '\n') SKIP(29) + if (lookahead == '\n') SKIP(50) END_STATE(); case 59: - if (lookahead == '\n') SKIP(103) + if (lookahead == '\n') SKIP(127) END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); + if (lookahead == '\n') SKIP(95) + END_STATE(); + case 61: + if (lookahead == '\n') SKIP(129) + END_STATE(); + case 62: + if (lookahead == '\n') SKIP(128) + END_STATE(); + case 63: + if (lookahead == '\n') SKIP(130) + END_STATE(); + case 64: + if (lookahead == '\n') SKIP(48) + END_STATE(); + case 65: + if (lookahead == '\n') SKIP(49) + END_STATE(); + case 66: + if (lookahead == '\n') SKIP(120) + END_STATE(); + case 67: + if (lookahead == '\n') SKIP(133) + END_STATE(); + case 68: + if (lookahead == '\n') SKIP(132) + END_STATE(); + case 69: + if (lookahead == '\n') SKIP(51) + END_STATE(); + case 70: + if (lookahead == '\n') SKIP(78) + END_STATE(); + case 71: + if (lookahead == '\n') SKIP(105) + END_STATE(); + case 72: + if (lookahead == '\n') SKIP(102) + END_STATE(); + case 73: + if (lookahead == '\n') SKIP(79) + END_STATE(); + case 74: + if (lookahead == '\n') ADVANCE(240); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(411); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(138); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(60) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(162); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(429); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 61: - if (lookahead == '\n') ADVANCE(210); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 75: + if (lookahead == '\n') SKIP(87) + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(82) + END_STATE(); + case 77: + if (lookahead == '\n') ADVANCE(241); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(139); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(354); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(164); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(429); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(77) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 62: - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); + case 78: + if (lookahead == '\n') ADVANCE(242); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(140); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) - if (lookahead != 0 && - lookahead != ')') ADVANCE(421); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(212); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(78) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); - case 63: - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); + case 79: + if (lookahead == '\n') ADVANCE(243); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(340); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(141); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(215); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(79) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + lookahead != '(') ADVANCE(454); END_STATE(); - case 64: - if (lookahead == '\n') ADVANCE(213); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 80: + if (lookahead == '\n') ADVANCE(244); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(411); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(142); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(421); - END_STATE(); - case 65: - if (lookahead == '\n') ADVANCE(214); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(143); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(354); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(65) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(163); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(80) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 66: - if (lookahead == '\n') ADVANCE(215); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 81: + if (lookahead == '\n') ADVANCE(245); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(144); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(66) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(169); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(81) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(421); - END_STATE(); - case 67: - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(145); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(67) - if (lookahead != 0 && - lookahead != ')') ADVANCE(421); - END_STATE(); - case 68: - if (lookahead == '\n') ADVANCE(217); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(146); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(68) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 69: - if (lookahead == '\n') ADVANCE(218); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); + case 82: + if (lookahead == '\n') ADVANCE(246); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(147); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(69) - if (lookahead != 0) ADVANCE(421); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(217); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(82) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); - case 70: - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 83: + if (lookahead == '\n') ADVANCE(247); + if (lookahead == '!') ADVANCE(445); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(283); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(340); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(70) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(160); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(83) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); - case 71: - if (lookahead == '\n') ADVANCE(220); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); + case 84: + if (lookahead == '\n') ADVANCE(248); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(150); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(71) + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(165); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(84) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 72: - if (lookahead == '\n') ADVANCE(221); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); + case 85: + if (lookahead == '\n') ADVANCE(249); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(151); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(72) + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(170); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(429); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(421); - END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(222); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(73) - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + lookahead != ')') ADVANCE(454); END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(223); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(424); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 86: + if (lookahead == '\n') ADVANCE(250); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(160); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(188); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(86) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(421); + lookahead != '|') ADVANCE(454); END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(224); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(424); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); + case 87: + if (lookahead == '\n') ADVANCE(251); + if (lookahead == '!') ADVANCE(445); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(340); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(162); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(75) - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 76: - if (lookahead == '!') ADVANCE(263); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(302); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '0') ADVANCE(366); - if (lookahead == ':') ADVANCE(315); - if (lookahead == ';') ADVANCE(231); - if (lookahead == '<') ADVANCE(284); - if (lookahead == '=') ADVANCE(276); - if (lookahead == '>') ADVANCE(287); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(131); - if (lookahead == ']') ADVANCE(268); - if (lookahead == '_') ADVANCE(369); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'd') ADVANCE(418); - if (lookahead == 'e') ADVANCE(414); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == 'i') ADVANCE(416); - if (lookahead == 't') ADVANCE(411); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(76) - if (lookahead != 0) ADVANCE(421); - END_STATE(); - case 77: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '>') ADVANCE(111); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(159); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(77) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(216); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(87) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); - case 78: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); + case 88: + if (lookahead == '\n') ADVANCE(252); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(411); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(78) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 79: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(132); - if (lookahead == ']' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(79) - if (lookahead != 0 && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 80: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(134); - if (lookahead == ']' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(80) - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 81: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == ']' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(415); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(81) - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 82: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(135); - if (lookahead == ']' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(82) - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 83: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(136); - if (lookahead == ']') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(166); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(88) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(') ADVANCE(454); END_STATE(); - case 84: - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ')') ADVANCE(112); - if (lookahead == '-') ADVANCE(420); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); + case 89: + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(157); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(84) - if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); - END_STATE(); - case 85: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(176) - if (lookahead == ']') ADVANCE(268); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '|') ADVANCE(249); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - END_STATE(); - case 86: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') ADVANCE(177); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(330); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - if (lookahead != 0 && - lookahead != '`') ADVANCE(333); - END_STATE(); - case 87: - if (lookahead == '!') ADVANCE(262); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(331); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(333); - END_STATE(); - case 88: - if (lookahead == '!') ADVANCE(264); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(104); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(169) - if (lookahead == ']') ADVANCE(268); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - END_STATE(); - case 89: - if (lookahead == '!') ADVANCE(264); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(104); - if (lookahead == ')') ADVANCE(112); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ':') ADVANCE(314); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(168) - if (lookahead == ']') ADVANCE(116); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(89) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(454); END_STATE(); case 90: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(112); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == ':') ADVANCE(314); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(172) - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(168); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(90) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')') ADVANCE(454); END_STATE(); case 91: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(104); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); + if (lookahead == '\n') ADVANCE(255); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(173) - if (lookahead == '|') ADVANCE(251); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(174); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(91) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 92: - if (lookahead == '!') ADVANCE(113); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); + if (lookahead == '\n') ADVANCE(256); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(174) - if (lookahead == ']') ADVANCE(268); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(172); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(92) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 93: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '/') ADVANCE(341); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '>') ADVANCE(111); + if (lookahead == '\n') ADVANCE(257); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(176); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(93) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(') ADVANCE(454); END_STATE(); case 94: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '-') ADVANCE(307); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '>') ADVANCE(111); + if (lookahead == '\n') ADVANCE(258); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(179); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(94) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(' && + lookahead != ')') ADVANCE(454); END_STATE(); case 95: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(149); - if (lookahead == ']' || + if (lookahead == '\n') ADVANCE(259); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(199); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(95) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); if (lookahead != 0 && + lookahead != '(' && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '|') ADVANCE(454); END_STATE(); case 96: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); + if (lookahead == '\n') ADVANCE(260); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(153); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(182); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(' && + lookahead != ')') ADVANCE(454); END_STATE(); case 97: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(161); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(185); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(97) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(') ADVANCE(454); END_STATE(); case 98: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); + if (lookahead == '\n') ADVANCE(262); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(163); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(195); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(98) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != ')' && + lookahead != '|') ADVANCE(454); END_STATE(); case 99: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '>') ADVANCE(111); + if (lookahead == '\n') ADVANCE(263); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(369); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(164); - if (lookahead == ']') ADVANCE(268); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(196); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(99) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(421); + lookahead != '(' && + lookahead != ')' && + lookahead != '|') ADVANCE(454); END_STATE(); case 100: - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(327); - if (lookahead == '$') ADVANCE(322); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(332); - if (lookahead != 0) ADVANCE(333); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(371); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == ')') ADVANCE(283); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(417); + if (lookahead == '0') ADVANCE(439); + if (lookahead == ':') ADVANCE(382); + if (lookahead == ';') ADVANCE(270); + if (lookahead == '<') ADVANCE(314); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(320); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(150); + if (lookahead == ']') ADVANCE(299); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '_') ADVANCE(443); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (lookahead == 'i') ADVANCE(449); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(279); + if (lookahead == '}') ADVANCE(289); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 101: - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '(') ADVANCE(248); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(114); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '=') ADVANCE(275); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') SKIP(178) - if (lookahead == '_') ADVANCE(370); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(157); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(101) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ';') ADVANCE(454); END_STATE(); case 102: - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ';') ADVANCE(230); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(275); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '[') ADVANCE(266); - if (lookahead == '\\') SKIP(181) - if (lookahead == 'd') ADVANCE(128); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(214); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(102) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ';') ADVANCE(454); END_STATE(); case 103: - if (lookahead == '#') ADVANCE(351); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(383); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(323); - if (lookahead == '\\') SKIP(183) - if (lookahead == '}') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(158); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(103) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(454); END_STATE(); case 104: - if (lookahead == '&') ADVANCE(260); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(156); + if (lookahead == ']') ADVANCE(396); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(104) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(454); END_STATE(); case 105: - if (lookahead == '&') ADVANCE(255); - if (lookahead == ';') ADVANCE(254); + if (lookahead == '!') ADVANCE(294); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(358); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(318); + if (lookahead == '=') ADVANCE(307); + if (lookahead == '>') ADVANCE(324); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(213); + if (lookahead == ']') ADVANCE(299); + if (lookahead == '^') ADVANCE(373); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(281); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(105) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';') ADVANCE(454); END_STATE(); case 106: - if (lookahead == '\'') ADVANCE(335); - if (lookahead != 0) ADVANCE(106); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(360); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ':') ADVANCE(382); + if (lookahead == ';') ADVANCE(269); + if (lookahead == '<') ADVANCE(317); + if (lookahead == '=') ADVANCE(309); + if (lookahead == '>') ADVANCE(323); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(395); + if (lookahead == '\\') ADVANCE(191); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(278); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(106) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '&') ADVANCE(454); END_STATE(); case 107: - if (lookahead == '\'') ADVANCE(336); - if (lookahead == '\\') ADVANCE(108); - if (lookahead != 0) ADVANCE(107); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(193); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(107) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 108: - if (lookahead == '\'') ADVANCE(337); - if (lookahead == '\\') ADVANCE(108); - if (lookahead != 0) ADVANCE(107); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(134); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(151); + if (lookahead == ']' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(108) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 109: - if (lookahead == '(') ADVANCE(228); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(152); + if (lookahead == ']' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(109) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 110: - if (lookahead == '(') ADVANCE(347); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(161); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(110) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 111: - if (lookahead == '(') ADVANCE(348); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(134); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (lookahead == '{') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(111) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(454); END_STATE(); case 112: - if (lookahead == ')') ADVANCE(229); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(112) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 113: - if (lookahead == '=') ADVANCE(300); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(194); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '~') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(113) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 114: - if (lookahead == '=') ADVANCE(279); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(175) + if (lookahead == ']') ADVANCE(299); + if (lookahead == '^') ADVANCE(374); + if (lookahead == '_') ADVANCE(444); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(114) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 115: - if (lookahead == '>') ADVANCE(292); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ':') ADVANCE(381); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(171) + if (lookahead == ']') ADVANCE(145); + if (lookahead == '^') ADVANCE(374); + if (lookahead == '_') ADVANCE(444); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(115) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 116: - if (lookahead == ']') ADVANCE(270); + if (lookahead == '!') ADVANCE(142); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(394); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == ':') ADVANCE(381); + if (lookahead == ';') ADVANCE(134); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(180) + if (lookahead == ']') ADVANCE(396); + if (lookahead == '^') ADVANCE(374); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'i') ADVANCE(148); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(116) END_STATE(); case 117: - if (lookahead == 'a') ADVANCE(118); + if (lookahead == '!') ADVANCE(142); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '(') ADVANCE(138); + if (lookahead == ')') ADVANCE(141); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == ':') ADVANCE(381); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(181) + if (lookahead == '^') ADVANCE(374); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(117) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 118: - if (lookahead == 'c') ADVANCE(243); + if (lookahead == '!') ADVANCE(142); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(186) + if (lookahead == '^') ADVANCE(374); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(118) END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(241); + if (lookahead == '!') ADVANCE(142); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '%') ADVANCE(359); + if (lookahead == '&') ADVANCE(370); + if (lookahead == '*') ADVANCE(350); + if (lookahead == '+') ADVANCE(341); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '/') ADVANCE(353); + if (lookahead == '<') ADVANCE(319); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(325); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(187) + if (lookahead == ']') ADVANCE(299); + if (lookahead == '^') ADVANCE(374); + if (lookahead == '|') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(119) END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(205) + if (lookahead == ']') ADVANCE(299); + if (lookahead == '_') ADVANCE(444); + if (lookahead == '|') ADVANCE(278); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(120) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 121: - if (lookahead == 'f') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') ADVANCE(206); + if (lookahead == '_') ADVANCE(444); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(402); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + if (lookahead != 0 && + lookahead != '`') ADVANCE(405); END_STATE(); case 122: - if (lookahead == 'h') ADVANCE(120); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') ADVANCE(208); + if (lookahead == '_') ADVANCE(444); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(403); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(405); END_STATE(); case 123: - if (lookahead == 'i') ADVANCE(237); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(360); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '/') ADVANCE(417); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(382); + if (lookahead == ';') ADVANCE(269); + if (lookahead == '<') ADVANCE(317); + if (lookahead == '=') ADVANCE(309); + if (lookahead == '>') ADVANCE(323); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(395); + if (lookahead == '\\') ADVANCE(183); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(278); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(123) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != '&') ADVANCE(454); END_STATE(); case 124: - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 's') ADVANCE(119); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '%') ADVANCE(360); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(382); + if (lookahead == ';') ADVANCE(269); + if (lookahead == '<') ADVANCE(317); + if (lookahead == '=') ADVANCE(309); + if (lookahead == '>') ADVANCE(323); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(395); + if (lookahead == '\\') ADVANCE(184); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(278); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != '&') ADVANCE(454); END_STATE(); case 125: - if (lookahead == 'l') ADVANCE(124); - if (lookahead == 's') ADVANCE(117); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(125) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 126: - if (lookahead == 'n') ADVANCE(225); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(189); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != ';') ADVANCE(454); END_STATE(); case 127: - if (lookahead == 'n') ADVANCE(235); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(198); + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'e') ADVANCE(450); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(127) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(233); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(395); + if (lookahead == '\\') ADVANCE(201); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '}') ADVANCE(289); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 129: - if (lookahead == 's') ADVANCE(117); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(426); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(200); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(129) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 130: - if (lookahead == '|') ADVANCE(261); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(426); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == ']') ADVANCE(299); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(130) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(454); END_STATE(); case 131: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(76) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(389); - if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(399); + if (lookahead == '$') ADVANCE(394); + if (lookahead == '\\') ADVANCE(207); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(404); + if (lookahead != 0) ADVANCE(405); END_STATE(); case 132: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(79) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(393); - if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '+') ADVANCE(143); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(306); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '[') ADVANCE(297); + if (lookahead == '\\') SKIP(210) + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(132) END_STATE(); case 133: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(81) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(394); - if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(144); + if (lookahead == ';') ADVANCE(269); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '\\') ADVANCE(209); + if (lookahead == '{') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(133) + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + lookahead != '|' && + lookahead != '}') ADVANCE(454); END_STATE(); case 134: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(80) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(395); - if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '&') ADVANCE(286); + if (lookahead == ';') ADVANCE(285); END_STATE(); case 135: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(82) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(396); - if (lookahead == '\r') SKIP(5) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '\'') ADVANCE(407); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 136: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(83) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(397); - if (lookahead == '\r') SKIP(6) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '\'') ADVANCE(408); + if (lookahead == '\\') ADVANCE(137); + if (lookahead != 0) ADVANCE(136); END_STATE(); case 137: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(8) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(371); - if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(137); + if (lookahead != 0) ADVANCE(136); END_STATE(); case 138: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(60) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(373); - if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '(') ADVANCE(267); END_STATE(); case 139: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(61) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(374); - if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '(') ADVANCE(421); END_STATE(); case 140: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(62) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(375); - if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '(') ADVANCE(422); END_STATE(); case 141: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(63) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(376); - if (lookahead == '\r') SKIP(12) - if (lookahead != 0) ADVANCE(421); + if (lookahead == ')') ADVANCE(268); END_STATE(); case 142: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(64) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(377); - if (lookahead == '\r') SKIP(13) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '=') ADVANCE(338); END_STATE(); case 143: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(65) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(378); - if (lookahead == '\r') SKIP(14) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '=') ADVANCE(310); END_STATE(); case 144: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(66) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(379); - if (lookahead == '\r') SKIP(15) - if (lookahead != 0) ADVANCE(421); + if (lookahead == '>') ADVANCE(328); END_STATE(); case 145: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(67) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(380); - if (lookahead == '\r') SKIP(16) - if (lookahead != 0) ADVANCE(421); + if (lookahead == ']') ADVANCE(301); END_STATE(); case 146: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(68) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(381); - if (lookahead == '\r') SKIP(17) - if (lookahead != 0) ADVANCE(421); + if (lookahead == 'a') ADVANCE(147); END_STATE(); case 147: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(69) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(382); - if (lookahead == '\r') SKIP(18) - if (lookahead != 0) ADVANCE(421); + if (lookahead == 'c') ADVANCE(272); END_STATE(); case 148: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(70) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(383); - if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(421); + if (lookahead == 'n') ADVANCE(264); END_STATE(); case 149: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(95) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(400); - if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(421); + if (lookahead == 's') ADVANCE(146); END_STATE(); case 150: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(71) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(384); - if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(100) + if (lookahead == '\r') SKIP(1) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 151: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(72) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(385); - if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(108) + if (lookahead == '\r') SKIP(2) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 152: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(73) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(386); - if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(109) + if (lookahead == '\r') SKIP(3) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 153: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(96) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(401); - if (lookahead == '\r') SKIP(30) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(5) + if (lookahead == '\r') SKIP(4) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 154: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(33) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(372); - if (lookahead == '\r') SKIP(32) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(111) + if (lookahead == '\r') SKIP(6) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 155: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(78) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(391); - if (lookahead == '\r') SKIP(34) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(112) + if (lookahead == '\r') SKIP(7) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 156: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(94) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(399); - if (lookahead == '\r') SKIP(39) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(104) + if (lookahead == '\r') SKIP(8) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 157: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(84) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(392); - if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(101) + if (lookahead == '\r') SKIP(9) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 158: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(93) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(398); - if (lookahead == '\r') SKIP(41) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(103) + if (lookahead == '\r') SKIP(10) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 159: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(77) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(390); - if (lookahead == '\r') SKIP(44) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(12) + if (lookahead == '\r') SKIP(11) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 160: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(74) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(387); - if (lookahead == '\r') SKIP(46) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(83) + if (lookahead == '\r') SKIP(13) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 161: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(97) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(402); - if (lookahead == '\r') SKIP(47) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(110) + if (lookahead == '\r') SKIP(14) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 162: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(75) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(388); - if (lookahead == '\r') SKIP(48) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(74) + if (lookahead == '\r') SKIP(15) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 163: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(98) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(403); - if (lookahead == '\r') SKIP(52) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(80) + if (lookahead == '\r') SKIP(16) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 164: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(99) - if (lookahead == 11 || - lookahead == '\f') ADVANCE(404); - if (lookahead == '\r') SKIP(53) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(77) + if (lookahead == '\r') SKIP(17) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 165: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(25) - if (lookahead == '\r') SKIP(24) + lookahead == ' ') SKIP(84) + if (lookahead == '\r') SKIP(18) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 166: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(26) - if (lookahead == '\r') SKIP(31) + lookahead == ' ') SKIP(88) + if (lookahead == '\r') SKIP(19) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 167: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(36) - if (lookahead == '\r') SKIP(35) + lookahead == ' ') SKIP(21) + if (lookahead == '\r') SKIP(20) END_STATE(); case 168: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(89) - if (lookahead == '\r') SKIP(38) + lookahead == ' ') SKIP(90) + if (lookahead == '\r') SKIP(23) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 169: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(88) - if (lookahead == '\r') SKIP(42) + lookahead == ' ') SKIP(81) + if (lookahead == '\r') SKIP(24) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 170: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(28) - if (lookahead == '\r') SKIP(43) + lookahead == ' ') SKIP(85) + if (lookahead == '\r') SKIP(25) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 171: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(37) - if (lookahead == '\r') SKIP(45) + lookahead == ' ') SKIP(115) + if (lookahead == '\r') SKIP(26) END_STATE(); case 172: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(90) - if (lookahead == '\r') SKIP(49) + lookahead == ' ') SKIP(92) + if (lookahead == '\r') SKIP(27) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 173: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(91) - if (lookahead == '\r') SKIP(50) + lookahead == ' ') SKIP(89) + if (lookahead == '\r') SKIP(28) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 174: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92) - if (lookahead == '\r') SKIP(51) + lookahead == ' ') SKIP(91) + if (lookahead == '\r') SKIP(29) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 175: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27) - if (lookahead == '\r') SKIP(54) + lookahead == ' ') SKIP(114) + if (lookahead == '\r') SKIP(30) END_STATE(); case 176: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(85) - if (lookahead == '\r') SKIP(55) + lookahead == ' ') SKIP(93) + if (lookahead == '\r') SKIP(31) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 177: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(330); - if (lookahead == '\r') ADVANCE(326); - if (lookahead != 0) ADVANCE(333); + lookahead == ' ') SKIP(125) + if (lookahead == '\r') SKIP(32) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 178: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(101) - if (lookahead == '\r') SKIP(56) + lookahead == ' ') SKIP(22) + if (lookahead == '\r') SKIP(33) END_STATE(); case 179: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(331); - if (lookahead == '\r') ADVANCE(328); - if (lookahead != 0) ADVANCE(333); + lookahead == ' ') SKIP(94) + if (lookahead == '\r') SKIP(34) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 180: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(332); - if (lookahead == '\r') ADVANCE(329); - if (lookahead != 0) ADVANCE(333); + lookahead == ' ') SKIP(116) + if (lookahead == '\r') SKIP(35) END_STATE(); case 181: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(102) - if (lookahead == '\r') SKIP(57) + lookahead == ' ') SKIP(117) + if (lookahead == '\r') SKIP(36) END_STATE(); case 182: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(29) - if (lookahead == '\r') SKIP(58) + lookahead == ' ') SKIP(96) + if (lookahead == '\r') SKIP(37) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 183: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(103) - if (lookahead == '\r') SKIP(59) + lookahead == ' ') SKIP(123) + if (lookahead == '\r') SKIP(38) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 184: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(124) + if (lookahead == '\r') SKIP(39) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 185: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(333); - if (lookahead == '\r') ADVANCE(334); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(97) + if (lookahead == '\r') SKIP(40) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 186: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '&') ADVANCE(426); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') SKIP(200) - if (lookahead == '_') ADVANCE(370); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(118) + if (lookahead == '\r') SKIP(41) END_STATE(); case 187: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(426); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(285); - if (lookahead == '>') ADVANCE(289); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(201) - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(187) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(119) + if (lookahead == '\r') SKIP(42) END_STATE(); case 188: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(206); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '&') ADVANCE(424); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(203) - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'i') ADVANCE(126); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(188) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(86) + if (lookahead == '\r') SKIP(43) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 189: - if (eof) ADVANCE(204); - if (lookahead == '\n') SKIP(186) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(126) + if (lookahead == '\r') SKIP(44) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 190: - if (eof) ADVANCE(204); - if (lookahead == '\n') SKIP(187) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(46) + if (lookahead == '\r') SKIP(45) END_STATE(); case 191: - if (eof) ADVANCE(204); - if (lookahead == '\n') SKIP(199) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(106) + if (lookahead == '\r') SKIP(52) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 192: - if (eof) ADVANCE(204); - if (lookahead == '\n') SKIP(188) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(47) + if (lookahead == '\r') SKIP(53) END_STATE(); case 193: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(141); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(193) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(107) + if (lookahead == '\r') SKIP(54) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 194: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(217); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(146); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(113) + if (lookahead == '\r') SKIP(55) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 195: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(218); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(247); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(147); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(195) - if (lookahead != 0) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(98) + if (lookahead == '\r') SKIP(56) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 196: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == '_') ADVANCE(368); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(99) + if (lookahead == '\r') SKIP(57) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 197: - if (eof) ADVANCE(204); - if (lookahead == '\n') ADVANCE(222); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(426); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(232); - if (lookahead == '<') ADVANCE(283); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '|') ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(197) - if (lookahead != 0 && - lookahead != '(') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(50) + if (lookahead == '\r') SKIP(58) END_STATE(); case 198: - if (eof) ADVANCE(204); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(321); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '\'') ADVANCE(106); - if (lookahead == '(') ADVANCE(248); - if (lookahead == ')') ADVANCE(252); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '>') ADVANCE(288); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(132); - if (lookahead == ']' || - lookahead == '}') ADVANCE(323); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '{') ADVANCE(257); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(198) - if (lookahead != 0 && - lookahead != '|') ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(127) + if (lookahead == '\r') SKIP(59) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 199: - if (eof) ADVANCE(204); - if (lookahead == '!') ADVANCE(113); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(322); - if (lookahead == '&') ADVANCE(104); - if (lookahead == ')') ADVANCE(112); - if (lookahead == '+') ADVANCE(303); - if (lookahead == '-') ADVANCE(306); - if (lookahead == ':') ADVANCE(314); - if (lookahead == ';') ADVANCE(105); - if (lookahead == '<') ADVANCE(286); - if (lookahead == '=') ADVANCE(277); - if (lookahead == '>') ADVANCE(290); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(323); - if (lookahead == '\\') SKIP(202) - if (lookahead == ']') ADVANCE(324); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'd') ADVANCE(128); - if (lookahead == 'e') ADVANCE(125); - if (lookahead == 'f') ADVANCE(123); - if (lookahead == 'i') ADVANCE(126); - if (lookahead == 't') ADVANCE(122); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(199) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(95) + if (lookahead == '\r') SKIP(60) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 200: - if (eof) ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186) - if (lookahead == '\r') SKIP(189) + lookahead == ' ') SKIP(129) + if (lookahead == '\r') SKIP(61) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 201: - if (eof) ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187) - if (lookahead == '\r') SKIP(190) + lookahead == ' ') SKIP(128) + if (lookahead == '\r') SKIP(62) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 202: - if (eof) ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(199) - if (lookahead == '\r') SKIP(191) + lookahead == ' ') SKIP(130) + if (lookahead == '\r') SKIP(63) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 203: - if (eof) ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(188) - if (lookahead == '\r') SKIP(192) + lookahead == ' ') SKIP(48) + if (lookahead == '\r') SKIP(64) END_STATE(); case 204: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(49) + if (lookahead == '\r') SKIP(65) END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(205); - if (lookahead == '\\') ADVANCE(137); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(120) + if (lookahead == '\r') SKIP(66) END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(206); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(402); + if (lookahead == '\r') ADVANCE(398); + if (lookahead != 0) ADVANCE(405); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(207); - if (lookahead == '-') ADVANCE(420); - if (lookahead == '\\') ADVANCE(154); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(404); + if (lookahead == '\r') ADVANCE(400); + if (lookahead != 0) ADVANCE(405); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(208); - if (lookahead == '-') ADVANCE(306); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(403); + if (lookahead == '\r') ADVANCE(401); + if (lookahead != 0) ADVANCE(405); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '\\') ADVANCE(138); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(133) + if (lookahead == '\r') SKIP(67) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(210); - if (lookahead == '\\') ADVANCE(139); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(132) + if (lookahead == '\r') SKIP(68) END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '\\') ADVANCE(140); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(51) + if (lookahead == '\r') SKIP(69) END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '\\') ADVANCE(141); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(78) + if (lookahead == '\r') SKIP(70) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(213); - if (lookahead == '\\') ADVANCE(142); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(105) + if (lookahead == '\r') SKIP(71) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(214); - if (lookahead == '\\') ADVANCE(143); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(102) + if (lookahead == '\r') SKIP(72) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(215); - if (lookahead == '\\') ADVANCE(144); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(79) + if (lookahead == '\r') SKIP(73) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(87) + if (lookahead == '\r') SKIP(75) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(217); - if (lookahead == '\\') ADVANCE(146); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(82) + if (lookahead == '\r') SKIP(76) + if (lookahead != 0) ADVANCE(454); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(218); - if (lookahead == '\\') ADVANCE(147); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(454); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '\\') ADVANCE(148); + if (lookahead != 0 && + lookahead != '\r') ADVANCE(405); + if (lookahead == '\r') ADVANCE(406); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(220); - if (lookahead == '\\') ADVANCE(150); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '&') ADVANCE(372); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') SKIP(232) + if (lookahead == '_') ADVANCE(444); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(220) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(221); - if (lookahead == '\\') ADVANCE(151); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(372); + if (lookahead == ')') ADVANCE(282); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(316); + if (lookahead == '>') ADVANCE(322); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(233) + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(221) END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(222); - if (lookahead == '\\') ADVANCE(152); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(239); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '&') ADVANCE(369); + if (lookahead == ')') ADVANCE(282); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') SKIP(234) + if (lookahead == '`') ADVANCE(420); + if (lookahead == 'i') ADVANCE(148); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(222) END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(223); - if (lookahead == '\\') ADVANCE(160); + if (eof) ADVANCE(235); + if (lookahead == '\n') SKIP(220) END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(224); - if (lookahead == '\\') ADVANCE(162); + if (eof) ADVANCE(235); + if (lookahead == '\n') SKIP(221) END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_in); + if (eof) ADVANCE(235); + if (lookahead == '\n') SKIP(222) END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(252); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(411); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(166); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(226) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(255); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(174); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(227) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(256); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(276); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '=') ADVANCE(446); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(172); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(228) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(257); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '*') ADVANCE(351); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '0') ADVANCE(440); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '?') ADVANCE(380); + if (lookahead == '@') ADVANCE(438); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(176); + if (lookahead == '_') ADVANCE(442); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(229) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_SEMI); + if (eof) ADVANCE(235); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(372); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(271); + if (lookahead == '<') ADVANCE(315); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(395); + if (lookahead == '\\') ADVANCE(185); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '|') ADVANCE(280); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(230) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0 && + lookahead != '(') ADVANCE(454); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(255); - if (lookahead == ';') ADVANCE(254); + if (eof) ADVANCE(235); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(425); + if (lookahead == '$') ADVANCE(393); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '\'') ADVANCE(135); + if (lookahead == '(') ADVANCE(277); + if (lookahead == ')') ADVANCE(282); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ';') ADVANCE(134); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '>') ADVANCE(321); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(151); + if (lookahead == ']' || + lookahead == '}') ADVANCE(395); + if (lookahead == '`') ADVANCE(420); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (lookahead != 0) ADVANCE(454); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(253); + if (eof) ADVANCE(235); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(220) + if (lookahead == '\r') SKIP(223) END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_do); + if (eof) ADVANCE(235); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(221) + if (lookahead == '\r') SKIP(224) END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + if (eof) ADVANCE(235); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(222) + if (lookahead == '\r') SKIP(225) END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_then); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_then); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(236); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '\\') ADVANCE(153); + if (lookahead == '~') ADVANCE(384); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_fi); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(237); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '\\') ADVANCE(159); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_fi); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(238); + if (lookahead == '-') ADVANCE(344); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_elif); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(239); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_elif); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(240); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(162); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(241); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(164); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(242); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '\\') ADVANCE(212); + if (lookahead == '~') ADVANCE(384); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_esac); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(243); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '\\') ADVANCE(215); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(244); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(163); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(245); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(169); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_esac); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(246); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '\\') ADVANCE(217); + if (lookahead == '~') ADVANCE(384); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(247); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '\\') ADVANCE(160); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(248); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(165); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(249); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(170); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(259); - if (lookahead == '|') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(250); + if (lookahead == '+') ADVANCE(385); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '\\') ADVANCE(188); + if (lookahead == '~') ADVANCE(384); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(251); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '\\') ADVANCE(216); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(252); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(166); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(173); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(168); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(255); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(174); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(256); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(172); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(257); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(176); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(258); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(179); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(259); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '\\') ADVANCE(199); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(260); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(182); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(185); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(262); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(195); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(301); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_3(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(263); + if (lookahead == '-') ADVANCE(452); + if (lookahead == '\\') ADVANCE(196); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(269); + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(286); + if (lookahead == ';') ADVANCE(285); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(284); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_esac); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_esac); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == '~') ADVANCE(272); - if (!sym_word_character_set_3(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(273); - if (lookahead == '~') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(267); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(290); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '|') ADVANCE(292); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(290); + if (lookahead == '|') ADVANCE(292); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(294); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '|') ADVANCE(292); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(347); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(347); - if (lookahead == '<') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == ')') ADVANCE(268); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(347); - if (lookahead == '<') ADVANCE(297); - if (lookahead == '=') ADVANCE(310); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '<') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '&') ADVANCE(287); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(310); + ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '(') ADVANCE(348); - if (lookahead == '=') ADVANCE(311); - if (lookahead == '>') ADVANCE(291); - if (lookahead == '|') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '(') ADVANCE(348); - if (lookahead == '>') ADVANCE(291); - if (lookahead == '|') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '>') ADVANCE(291); - if (lookahead == '|') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(311); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(293); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(339); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(338); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '<') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(300); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 300: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(317); - if (lookahead == '=') ADVANCE(280); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_3(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(316); - if (lookahead == '=') ADVANCE(279); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(319); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '\\') ADVANCE(184); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(423); - if (!sym_word_character_set_4(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(318); - if (lookahead == '=') ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(423); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == '~') ADVANCE(303); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '~') ADVANCE(302); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(330); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(330); + if (lookahead == '(') ADVANCE(421); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(330); + if (lookahead == '(') ADVANCE(421); + if (lookahead == '<') ADVANCE(334); + if (lookahead == '=') ADVANCE(365); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(343); - if (lookahead == '?') ADVANCE(342); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(330); + if (lookahead == '(') ADVANCE(421); + if (lookahead == '<') ADVANCE(333); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(330); + if (lookahead == '<') ADVANCE(333); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '(') ADVANCE(421); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '(') ADVANCE(421); + if (lookahead == '<') ADVANCE(335); + if (lookahead == '=') ADVANCE(365); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(335); + if (lookahead == '=') ADVANCE(365); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(331); + if (lookahead == '(') ADVANCE(422); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(327); + if (lookahead == '|') ADVANCE(332); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(107); - if (lookahead == '(') ADVANCE(345); - if (lookahead == '{') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(331); + if (lookahead == '(') ADVANCE(422); + if (lookahead == '>') ADVANCE(326); + if (lookahead == '|') ADVANCE(332); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(345); - if (lookahead == '{') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(331); + if (lookahead == '>') ADVANCE(326); + if (lookahead == '|') ADVANCE(332); END_STATE(); case 323: - ACCEPT_TOKEN(sym__special_character); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '(') ADVANCE(422); END_STATE(); case 324: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(270); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '(') ADVANCE(422); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(327); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '>') ADVANCE(327); END_STATE(); case 326: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(330); - if (lookahead == '\\') ADVANCE(185); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 327: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(333); - if (lookahead == '\\') ADVANCE(349); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(327); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(368); END_STATE(); case 328: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(331); - if (lookahead == '\\') ADVANCE(185); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(329); END_STATE(); case 329: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(332); - if (lookahead == '\\') ADVANCE(185); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 330: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') ADVANCE(177); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(330); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - if (lookahead != 0 && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 331: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(262); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(320); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '0') ADVANCE(367); - if (lookahead == '?') ADVANCE(312); - if (lookahead == '@') ADVANCE(363); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '_') ADVANCE(370); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(331); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 332: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(325); - if (lookahead == '#') ADVANCE(327); - if (lookahead == '$') ADVANCE(322); - if (lookahead == '\\') ADVANCE(180); - if (lookahead == '`') ADVANCE(346); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(332); - if (lookahead != 0) ADVANCE(333); + ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); case 333: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(185); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(336); + if (lookahead == '<') ADVANCE(337); END_STATE(); case 334: - ACCEPT_TOKEN(sym__string_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\' && - lookahead != '`') ADVANCE(333); - if (lookahead == '\\') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(336); + if (lookahead == '<') ADVANCE(337); + if (lookahead == '=') ADVANCE(367); END_STATE(); case 335: - ACCEPT_TOKEN(sym_raw_string); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(367); END_STATE(); case 336: - ACCEPT_TOKEN(sym_ansi_c_string); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 337: - ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(336); - if (lookahead == '\\') ADVANCE(108); - if (lookahead != 0) ADVANCE(107); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\\') ADVANCE(350); - if (!sym_word_character_set_1(lookahead)) ADVANCE(422); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(388); + if (lookahead == '=') ADVANCE(311); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '=') ADVANCE(310); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(390); + if (lookahead == '=') ADVANCE(347); + if (lookahead == '\\') ADVANCE(218); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); + if (!sym_word_character_set_4(lookahead)) ADVANCE(454); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(389); + if (lookahead == '=') ADVANCE(346); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '\\') ADVANCE(218); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 349: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(333); - if (lookahead == '\r') ADVANCE(327); - if (lookahead != 0) ADVANCE(327); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(364); + if (lookahead == '=') ADVANCE(355); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 350: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(351); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(422); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(363); + if (lookahead == '=') ADVANCE(354); END_STATE(); case 351: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(351); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 352: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'a') ADVANCE(353); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 353: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'c') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(356); END_STATE(); case 354: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 's') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 355: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 356: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(357); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 357: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 358: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(227); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(362); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 359: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(356); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(361); END_STATE(); case 360: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '=') ADVANCE(375); END_STATE(); case 371: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(205); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(137); - if (lookahead == 'e') ADVANCE(354); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_5(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(328); END_STATE(); case 372: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(207); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '-') ADVANCE(420); - if (lookahead == '\\') ADVANCE(154); - if (!sym_word_character_set_6(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '>') ADVANCE(328); END_STATE(); case 373: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(209); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_5(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(378); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); END_STATE(); case 374: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(210); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(139); - if (lookahead == '_') ADVANCE(368); - if (lookahead == 'e') ADVANCE(354); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(377); END_STATE(); case 375: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '\\') ADVANCE(140); - if (lookahead == 'e') ADVANCE(419); - if (!sym_word_character_set_7(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 376: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (!sym_word_character_set_5(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 377: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(213); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(142); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 378: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(214); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(143); - if (lookahead == '_') ADVANCE(368); - if (lookahead == 'e') ADVANCE(354); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 379: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(215); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(144); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 380: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '\\') ADVANCE(145); - if (!sym_word_character_set_7(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 381: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(217); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(146); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 382: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(218); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '=') ADVANCE(405); - if (lookahead == '\\') ADVANCE(147); - if (!sym_word_character_set_7(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') ADVANCE(419); + if (lookahead == '?') ADVANCE(418); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 383: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 384: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(220); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(150); - if (lookahead == 'e') ADVANCE(419); - if (!sym_word_character_set_8(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); case 385: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(221); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(151); - if (!sym_word_character_set_8(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '+') ADVANCE(384); END_STATE(); case 386: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(222); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(152); - if (!sym_word_character_set_8(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '-') ADVANCE(384); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); END_STATE(); case 387: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(223); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(160); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 388: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\n') ADVANCE(224); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(162); - if (!sym_word_character_set_8(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 389: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(263); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(302); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '0') ADVANCE(366); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '=') ADVANCE(276); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(131); - if (lookahead == '_') ADVANCE(369); - if (lookahead == 'd') ADVANCE(418); - if (lookahead == 'e') ADVANCE(414); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == 'i') ADVANCE(416); - if (lookahead == 't') ADVANCE(411); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < ' ' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 390: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(159); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < ' ' || ')' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 391: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '0') ADVANCE(365); - if (lookahead == '?') ADVANCE(313); - if (lookahead == '@') ADVANCE(364); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(368); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); case 392: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '-') ADVANCE(420); - if (lookahead == '\\') ADVANCE(157); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 393: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(132); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(136); + if (lookahead == '(') ADVANCE(391); + if (lookahead == '{') ADVANCE(416); END_STATE(); case 394: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == 'e') ADVANCE(415); - if (lookahead == 'f') ADVANCE(412); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(391); + if (lookahead == '{') ADVANCE(416); END_STATE(); case 395: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(134); - if (lookahead == 'e') ADVANCE(419); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__special_character); END_STATE(); case 396: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(135); - if (lookahead == 'f') ADVANCE(412); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__special_character); + if (lookahead == ']') ADVANCE(301); END_STATE(); case 397: - ACCEPT_TOKEN(sym_word); - if (lookahead == '!') ADVANCE(265); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(136); - if (!sym_word_character_set_9(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 398: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '/') ADVANCE(341); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '\\') ADVANCE(158); - if (!sym_word_character_set_10(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(402); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(405); END_STATE(); case 399: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '-') ADVANCE(307); - if (lookahead == ':') ADVANCE(315); - if (lookahead == '=') ADVANCE(278); - if (lookahead == '\\') ADVANCE(156); - if (!sym_word_character_set_10(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(405); + if (lookahead == '\\') ADVANCE(423); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(399); END_STATE(); case 400: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(149); - if (!sym_word_character_set_11(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(404); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(405); END_STATE(); case 401: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(153); - if (!sym_word_character_set_11(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') ADVANCE(403); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(405); END_STATE(); case 402: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(161); - if (lookahead == 'e') ADVANCE(419); - if (!sym_word_character_set_11(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') ADVANCE(206); + if (lookahead == '_') ADVANCE(444); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(402); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + if (lookahead != 0 && + lookahead != '`') ADVANCE(405); END_STATE(); case 403: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(163); - if (!sym_word_character_set_11(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '#') ADVANCE(415); + if (lookahead == '$') ADVANCE(392); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '-') ADVANCE(342); + if (lookahead == '0') ADVANCE(441); + if (lookahead == '?') ADVANCE(379); + if (lookahead == '@') ADVANCE(437); + if (lookahead == '\\') ADVANCE(208); + if (lookahead == '_') ADVANCE(444); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(403); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(405); END_STATE(); case 404: - ACCEPT_TOKEN(sym_word); - if (lookahead == '#') ADVANCE(422); - if (lookahead == '\\') ADVANCE(164); - if (!sym_word_character_set_11(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '"') ADVANCE(397); + if (lookahead == '#') ADVANCE(399); + if (lookahead == '$') ADVANCE(394); + if (lookahead == '\\') ADVANCE(207); + if (lookahead == '`') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(404); + if (lookahead != 0) ADVANCE(405); END_STATE(); case 405: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == '~') ADVANCE(272); - if (!sym_word_character_set_3(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(405); END_STATE(); case 406: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'a') ADVANCE(407); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym__string_content); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\' && + lookahead != '`') ADVANCE(405); + if (lookahead == '\\') ADVANCE(219); END_STATE(); case 407: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'c') ADVANCE(245); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_raw_string); END_STATE(); case 408: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'e') ADVANCE(242); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); case 409: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'e') ADVANCE(417); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_ansi_c_string); + if (lookahead == '\'') ADVANCE(408); + if (lookahead == '\\') ADVANCE(137); + if (lookahead != 0) ADVANCE(136); END_STATE(); case 410: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'f') ADVANCE(240); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'x') ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (!sym_word_character_set_5(lookahead)) ADVANCE(454); END_STATE(); case 411: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'h') ADVANCE(409); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'x') ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_6(lookahead)) ADVANCE(454); END_STATE(); case 412: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'i') ADVANCE(238); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (!sym_word_character_set_5(lookahead)) ADVANCE(454); END_STATE(); case 413: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'i') ADVANCE(410); - if (lookahead == 's') ADVANCE(408); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_6(lookahead)) ADVANCE(454); END_STATE(); case 414: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'l') ADVANCE(413); - if (lookahead == 's') ADVANCE(406); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); END_STATE(); case 415: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'l') ADVANCE(413); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 416: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'n') ADVANCE(226); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 417: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'n') ADVANCE(236); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); case 418: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 'o') ADVANCE(234); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 419: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (lookahead == 's') ADVANCE(406); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); END_STATE(); case 420: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 421: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(184); - if (!sym_word_character_set_1(lookahead)) ADVANCE(421); + ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); case 422: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(350); - if (!sym_word_character_set_1(lookahead)) ADVANCE(422); + ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); case 423: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(423); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(405); + if (lookahead == '\r') ADVANCE(399); + if (lookahead != 0) ADVANCE(399); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(426); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r')) ADVANCE(425); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(260); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(425); END_STATE(); case 426: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(260); - if (lookahead == '>') ADVANCE(292); + ACCEPT_TOKEN(sym__comment_word); + if (lookahead == '\\') ADVANCE(424); + if (!sym_word_character_set_1(lookahead)) ADVANCE(426); + END_STATE(); + case 427: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'a') ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 428: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'c') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 429: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 's') ADVANCE(427); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 430: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 431: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 432: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'a') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 433: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'c') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 434: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 'n') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 435: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == 's') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 436: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'x') ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (!sym_word_character_set_5(lookahead)) ADVANCE(454); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '#') ADVANCE(453); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'x') ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_6(lookahead)) ADVANCE(454); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 442: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 443: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 444: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') ADVANCE(339); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == '~') ADVANCE(303); + if (!sym_word_character_set_3(lookahead)) ADVANCE(454); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'a') ADVANCE(448); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'c') ADVANCE(274); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 'n') ADVANCE(265); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (lookahead == 's') ADVANCE(447); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (!sym_word_character_set_2(lookahead)) ADVANCE(454); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(218); + if (!sym_word_character_set_1(lookahead)) ADVANCE(454); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); END_STATE(); default: return false; @@ -9201,7 +10163,6 @@ 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 == '\\') SKIP(1) @@ -9216,9 +10177,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(10); if (lookahead == 'u') ADVANCE(11); if (lookahead == 'w') ADVANCE(12); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -9234,3815 +10193,4559 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(16); END_STATE(); case 4: - if (lookahead == 'x') ADVANCE(17); + if (lookahead == 'l') ADVANCE(17); + if (lookahead == 'x') ADVANCE(18); END_STATE(); case 5: - if (lookahead == 'o') ADVANCE(18); - if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'u') ADVANCE(21); END_STATE(); case 6: - if (lookahead == 'f') ADVANCE(20); + if (lookahead == 'f') ADVANCE(22); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'o') ADVANCE(23); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(22); + if (lookahead == 'e') ADVANCE(24); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(23); + if (lookahead == 'e') ADVANCE(25); END_STATE(); case 10: - if (lookahead == 'y') ADVANCE(24); + if (lookahead == 'h') ADVANCE(26); + if (lookahead == 'y') ADVANCE(27); END_STATE(); case 11: - if (lookahead == 'n') ADVANCE(25); + if (lookahead == 'n') ADVANCE(28); END_STATE(); case 12: - if (lookahead == 'h') ADVANCE(26); + if (lookahead == 'h') ADVANCE(29); END_STATE(); case 13: if (lookahead == '\n') SKIP(0) END_STATE(); case 14: - if (lookahead == 's') ADVANCE(27); + if (lookahead == 's') ADVANCE(30); END_STATE(); case 15: - if (lookahead == 'c') ADVANCE(28); + if (lookahead == 'c') ADVANCE(31); END_STATE(); case 16: - if (lookahead == 'n') ADVANCE(29); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') ADVANCE(32); END_STATE(); case 17: - if (lookahead == 'p') ADVANCE(30); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 's') ADVANCE(34); END_STATE(); case 18: - if (lookahead == 'r') ADVANCE(31); + if (lookahead == 'p') ADVANCE(35); END_STATE(); case 19: - if (lookahead == 'n') ADVANCE(32); + ACCEPT_TOKEN(anon_sym_fi); END_STATE(); case 20: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'r') ADVANCE(36); END_STATE(); case 21: - if (lookahead == 'c') ADVANCE(33); + if (lookahead == 'n') ADVANCE(37); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(34); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 23: - if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'c') ADVANCE(38); END_STATE(); case 24: - if (lookahead == 'p') ADVANCE(36); + if (lookahead == 'a') ADVANCE(39); END_STATE(); case 25: - if (lookahead == 's') ADVANCE(37); - if (lookahead == 't') ADVANCE(38); + if (lookahead == 'l') ADVANCE(40); END_STATE(); case 26: - if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'e') ADVANCE(41); END_STATE(); case 27: - if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'p') ADVANCE(42); END_STATE(); case 28: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == 's') ADVANCE(43); + if (lookahead == 't') ADVANCE(44); END_STATE(); case 29: - if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'i') ADVANCE(45); END_STATE(); case 30: - if (lookahead == 'o') ADVANCE(43); + if (lookahead == 'e') ADVANCE(46); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'l') ADVANCE(47); END_STATE(); case 32: - if (lookahead == 'c') ADVANCE(44); + if (lookahead == 'e') ADVANCE(48); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'f') ADVANCE(49); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(46); + if (lookahead == 'e') ADVANCE(50); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'o') ADVANCE(51); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(48); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'c') ADVANCE(52); END_STATE(); case 38: - if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'a') ADVANCE(53); END_STATE(); case 39: - if (lookahead == 'l') ADVANCE(51); + if (lookahead == 'd') ADVANCE(54); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'e') ADVANCE(55); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'n') ADVANCE(56); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_done); + if (lookahead == 'e') ADVANCE(57); END_STATE(); case 43: - if (lookahead == 'r') ADVANCE(53); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(54); + if (lookahead == 'i') ADVANCE(59); END_STATE(); case 45: - if (lookahead == 'l') ADVANCE(55); + if (lookahead == 'l') ADVANCE(60); END_STATE(); case 46: - if (lookahead == 'o') ADVANCE(56); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 47: - if (lookahead == 'c') ADVANCE(57); + if (lookahead == 'a') ADVANCE(61); END_STATE(); case 48: - if (lookahead == 's') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_done); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(59); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 50: - if (lookahead == 'l') ADVANCE(60); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'r') ADVANCE(62); END_STATE(); case 52: - if (lookahead == 'r') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 'l') ADVANCE(64); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(64); + if (lookahead == 'o') ADVANCE(65); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_local); + if (lookahead == 'c') ADVANCE(66); END_STATE(); case 56: - if (lookahead == 'n') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 57: - if (lookahead == 't') ADVANCE(66); + if (lookahead == 's') ADVANCE(67); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 't') ADVANCE(68); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'l') ADVANCE(69); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_until); + if (lookahead == 'e') ADVANCE(70); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(69); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'i') ADVANCE(73); END_STATE(); case 64: - if (lookahead == 'o') ADVANCE(70); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 65: - if (lookahead == 'l') ADVANCE(71); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_select); + if (lookahead == 't') ADVANCE(75); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 68: - if (lookahead == 'n') ADVANCE(73); + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_declare); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 71: - if (lookahead == 'y') ADVANCE(75); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_typeset); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 73: - if (lookahead == 'v') ADVANCE(76); + if (lookahead == 'o') ADVANCE(79); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'l') ADVANCE(80); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_unsetenv); + if (lookahead == 't') ADVANCE(81); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 198, .external_lex_state = 2}, - [2] = {.lex_state = 81, .external_lex_state = 2}, - [3] = {.lex_state = 81, .external_lex_state = 2}, - [4] = {.lex_state = 81, .external_lex_state = 2}, - [5] = {.lex_state = 81, .external_lex_state = 2}, - [6] = {.lex_state = 81, .external_lex_state = 2}, - [7] = {.lex_state = 81, .external_lex_state = 2}, - [8] = {.lex_state = 80, .external_lex_state = 2}, - [9] = {.lex_state = 80, .external_lex_state = 2}, - [10] = {.lex_state = 80, .external_lex_state = 2}, - [11] = {.lex_state = 80, .external_lex_state = 2}, - [12] = {.lex_state = 80, .external_lex_state = 2}, - [13] = {.lex_state = 80, .external_lex_state = 2}, - [14] = {.lex_state = 80, .external_lex_state = 2}, - [15] = {.lex_state = 80, .external_lex_state = 2}, - [16] = {.lex_state = 80, .external_lex_state = 2}, - [17] = {.lex_state = 80, .external_lex_state = 2}, - [18] = {.lex_state = 198, .external_lex_state = 2}, - [19] = {.lex_state = 198, .external_lex_state = 2}, - [20] = {.lex_state = 198, .external_lex_state = 2}, - [21] = {.lex_state = 198, .external_lex_state = 2}, - [22] = {.lex_state = 198, .external_lex_state = 2}, - [23] = {.lex_state = 198, .external_lex_state = 2}, - [24] = {.lex_state = 198, .external_lex_state = 2}, - [25] = {.lex_state = 198, .external_lex_state = 2}, - [26] = {.lex_state = 198, .external_lex_state = 2}, - [27] = {.lex_state = 198, .external_lex_state = 2}, - [28] = {.lex_state = 81, .external_lex_state = 2}, - [29] = {.lex_state = 81, .external_lex_state = 2}, - [30] = {.lex_state = 81, .external_lex_state = 2}, - [31] = {.lex_state = 198, .external_lex_state = 2}, - [32] = {.lex_state = 198, .external_lex_state = 2}, - [33] = {.lex_state = 198, .external_lex_state = 2}, - [34] = {.lex_state = 198, .external_lex_state = 2}, - [35] = {.lex_state = 82, .external_lex_state = 2}, - [36] = {.lex_state = 198, .external_lex_state = 2}, - [37] = {.lex_state = 198, .external_lex_state = 2}, - [38] = {.lex_state = 198, .external_lex_state = 2}, - [39] = {.lex_state = 198, .external_lex_state = 2}, - [40] = {.lex_state = 198, .external_lex_state = 2}, - [41] = {.lex_state = 198, .external_lex_state = 2}, - [42] = {.lex_state = 198, .external_lex_state = 2}, - [43] = {.lex_state = 198, .external_lex_state = 2}, - [44] = {.lex_state = 198, .external_lex_state = 2}, - [45] = {.lex_state = 198, .external_lex_state = 2}, - [46] = {.lex_state = 83, .external_lex_state = 3}, - [47] = {.lex_state = 198, .external_lex_state = 2}, - [48] = {.lex_state = 198, .external_lex_state = 2}, - [49] = {.lex_state = 198, .external_lex_state = 2}, - [50] = {.lex_state = 198, .external_lex_state = 2}, - [51] = {.lex_state = 198, .external_lex_state = 2}, - [52] = {.lex_state = 198, .external_lex_state = 2}, - [53] = {.lex_state = 198, .external_lex_state = 2}, - [54] = {.lex_state = 198, .external_lex_state = 2}, - [55] = {.lex_state = 198, .external_lex_state = 2}, - [56] = {.lex_state = 198, .external_lex_state = 2}, - [57] = {.lex_state = 198, .external_lex_state = 2}, - [58] = {.lex_state = 198, .external_lex_state = 2}, - [59] = {.lex_state = 198, .external_lex_state = 2}, - [60] = {.lex_state = 198, .external_lex_state = 2}, - [61] = {.lex_state = 198, .external_lex_state = 2}, - [62] = {.lex_state = 198, .external_lex_state = 2}, - [63] = {.lex_state = 198, .external_lex_state = 2}, - [64] = {.lex_state = 198, .external_lex_state = 2}, - [65] = {.lex_state = 198, .external_lex_state = 2}, - [66] = {.lex_state = 198, .external_lex_state = 2}, - [67] = {.lex_state = 198, .external_lex_state = 2}, - [68] = {.lex_state = 83, .external_lex_state = 3}, - [69] = {.lex_state = 198, .external_lex_state = 2}, - [70] = {.lex_state = 198, .external_lex_state = 2}, - [71] = {.lex_state = 198, .external_lex_state = 2}, - [72] = {.lex_state = 198, .external_lex_state = 2}, - [73] = {.lex_state = 198, .external_lex_state = 2}, - [74] = {.lex_state = 198, .external_lex_state = 2}, - [75] = {.lex_state = 198, .external_lex_state = 2}, - [76] = {.lex_state = 198, .external_lex_state = 2}, - [77] = {.lex_state = 83, .external_lex_state = 3}, - [78] = {.lex_state = 198, .external_lex_state = 2}, - [79] = {.lex_state = 198, .external_lex_state = 2}, - [80] = {.lex_state = 198, .external_lex_state = 2}, - [81] = {.lex_state = 198, .external_lex_state = 2}, - [82] = {.lex_state = 198, .external_lex_state = 2}, - [83] = {.lex_state = 198, .external_lex_state = 2}, - [84] = {.lex_state = 198, .external_lex_state = 2}, - [85] = {.lex_state = 198, .external_lex_state = 2}, - [86] = {.lex_state = 198, .external_lex_state = 2}, - [87] = {.lex_state = 198, .external_lex_state = 2}, - [88] = {.lex_state = 198, .external_lex_state = 2}, - [89] = {.lex_state = 198, .external_lex_state = 2}, - [90] = {.lex_state = 198, .external_lex_state = 2}, - [91] = {.lex_state = 198, .external_lex_state = 2}, - [92] = {.lex_state = 198, .external_lex_state = 2}, - [93] = {.lex_state = 198, .external_lex_state = 2}, - [94] = {.lex_state = 198, .external_lex_state = 2}, - [95] = {.lex_state = 198, .external_lex_state = 2}, - [96] = {.lex_state = 198, .external_lex_state = 2}, - [97] = {.lex_state = 198, .external_lex_state = 2}, - [98] = {.lex_state = 198, .external_lex_state = 2}, - [99] = {.lex_state = 198, .external_lex_state = 2}, - [100] = {.lex_state = 198, .external_lex_state = 2}, - [101] = {.lex_state = 198, .external_lex_state = 2}, - [102] = {.lex_state = 198, .external_lex_state = 2}, - [103] = {.lex_state = 198, .external_lex_state = 2}, - [104] = {.lex_state = 83, .external_lex_state = 3}, - [105] = {.lex_state = 82, .external_lex_state = 2}, - [106] = {.lex_state = 198, .external_lex_state = 2}, - [107] = {.lex_state = 198, .external_lex_state = 2}, - [108] = {.lex_state = 83, .external_lex_state = 3}, - [109] = {.lex_state = 198, .external_lex_state = 2}, - [110] = {.lex_state = 198, .external_lex_state = 2}, - [111] = {.lex_state = 198, .external_lex_state = 2}, - [112] = {.lex_state = 82, .external_lex_state = 2}, - [113] = {.lex_state = 198, .external_lex_state = 2}, - [114] = {.lex_state = 198, .external_lex_state = 2}, - [115] = {.lex_state = 198, .external_lex_state = 2}, - [116] = {.lex_state = 198, .external_lex_state = 2}, - [117] = {.lex_state = 198, .external_lex_state = 2}, - [118] = {.lex_state = 198, .external_lex_state = 2}, - [119] = {.lex_state = 198, .external_lex_state = 2}, - [120] = {.lex_state = 198, .external_lex_state = 2}, - [121] = {.lex_state = 198, .external_lex_state = 2}, - [122] = {.lex_state = 198, .external_lex_state = 2}, - [123] = {.lex_state = 198, .external_lex_state = 2}, - [124] = {.lex_state = 198, .external_lex_state = 2}, - [125] = {.lex_state = 198, .external_lex_state = 2}, - [126] = {.lex_state = 198, .external_lex_state = 2}, - [127] = {.lex_state = 198, .external_lex_state = 2}, - [128] = {.lex_state = 198, .external_lex_state = 2}, - [129] = {.lex_state = 198, .external_lex_state = 2}, - [130] = {.lex_state = 198, .external_lex_state = 2}, - [131] = {.lex_state = 198, .external_lex_state = 2}, - [132] = {.lex_state = 198, .external_lex_state = 2}, - [133] = {.lex_state = 83, .external_lex_state = 3}, - [134] = {.lex_state = 198, .external_lex_state = 2}, - [135] = {.lex_state = 198, .external_lex_state = 2}, - [136] = {.lex_state = 198, .external_lex_state = 2}, - [137] = {.lex_state = 198, .external_lex_state = 2}, - [138] = {.lex_state = 198, .external_lex_state = 2}, - [139] = {.lex_state = 198, .external_lex_state = 2}, - [140] = {.lex_state = 198, .external_lex_state = 2}, - [141] = {.lex_state = 198, .external_lex_state = 2}, - [142] = {.lex_state = 198, .external_lex_state = 2}, - [143] = {.lex_state = 83, .external_lex_state = 3}, - [144] = {.lex_state = 198, .external_lex_state = 2}, - [145] = {.lex_state = 198, .external_lex_state = 2}, - [146] = {.lex_state = 198, .external_lex_state = 2}, - [147] = {.lex_state = 198, .external_lex_state = 2}, - [148] = {.lex_state = 198, .external_lex_state = 2}, - [149] = {.lex_state = 198, .external_lex_state = 2}, - [150] = {.lex_state = 198, .external_lex_state = 2}, - [151] = {.lex_state = 198, .external_lex_state = 2}, - [152] = {.lex_state = 198, .external_lex_state = 2}, - [153] = {.lex_state = 198, .external_lex_state = 2}, - [154] = {.lex_state = 198, .external_lex_state = 2}, - [155] = {.lex_state = 198, .external_lex_state = 2}, - [156] = {.lex_state = 198, .external_lex_state = 2}, - [157] = {.lex_state = 198, .external_lex_state = 2}, - [158] = {.lex_state = 198, .external_lex_state = 2}, - [159] = {.lex_state = 198, .external_lex_state = 2}, - [160] = {.lex_state = 198, .external_lex_state = 2}, - [161] = {.lex_state = 198, .external_lex_state = 2}, - [162] = {.lex_state = 198, .external_lex_state = 2}, - [163] = {.lex_state = 198, .external_lex_state = 2}, - [164] = {.lex_state = 198, .external_lex_state = 2}, - [165] = {.lex_state = 198, .external_lex_state = 2}, - [166] = {.lex_state = 198, .external_lex_state = 2}, - [167] = {.lex_state = 198, .external_lex_state = 2}, - [168] = {.lex_state = 80, .external_lex_state = 4}, - [169] = {.lex_state = 80, .external_lex_state = 4}, - [170] = {.lex_state = 198, .external_lex_state = 4}, - [171] = {.lex_state = 8, .external_lex_state = 5}, - [172] = {.lex_state = 8, .external_lex_state = 5}, - [173] = {.lex_state = 198, .external_lex_state = 4}, - [174] = {.lex_state = 81, .external_lex_state = 4}, - [175] = {.lex_state = 8, .external_lex_state = 5}, - [176] = {.lex_state = 60, .external_lex_state = 5}, - [177] = {.lex_state = 61, .external_lex_state = 6}, - [178] = {.lex_state = 60, .external_lex_state = 5}, - [179] = {.lex_state = 60, .external_lex_state = 5}, - [180] = {.lex_state = 62, .external_lex_state = 6}, - [181] = {.lex_state = 82, .external_lex_state = 4}, - [182] = {.lex_state = 80, .external_lex_state = 2}, - [183] = {.lex_state = 80, .external_lex_state = 2}, - [184] = {.lex_state = 193, .external_lex_state = 5}, - [185] = {.lex_state = 198, .external_lex_state = 4}, - [186] = {.lex_state = 193, .external_lex_state = 5}, - [187] = {.lex_state = 64, .external_lex_state = 6}, - [188] = {.lex_state = 193, .external_lex_state = 5}, - [189] = {.lex_state = 83, .external_lex_state = 7}, - [190] = {.lex_state = 193, .external_lex_state = 5}, - [191] = {.lex_state = 62, .external_lex_state = 6}, - [192] = {.lex_state = 198, .external_lex_state = 4}, - [193] = {.lex_state = 198, .external_lex_state = 2}, - [194] = {.lex_state = 198, .external_lex_state = 2}, - [195] = {.lex_state = 65, .external_lex_state = 5}, - [196] = {.lex_state = 80, .external_lex_state = 2}, - [197] = {.lex_state = 198, .external_lex_state = 2}, - [198] = {.lex_state = 62, .external_lex_state = 6}, - [199] = {.lex_state = 198, .external_lex_state = 4}, - [200] = {.lex_state = 62, .external_lex_state = 6}, - [201] = {.lex_state = 193, .external_lex_state = 5}, - [202] = {.lex_state = 62, .external_lex_state = 6}, - [203] = {.lex_state = 65, .external_lex_state = 5}, - [204] = {.lex_state = 198, .external_lex_state = 4}, - [205] = {.lex_state = 198, .external_lex_state = 4}, - [206] = {.lex_state = 198, .external_lex_state = 2}, - [207] = {.lex_state = 193, .external_lex_state = 5}, - [208] = {.lex_state = 80, .external_lex_state = 2}, - [209] = {.lex_state = 66, .external_lex_state = 5}, - [210] = {.lex_state = 8, .external_lex_state = 6}, - [211] = {.lex_state = 66, .external_lex_state = 5}, - [212] = {.lex_state = 198, .external_lex_state = 4}, - [213] = {.lex_state = 67, .external_lex_state = 6}, - [214] = {.lex_state = 8, .external_lex_state = 6}, - [215] = {.lex_state = 81, .external_lex_state = 2}, - [216] = {.lex_state = 81, .external_lex_state = 2}, - [217] = {.lex_state = 67, .external_lex_state = 6}, - [218] = {.lex_state = 67, .external_lex_state = 6}, - [219] = {.lex_state = 67, .external_lex_state = 6}, - [220] = {.lex_state = 8, .external_lex_state = 6}, - [221] = {.lex_state = 193, .external_lex_state = 5}, - [222] = {.lex_state = 65, .external_lex_state = 6}, - [223] = {.lex_state = 198, .external_lex_state = 4}, - [224] = {.lex_state = 194, .external_lex_state = 6}, - [225] = {.lex_state = 193, .external_lex_state = 5}, - [226] = {.lex_state = 67, .external_lex_state = 6}, - [227] = {.lex_state = 194, .external_lex_state = 6}, - [228] = {.lex_state = 198, .external_lex_state = 4}, - [229] = {.lex_state = 195, .external_lex_state = 6}, - [230] = {.lex_state = 195, .external_lex_state = 6}, - [231] = {.lex_state = 195, .external_lex_state = 6}, - [232] = {.lex_state = 196, .external_lex_state = 5}, - [233] = {.lex_state = 195, .external_lex_state = 6}, - [234] = {.lex_state = 196, .external_lex_state = 5}, - [235] = {.lex_state = 195, .external_lex_state = 6}, - [236] = {.lex_state = 196, .external_lex_state = 5}, - [237] = {.lex_state = 66, .external_lex_state = 6}, - [238] = {.lex_state = 195, .external_lex_state = 6}, - [239] = {.lex_state = 60, .external_lex_state = 6}, - [240] = {.lex_state = 195, .external_lex_state = 6}, - [241] = {.lex_state = 195, .external_lex_state = 6}, - [242] = {.lex_state = 60, .external_lex_state = 6}, - [243] = {.lex_state = 195, .external_lex_state = 6}, - [244] = {.lex_state = 195, .external_lex_state = 6}, - [245] = {.lex_state = 60, .external_lex_state = 6}, - [246] = {.lex_state = 196, .external_lex_state = 5}, - [247] = {.lex_state = 82, .external_lex_state = 2}, - [248] = {.lex_state = 82, .external_lex_state = 2}, - [249] = {.lex_state = 195, .external_lex_state = 6}, - [250] = {.lex_state = 198, .external_lex_state = 2}, - [251] = {.lex_state = 196, .external_lex_state = 6}, - [252] = {.lex_state = 198, .external_lex_state = 2}, - [253] = {.lex_state = 195, .external_lex_state = 6}, - [254] = {.lex_state = 83, .external_lex_state = 3}, - [255] = {.lex_state = 198, .external_lex_state = 2}, - [256] = {.lex_state = 193, .external_lex_state = 6}, - [257] = {.lex_state = 198, .external_lex_state = 2}, - [258] = {.lex_state = 193, .external_lex_state = 6}, - [259] = {.lex_state = 198, .external_lex_state = 2}, - [260] = {.lex_state = 195, .external_lex_state = 6}, - [261] = {.lex_state = 193, .external_lex_state = 6}, - [262] = {.lex_state = 193, .external_lex_state = 6}, - [263] = {.lex_state = 198, .external_lex_state = 2}, - [264] = {.lex_state = 193, .external_lex_state = 6}, - [265] = {.lex_state = 193, .external_lex_state = 6}, - [266] = {.lex_state = 196, .external_lex_state = 6}, - [267] = {.lex_state = 195, .external_lex_state = 6}, - [268] = {.lex_state = 83, .external_lex_state = 3}, - [269] = {.lex_state = 198, .external_lex_state = 2}, - [270] = {.lex_state = 198, .external_lex_state = 2}, - [271] = {.lex_state = 95, .external_lex_state = 2}, - [272] = {.lex_state = 95, .external_lex_state = 2}, - [273] = {.lex_state = 95, .external_lex_state = 2}, - [274] = {.lex_state = 193, .external_lex_state = 6}, - [275] = {.lex_state = 198, .external_lex_state = 2}, - [276] = {.lex_state = 193, .external_lex_state = 6}, - [277] = {.lex_state = 198, .external_lex_state = 2}, - [278] = {.lex_state = 198, .external_lex_state = 2}, - [279] = {.lex_state = 95, .external_lex_state = 2}, - [280] = {.lex_state = 198, .external_lex_state = 2}, - [281] = {.lex_state = 95, .external_lex_state = 2}, - [282] = {.lex_state = 71, .external_lex_state = 5}, - [283] = {.lex_state = 71, .external_lex_state = 5}, - [284] = {.lex_state = 71, .external_lex_state = 5}, - [285] = {.lex_state = 62, .external_lex_state = 8}, - [286] = {.lex_state = 71, .external_lex_state = 5}, - [287] = {.lex_state = 72, .external_lex_state = 5}, - [288] = {.lex_state = 8, .external_lex_state = 9}, - [289] = {.lex_state = 72, .external_lex_state = 5}, - [290] = {.lex_state = 72, .external_lex_state = 5}, - [291] = {.lex_state = 67, .external_lex_state = 8}, - [292] = {.lex_state = 8, .external_lex_state = 9}, - [293] = {.lex_state = 62, .external_lex_state = 8}, - [294] = {.lex_state = 8, .external_lex_state = 9}, - [295] = {.lex_state = 72, .external_lex_state = 5}, - [296] = {.lex_state = 62, .external_lex_state = 8}, - [297] = {.lex_state = 62, .external_lex_state = 8}, - [298] = {.lex_state = 8, .external_lex_state = 9}, - [299] = {.lex_state = 62, .external_lex_state = 8}, - [300] = {.lex_state = 62, .external_lex_state = 8}, - [301] = {.lex_state = 8, .external_lex_state = 9}, - [302] = {.lex_state = 62, .external_lex_state = 8}, - [303] = {.lex_state = 67, .external_lex_state = 8}, - [304] = {.lex_state = 8, .external_lex_state = 9}, - [305] = {.lex_state = 62, .external_lex_state = 8}, - [306] = {.lex_state = 8, .external_lex_state = 9}, - [307] = {.lex_state = 8, .external_lex_state = 9}, - [308] = {.lex_state = 62, .external_lex_state = 8}, - [309] = {.lex_state = 62, .external_lex_state = 8}, - [310] = {.lex_state = 62, .external_lex_state = 8}, - [311] = {.lex_state = 8, .external_lex_state = 9}, - [312] = {.lex_state = 62, .external_lex_state = 8}, - [313] = {.lex_state = 62, .external_lex_state = 8}, - [314] = {.lex_state = 62, .external_lex_state = 6}, - [315] = {.lex_state = 8, .external_lex_state = 9}, - [316] = {.lex_state = 195, .external_lex_state = 8}, - [317] = {.lex_state = 8, .external_lex_state = 9}, - [318] = {.lex_state = 197, .external_lex_state = 5}, - [319] = {.lex_state = 60, .external_lex_state = 9}, - [320] = {.lex_state = 62, .external_lex_state = 8}, - [321] = {.lex_state = 62, .external_lex_state = 8}, - [322] = {.lex_state = 60, .external_lex_state = 9}, - [323] = {.lex_state = 8, .external_lex_state = 9}, - [324] = {.lex_state = 60, .external_lex_state = 9}, - [325] = {.lex_state = 8, .external_lex_state = 8}, - [326] = {.lex_state = 62, .external_lex_state = 8}, - [327] = {.lex_state = 62, .external_lex_state = 6}, - [328] = {.lex_state = 8, .external_lex_state = 8}, - [329] = {.lex_state = 62, .external_lex_state = 8}, - [330] = {.lex_state = 62, .external_lex_state = 8}, - [331] = {.lex_state = 62, .external_lex_state = 8}, - [332] = {.lex_state = 62, .external_lex_state = 8}, - [333] = {.lex_state = 60, .external_lex_state = 9}, - [334] = {.lex_state = 8, .external_lex_state = 5}, - [335] = {.lex_state = 62, .external_lex_state = 8}, - [336] = {.lex_state = 62, .external_lex_state = 8}, - [337] = {.lex_state = 62, .external_lex_state = 6}, - [338] = {.lex_state = 62, .external_lex_state = 8}, - [339] = {.lex_state = 62, .external_lex_state = 8}, - [340] = {.lex_state = 62, .external_lex_state = 8}, - [341] = {.lex_state = 197, .external_lex_state = 5}, - [342] = {.lex_state = 62, .external_lex_state = 8}, - [343] = {.lex_state = 62, .external_lex_state = 8}, - [344] = {.lex_state = 62, .external_lex_state = 8}, - [345] = {.lex_state = 62, .external_lex_state = 8}, - [346] = {.lex_state = 62, .external_lex_state = 8}, - [347] = {.lex_state = 62, .external_lex_state = 8}, - [348] = {.lex_state = 8, .external_lex_state = 5}, - [349] = {.lex_state = 62, .external_lex_state = 8}, - [350] = {.lex_state = 62, .external_lex_state = 8}, - [351] = {.lex_state = 197, .external_lex_state = 5}, - [352] = {.lex_state = 8, .external_lex_state = 9}, - [353] = {.lex_state = 67, .external_lex_state = 8}, - [354] = {.lex_state = 8, .external_lex_state = 9}, - [355] = {.lex_state = 71, .external_lex_state = 9}, - [356] = {.lex_state = 197, .external_lex_state = 5}, - [357] = {.lex_state = 8, .external_lex_state = 9}, - [358] = {.lex_state = 71, .external_lex_state = 9}, - [359] = {.lex_state = 67, .external_lex_state = 8}, - [360] = {.lex_state = 197, .external_lex_state = 5}, - [361] = {.lex_state = 8, .external_lex_state = 5}, - [362] = {.lex_state = 71, .external_lex_state = 9}, - [363] = {.lex_state = 8, .external_lex_state = 9}, - [364] = {.lex_state = 67, .external_lex_state = 8}, - [365] = {.lex_state = 71, .external_lex_state = 9}, - [366] = {.lex_state = 8, .external_lex_state = 9}, - [367] = {.lex_state = 197, .external_lex_state = 5}, - [368] = {.lex_state = 8, .external_lex_state = 9}, - [369] = {.lex_state = 8, .external_lex_state = 9}, - [370] = {.lex_state = 62, .external_lex_state = 6}, - [371] = {.lex_state = 8, .external_lex_state = 9}, - [372] = {.lex_state = 8, .external_lex_state = 9}, - [373] = {.lex_state = 67, .external_lex_state = 8}, - [374] = {.lex_state = 8, .external_lex_state = 9}, - [375] = {.lex_state = 195, .external_lex_state = 8}, - [376] = {.lex_state = 8, .external_lex_state = 9}, - [377] = {.lex_state = 8, .external_lex_state = 8}, - [378] = {.lex_state = 8, .external_lex_state = 9}, - [379] = {.lex_state = 60, .external_lex_state = 9}, - [380] = {.lex_state = 67, .external_lex_state = 8}, - [381] = {.lex_state = 8, .external_lex_state = 9}, - [382] = {.lex_state = 197, .external_lex_state = 5}, - [383] = {.lex_state = 8, .external_lex_state = 9}, - [384] = {.lex_state = 8, .external_lex_state = 9}, - [385] = {.lex_state = 197, .external_lex_state = 5}, - [386] = {.lex_state = 8, .external_lex_state = 8}, - [387] = {.lex_state = 8, .external_lex_state = 9}, - [388] = {.lex_state = 8, .external_lex_state = 9}, - [389] = {.lex_state = 8, .external_lex_state = 9}, - [390] = {.lex_state = 8, .external_lex_state = 9}, - [391] = {.lex_state = 8, .external_lex_state = 8}, - [392] = {.lex_state = 60, .external_lex_state = 9}, - [393] = {.lex_state = 8, .external_lex_state = 8}, - [394] = {.lex_state = 8, .external_lex_state = 8}, - [395] = {.lex_state = 8, .external_lex_state = 8}, - [396] = {.lex_state = 8, .external_lex_state = 8}, - [397] = {.lex_state = 195, .external_lex_state = 8}, - [398] = {.lex_state = 197, .external_lex_state = 5}, - [399] = {.lex_state = 8, .external_lex_state = 6}, - [400] = {.lex_state = 195, .external_lex_state = 8}, - [401] = {.lex_state = 8, .external_lex_state = 8}, - [402] = {.lex_state = 8, .external_lex_state = 8}, - [403] = {.lex_state = 8, .external_lex_state = 8}, - [404] = {.lex_state = 67, .external_lex_state = 8}, - [405] = {.lex_state = 8, .external_lex_state = 8}, - [406] = {.lex_state = 8, .external_lex_state = 8}, - [407] = {.lex_state = 197, .external_lex_state = 5}, - [408] = {.lex_state = 8, .external_lex_state = 8}, - [409] = {.lex_state = 8, .external_lex_state = 8}, - [410] = {.lex_state = 8, .external_lex_state = 8}, - [411] = {.lex_state = 8, .external_lex_state = 8}, - [412] = {.lex_state = 71, .external_lex_state = 9}, - [413] = {.lex_state = 8, .external_lex_state = 8}, - [414] = {.lex_state = 71, .external_lex_state = 9}, - [415] = {.lex_state = 8, .external_lex_state = 8}, - [416] = {.lex_state = 8, .external_lex_state = 8}, - [417] = {.lex_state = 8, .external_lex_state = 8}, - [418] = {.lex_state = 8, .external_lex_state = 8}, - [419] = {.lex_state = 71, .external_lex_state = 9}, - [420] = {.lex_state = 71, .external_lex_state = 9}, - [421] = {.lex_state = 71, .external_lex_state = 9}, - [422] = {.lex_state = 71, .external_lex_state = 9}, - [423] = {.lex_state = 67, .external_lex_state = 8}, - [424] = {.lex_state = 8, .external_lex_state = 5}, - [425] = {.lex_state = 67, .external_lex_state = 8}, - [426] = {.lex_state = 71, .external_lex_state = 9}, - [427] = {.lex_state = 71, .external_lex_state = 9}, - [428] = {.lex_state = 197, .external_lex_state = 5}, - [429] = {.lex_state = 71, .external_lex_state = 9}, - [430] = {.lex_state = 71, .external_lex_state = 5}, - [431] = {.lex_state = 67, .external_lex_state = 8}, - [432] = {.lex_state = 67, .external_lex_state = 8}, - [433] = {.lex_state = 71, .external_lex_state = 9}, - [434] = {.lex_state = 71, .external_lex_state = 9}, - [435] = {.lex_state = 71, .external_lex_state = 9}, - [436] = {.lex_state = 193, .external_lex_state = 9}, - [437] = {.lex_state = 71, .external_lex_state = 9}, - [438] = {.lex_state = 67, .external_lex_state = 8}, - [439] = {.lex_state = 197, .external_lex_state = 5}, - [440] = {.lex_state = 62, .external_lex_state = 6}, - [441] = {.lex_state = 195, .external_lex_state = 8}, - [442] = {.lex_state = 67, .external_lex_state = 8}, - [443] = {.lex_state = 71, .external_lex_state = 9}, - [444] = {.lex_state = 71, .external_lex_state = 9}, - [445] = {.lex_state = 71, .external_lex_state = 9}, - [446] = {.lex_state = 8, .external_lex_state = 8}, - [447] = {.lex_state = 71, .external_lex_state = 9}, - [448] = {.lex_state = 8, .external_lex_state = 8}, - [449] = {.lex_state = 71, .external_lex_state = 9}, - [450] = {.lex_state = 71, .external_lex_state = 9}, - [451] = {.lex_state = 71, .external_lex_state = 9}, - [452] = {.lex_state = 71, .external_lex_state = 9}, - [453] = {.lex_state = 8, .external_lex_state = 8}, - [454] = {.lex_state = 71, .external_lex_state = 9}, - [455] = {.lex_state = 8, .external_lex_state = 8}, - [456] = {.lex_state = 71, .external_lex_state = 9}, - [457] = {.lex_state = 62, .external_lex_state = 6}, - [458] = {.lex_state = 71, .external_lex_state = 9}, - [459] = {.lex_state = 8, .external_lex_state = 8}, - [460] = {.lex_state = 71, .external_lex_state = 9}, - [461] = {.lex_state = 8, .external_lex_state = 8}, - [462] = {.lex_state = 71, .external_lex_state = 9}, - [463] = {.lex_state = 60, .external_lex_state = 9}, - [464] = {.lex_state = 60, .external_lex_state = 9}, - [465] = {.lex_state = 60, .external_lex_state = 9}, - [466] = {.lex_state = 60, .external_lex_state = 9}, - [467] = {.lex_state = 60, .external_lex_state = 9}, - [468] = {.lex_state = 197, .external_lex_state = 5}, - [469] = {.lex_state = 60, .external_lex_state = 9}, - [470] = {.lex_state = 67, .external_lex_state = 8}, - [471] = {.lex_state = 67, .external_lex_state = 8}, - [472] = {.lex_state = 195, .external_lex_state = 8}, - [473] = {.lex_state = 60, .external_lex_state = 8}, - [474] = {.lex_state = 62, .external_lex_state = 6}, - [475] = {.lex_state = 67, .external_lex_state = 8}, - [476] = {.lex_state = 197, .external_lex_state = 5}, - [477] = {.lex_state = 195, .external_lex_state = 8}, - [478] = {.lex_state = 67, .external_lex_state = 6}, - [479] = {.lex_state = 195, .external_lex_state = 8}, - [480] = {.lex_state = 60, .external_lex_state = 8}, - [481] = {.lex_state = 197, .external_lex_state = 5}, - [482] = {.lex_state = 195, .external_lex_state = 8}, - [483] = {.lex_state = 67, .external_lex_state = 8}, - [484] = {.lex_state = 67, .external_lex_state = 8}, - [485] = {.lex_state = 67, .external_lex_state = 8}, - [486] = {.lex_state = 8, .external_lex_state = 6}, - [487] = {.lex_state = 197, .external_lex_state = 5}, - [488] = {.lex_state = 62, .external_lex_state = 6}, - [489] = {.lex_state = 197, .external_lex_state = 5}, - [490] = {.lex_state = 67, .external_lex_state = 8}, - [491] = {.lex_state = 195, .external_lex_state = 8}, - [492] = {.lex_state = 195, .external_lex_state = 8}, - [493] = {.lex_state = 67, .external_lex_state = 6}, - [494] = {.lex_state = 197, .external_lex_state = 5}, - [495] = {.lex_state = 60, .external_lex_state = 5}, - [496] = {.lex_state = 193, .external_lex_state = 9}, - [497] = {.lex_state = 60, .external_lex_state = 8}, - [498] = {.lex_state = 67, .external_lex_state = 6}, - [499] = {.lex_state = 72, .external_lex_state = 9}, - [500] = {.lex_state = 193, .external_lex_state = 9}, - [501] = {.lex_state = 67, .external_lex_state = 6}, - [502] = {.lex_state = 60, .external_lex_state = 8}, - [503] = {.lex_state = 60, .external_lex_state = 9}, - [504] = {.lex_state = 60, .external_lex_state = 9}, - [505] = {.lex_state = 60, .external_lex_state = 9}, - [506] = {.lex_state = 60, .external_lex_state = 9}, - [507] = {.lex_state = 60, .external_lex_state = 9}, - [508] = {.lex_state = 193, .external_lex_state = 9}, - [509] = {.lex_state = 60, .external_lex_state = 9}, - [510] = {.lex_state = 67, .external_lex_state = 8}, - [511] = {.lex_state = 60, .external_lex_state = 9}, - [512] = {.lex_state = 60, .external_lex_state = 9}, - [513] = {.lex_state = 60, .external_lex_state = 9}, - [514] = {.lex_state = 193, .external_lex_state = 9}, - [515] = {.lex_state = 60, .external_lex_state = 9}, - [516] = {.lex_state = 67, .external_lex_state = 8}, - [517] = {.lex_state = 67, .external_lex_state = 8}, - [518] = {.lex_state = 71, .external_lex_state = 5}, - [519] = {.lex_state = 195, .external_lex_state = 8}, - [520] = {.lex_state = 67, .external_lex_state = 8}, - [521] = {.lex_state = 60, .external_lex_state = 9}, - [522] = {.lex_state = 67, .external_lex_state = 8}, - [523] = {.lex_state = 67, .external_lex_state = 8}, - [524] = {.lex_state = 60, .external_lex_state = 9}, - [525] = {.lex_state = 67, .external_lex_state = 8}, - [526] = {.lex_state = 193, .external_lex_state = 9}, - [527] = {.lex_state = 193, .external_lex_state = 9}, - [528] = {.lex_state = 67, .external_lex_state = 8}, - [529] = {.lex_state = 67, .external_lex_state = 8}, - [530] = {.lex_state = 193, .external_lex_state = 9}, - [531] = {.lex_state = 67, .external_lex_state = 8}, - [532] = {.lex_state = 60, .external_lex_state = 5}, - [533] = {.lex_state = 67, .external_lex_state = 8}, - [534] = {.lex_state = 67, .external_lex_state = 8}, - [535] = {.lex_state = 60, .external_lex_state = 9}, - [536] = {.lex_state = 60, .external_lex_state = 9}, - [537] = {.lex_state = 195, .external_lex_state = 8}, - [538] = {.lex_state = 72, .external_lex_state = 9}, - [539] = {.lex_state = 72, .external_lex_state = 9}, - [540] = {.lex_state = 8, .external_lex_state = 5}, - [541] = {.lex_state = 60, .external_lex_state = 9}, - [542] = {.lex_state = 8, .external_lex_state = 5}, - [543] = {.lex_state = 60, .external_lex_state = 5}, - [544] = {.lex_state = 8, .external_lex_state = 5}, - [545] = {.lex_state = 193, .external_lex_state = 9}, - [546] = {.lex_state = 8, .external_lex_state = 8}, - [547] = {.lex_state = 72, .external_lex_state = 9}, - [548] = {.lex_state = 60, .external_lex_state = 9}, - [549] = {.lex_state = 60, .external_lex_state = 9}, - [550] = {.lex_state = 60, .external_lex_state = 9}, - [551] = {.lex_state = 60, .external_lex_state = 9}, - [552] = {.lex_state = 193, .external_lex_state = 9}, - [553] = {.lex_state = 195, .external_lex_state = 8}, - [554] = {.lex_state = 193, .external_lex_state = 9}, - [555] = {.lex_state = 60, .external_lex_state = 8}, - [556] = {.lex_state = 72, .external_lex_state = 9}, - [557] = {.lex_state = 195, .external_lex_state = 6}, - [558] = {.lex_state = 193, .external_lex_state = 9}, - [559] = {.lex_state = 193, .external_lex_state = 9}, - [560] = {.lex_state = 72, .external_lex_state = 9}, - [561] = {.lex_state = 193, .external_lex_state = 8}, - [562] = {.lex_state = 193, .external_lex_state = 9}, - [563] = {.lex_state = 197, .external_lex_state = 9}, - [564] = {.lex_state = 193, .external_lex_state = 9}, - [565] = {.lex_state = 193, .external_lex_state = 8}, - [566] = {.lex_state = 60, .external_lex_state = 5}, - [567] = {.lex_state = 197, .external_lex_state = 9}, - [568] = {.lex_state = 60, .external_lex_state = 5}, - [569] = {.lex_state = 60, .external_lex_state = 5}, - [570] = {.lex_state = 193, .external_lex_state = 5}, - [571] = {.lex_state = 193, .external_lex_state = 8}, - [572] = {.lex_state = 197, .external_lex_state = 9}, - [573] = {.lex_state = 193, .external_lex_state = 9}, - [574] = {.lex_state = 193, .external_lex_state = 9}, - [575] = {.lex_state = 193, .external_lex_state = 9}, - [576] = {.lex_state = 193, .external_lex_state = 9}, - [577] = {.lex_state = 193, .external_lex_state = 9}, - [578] = {.lex_state = 72, .external_lex_state = 9}, - [579] = {.lex_state = 195, .external_lex_state = 6}, - [580] = {.lex_state = 72, .external_lex_state = 9}, - [581] = {.lex_state = 193, .external_lex_state = 9}, - [582] = {.lex_state = 195, .external_lex_state = 8}, - [583] = {.lex_state = 193, .external_lex_state = 9}, - [584] = {.lex_state = 193, .external_lex_state = 9}, - [585] = {.lex_state = 193, .external_lex_state = 9}, - [586] = {.lex_state = 193, .external_lex_state = 9}, - [587] = {.lex_state = 193, .external_lex_state = 9}, - [588] = {.lex_state = 71, .external_lex_state = 5}, - [589] = {.lex_state = 193, .external_lex_state = 9}, - [590] = {.lex_state = 193, .external_lex_state = 9}, - [591] = {.lex_state = 193, .external_lex_state = 9}, - [592] = {.lex_state = 193, .external_lex_state = 9}, - [593] = {.lex_state = 193, .external_lex_state = 5}, - [594] = {.lex_state = 71, .external_lex_state = 5}, - [595] = {.lex_state = 193, .external_lex_state = 8}, - [596] = {.lex_state = 193, .external_lex_state = 9}, - [597] = {.lex_state = 72, .external_lex_state = 9}, - [598] = {.lex_state = 193, .external_lex_state = 9}, - [599] = {.lex_state = 193, .external_lex_state = 9}, - [600] = {.lex_state = 193, .external_lex_state = 9}, - [601] = {.lex_state = 193, .external_lex_state = 9}, - [602] = {.lex_state = 193, .external_lex_state = 9}, - [603] = {.lex_state = 60, .external_lex_state = 5}, - [604] = {.lex_state = 197, .external_lex_state = 9}, - [605] = {.lex_state = 195, .external_lex_state = 6}, - [606] = {.lex_state = 72, .external_lex_state = 9}, - [607] = {.lex_state = 193, .external_lex_state = 9}, - [608] = {.lex_state = 193, .external_lex_state = 9}, - [609] = {.lex_state = 193, .external_lex_state = 9}, - [610] = {.lex_state = 193, .external_lex_state = 9}, - [611] = {.lex_state = 193, .external_lex_state = 8}, - [612] = {.lex_state = 193, .external_lex_state = 9}, - [613] = {.lex_state = 71, .external_lex_state = 5}, - [614] = {.lex_state = 193, .external_lex_state = 9}, - [615] = {.lex_state = 193, .external_lex_state = 9}, - [616] = {.lex_state = 193, .external_lex_state = 8}, - [617] = {.lex_state = 193, .external_lex_state = 9}, - [618] = {.lex_state = 193, .external_lex_state = 9}, - [619] = {.lex_state = 193, .external_lex_state = 9}, - [620] = {.lex_state = 193, .external_lex_state = 9}, - [621] = {.lex_state = 193, .external_lex_state = 9}, - [622] = {.lex_state = 193, .external_lex_state = 9}, - [623] = {.lex_state = 193, .external_lex_state = 9}, - [624] = {.lex_state = 193, .external_lex_state = 5}, - [625] = {.lex_state = 193, .external_lex_state = 9}, - [626] = {.lex_state = 195, .external_lex_state = 8}, - [627] = {.lex_state = 193, .external_lex_state = 9}, - [628] = {.lex_state = 195, .external_lex_state = 8}, - [629] = {.lex_state = 193, .external_lex_state = 9}, - [630] = {.lex_state = 193, .external_lex_state = 9}, - [631] = {.lex_state = 193, .external_lex_state = 9}, - [632] = {.lex_state = 195, .external_lex_state = 8}, - [633] = {.lex_state = 193, .external_lex_state = 9}, - [634] = {.lex_state = 60, .external_lex_state = 8}, - [635] = {.lex_state = 60, .external_lex_state = 8}, - [636] = {.lex_state = 60, .external_lex_state = 8}, - [637] = {.lex_state = 195, .external_lex_state = 8}, - [638] = {.lex_state = 60, .external_lex_state = 6}, - [639] = {.lex_state = 195, .external_lex_state = 8}, - [640] = {.lex_state = 60, .external_lex_state = 8}, - [641] = {.lex_state = 60, .external_lex_state = 8}, - [642] = {.lex_state = 60, .external_lex_state = 8}, - [643] = {.lex_state = 60, .external_lex_state = 8}, - [644] = {.lex_state = 60, .external_lex_state = 8}, - [645] = {.lex_state = 60, .external_lex_state = 8}, - [646] = {.lex_state = 60, .external_lex_state = 8}, - [647] = {.lex_state = 193, .external_lex_state = 9}, - [648] = {.lex_state = 60, .external_lex_state = 8}, - [649] = {.lex_state = 67, .external_lex_state = 6}, - [650] = {.lex_state = 60, .external_lex_state = 8}, - [651] = {.lex_state = 60, .external_lex_state = 8}, - [652] = {.lex_state = 60, .external_lex_state = 8}, - [653] = {.lex_state = 60, .external_lex_state = 8}, - [654] = {.lex_state = 60, .external_lex_state = 8}, - [655] = {.lex_state = 72, .external_lex_state = 5}, - [656] = {.lex_state = 60, .external_lex_state = 8}, - [657] = {.lex_state = 60, .external_lex_state = 8}, - [658] = {.lex_state = 193, .external_lex_state = 5}, - [659] = {.lex_state = 193, .external_lex_state = 9}, - [660] = {.lex_state = 60, .external_lex_state = 8}, - [661] = {.lex_state = 193, .external_lex_state = 9}, - [662] = {.lex_state = 72, .external_lex_state = 9}, - [663] = {.lex_state = 193, .external_lex_state = 9}, - [664] = {.lex_state = 72, .external_lex_state = 9}, - [665] = {.lex_state = 67, .external_lex_state = 6}, - [666] = {.lex_state = 72, .external_lex_state = 9}, - [667] = {.lex_state = 72, .external_lex_state = 5}, - [668] = {.lex_state = 72, .external_lex_state = 9}, - [669] = {.lex_state = 72, .external_lex_state = 9}, - [670] = {.lex_state = 72, .external_lex_state = 9}, - [671] = {.lex_state = 60, .external_lex_state = 6}, - [672] = {.lex_state = 72, .external_lex_state = 9}, - [673] = {.lex_state = 193, .external_lex_state = 9}, - [674] = {.lex_state = 193, .external_lex_state = 9}, - [675] = {.lex_state = 72, .external_lex_state = 9}, - [676] = {.lex_state = 193, .external_lex_state = 5}, - [677] = {.lex_state = 60, .external_lex_state = 8}, - [678] = {.lex_state = 72, .external_lex_state = 9}, - [679] = {.lex_state = 67, .external_lex_state = 6}, - [680] = {.lex_state = 195, .external_lex_state = 6}, - [681] = {.lex_state = 60, .external_lex_state = 8}, - [682] = {.lex_state = 72, .external_lex_state = 9}, - [683] = {.lex_state = 72, .external_lex_state = 9}, - [684] = {.lex_state = 72, .external_lex_state = 9}, - [685] = {.lex_state = 72, .external_lex_state = 9}, - [686] = {.lex_state = 195, .external_lex_state = 8}, - [687] = {.lex_state = 72, .external_lex_state = 9}, - [688] = {.lex_state = 72, .external_lex_state = 9}, - [689] = {.lex_state = 193, .external_lex_state = 8}, - [690] = {.lex_state = 72, .external_lex_state = 9}, - [691] = {.lex_state = 72, .external_lex_state = 9}, - [692] = {.lex_state = 195, .external_lex_state = 8}, - [693] = {.lex_state = 72, .external_lex_state = 9}, - [694] = {.lex_state = 197, .external_lex_state = 9}, - [695] = {.lex_state = 195, .external_lex_state = 8}, - [696] = {.lex_state = 72, .external_lex_state = 9}, - [697] = {.lex_state = 195, .external_lex_state = 8}, - [698] = {.lex_state = 72, .external_lex_state = 9}, - [699] = {.lex_state = 195, .external_lex_state = 8}, - [700] = {.lex_state = 195, .external_lex_state = 8}, - [701] = {.lex_state = 195, .external_lex_state = 8}, - [702] = {.lex_state = 195, .external_lex_state = 8}, - [703] = {.lex_state = 195, .external_lex_state = 8}, - [704] = {.lex_state = 195, .external_lex_state = 8}, - [705] = {.lex_state = 195, .external_lex_state = 8}, - [706] = {.lex_state = 197, .external_lex_state = 9}, - [707] = {.lex_state = 195, .external_lex_state = 8}, - [708] = {.lex_state = 195, .external_lex_state = 8}, - [709] = {.lex_state = 195, .external_lex_state = 8}, - [710] = {.lex_state = 195, .external_lex_state = 8}, - [711] = {.lex_state = 195, .external_lex_state = 8}, - [712] = {.lex_state = 195, .external_lex_state = 8}, - [713] = {.lex_state = 195, .external_lex_state = 8}, - [714] = {.lex_state = 195, .external_lex_state = 8}, - [715] = {.lex_state = 195, .external_lex_state = 8}, - [716] = {.lex_state = 197, .external_lex_state = 9}, - [717] = {.lex_state = 195, .external_lex_state = 8}, - [718] = {.lex_state = 195, .external_lex_state = 8}, - [719] = {.lex_state = 60, .external_lex_state = 8}, - [720] = {.lex_state = 195, .external_lex_state = 8}, - [721] = {.lex_state = 195, .external_lex_state = 8}, - [722] = {.lex_state = 60, .external_lex_state = 8}, - [723] = {.lex_state = 195, .external_lex_state = 8}, - [724] = {.lex_state = 197, .external_lex_state = 9}, - [725] = {.lex_state = 67, .external_lex_state = 6}, - [726] = {.lex_state = 195, .external_lex_state = 6}, - [727] = {.lex_state = 195, .external_lex_state = 6}, - [728] = {.lex_state = 60, .external_lex_state = 8}, - [729] = {.lex_state = 60, .external_lex_state = 8}, - [730] = {.lex_state = 195, .external_lex_state = 8}, - [731] = {.lex_state = 195, .external_lex_state = 8}, - [732] = {.lex_state = 195, .external_lex_state = 6}, - [733] = {.lex_state = 195, .external_lex_state = 8}, - [734] = {.lex_state = 195, .external_lex_state = 8}, - [735] = {.lex_state = 195, .external_lex_state = 8}, - [736] = {.lex_state = 195, .external_lex_state = 8}, - [737] = {.lex_state = 25, .external_lex_state = 6}, - [738] = {.lex_state = 195, .external_lex_state = 8}, - [739] = {.lex_state = 195, .external_lex_state = 8}, - [740] = {.lex_state = 195, .external_lex_state = 8}, - [741] = {.lex_state = 193, .external_lex_state = 8}, - [742] = {.lex_state = 193, .external_lex_state = 5}, - [743] = {.lex_state = 195, .external_lex_state = 8}, - [744] = {.lex_state = 195, .external_lex_state = 8}, - [745] = {.lex_state = 195, .external_lex_state = 8}, - [746] = {.lex_state = 195, .external_lex_state = 8}, - [747] = {.lex_state = 195, .external_lex_state = 8}, - [748] = {.lex_state = 195, .external_lex_state = 8}, - [749] = {.lex_state = 195, .external_lex_state = 8}, - [750] = {.lex_state = 71, .external_lex_state = 5}, - [751] = {.lex_state = 195, .external_lex_state = 6}, - [752] = {.lex_state = 195, .external_lex_state = 8}, - [753] = {.lex_state = 195, .external_lex_state = 8}, - [754] = {.lex_state = 8, .external_lex_state = 6}, - [755] = {.lex_state = 195, .external_lex_state = 8}, - [756] = {.lex_state = 195, .external_lex_state = 8}, - [757] = {.lex_state = 195, .external_lex_state = 8}, - [758] = {.lex_state = 193, .external_lex_state = 5}, - [759] = {.lex_state = 193, .external_lex_state = 8}, - [760] = {.lex_state = 197, .external_lex_state = 9}, - [761] = {.lex_state = 197, .external_lex_state = 9}, - [762] = {.lex_state = 197, .external_lex_state = 9}, - [763] = {.lex_state = 197, .external_lex_state = 9}, - [764] = {.lex_state = 197, .external_lex_state = 9}, - [765] = {.lex_state = 197, .external_lex_state = 9}, - [766] = {.lex_state = 197, .external_lex_state = 9}, - [767] = {.lex_state = 197, .external_lex_state = 9}, - [768] = {.lex_state = 197, .external_lex_state = 9}, - [769] = {.lex_state = 197, .external_lex_state = 9}, - [770] = {.lex_state = 197, .external_lex_state = 9}, - [771] = {.lex_state = 197, .external_lex_state = 9}, - [772] = {.lex_state = 197, .external_lex_state = 9}, - [773] = {.lex_state = 197, .external_lex_state = 9}, - [774] = {.lex_state = 197, .external_lex_state = 9}, - [775] = {.lex_state = 197, .external_lex_state = 9}, - [776] = {.lex_state = 197, .external_lex_state = 5}, - [777] = {.lex_state = 195, .external_lex_state = 6}, - [778] = {.lex_state = 197, .external_lex_state = 9}, - [779] = {.lex_state = 193, .external_lex_state = 6}, - [780] = {.lex_state = 197, .external_lex_state = 9}, - [781] = {.lex_state = 197, .external_lex_state = 9}, - [782] = {.lex_state = 195, .external_lex_state = 6}, - [783] = {.lex_state = 96, .external_lex_state = 2}, - [784] = {.lex_state = 193, .external_lex_state = 8}, - [785] = {.lex_state = 193, .external_lex_state = 6}, - [786] = {.lex_state = 197, .external_lex_state = 9}, - [787] = {.lex_state = 195, .external_lex_state = 6}, - [788] = {.lex_state = 193, .external_lex_state = 8}, - [789] = {.lex_state = 197, .external_lex_state = 9}, - [790] = {.lex_state = 193, .external_lex_state = 8}, - [791] = {.lex_state = 193, .external_lex_state = 8}, - [792] = {.lex_state = 197, .external_lex_state = 9}, - [793] = {.lex_state = 193, .external_lex_state = 8}, - [794] = {.lex_state = 197, .external_lex_state = 9}, - [795] = {.lex_state = 193, .external_lex_state = 8}, - [796] = {.lex_state = 197, .external_lex_state = 9}, - [797] = {.lex_state = 197, .external_lex_state = 9}, - [798] = {.lex_state = 195, .external_lex_state = 6}, - [799] = {.lex_state = 197, .external_lex_state = 5}, - [800] = {.lex_state = 193, .external_lex_state = 8}, - [801] = {.lex_state = 193, .external_lex_state = 8}, - [802] = {.lex_state = 193, .external_lex_state = 8}, - [803] = {.lex_state = 193, .external_lex_state = 5}, - [804] = {.lex_state = 193, .external_lex_state = 8}, - [805] = {.lex_state = 193, .external_lex_state = 8}, - [806] = {.lex_state = 72, .external_lex_state = 5}, - [807] = {.lex_state = 193, .external_lex_state = 8}, - [808] = {.lex_state = 96, .external_lex_state = 2}, - [809] = {.lex_state = 193, .external_lex_state = 8}, - [810] = {.lex_state = 193, .external_lex_state = 8}, - [811] = {.lex_state = 193, .external_lex_state = 8}, - [812] = {.lex_state = 72, .external_lex_state = 5}, - [813] = {.lex_state = 193, .external_lex_state = 8}, - [814] = {.lex_state = 193, .external_lex_state = 8}, - [815] = {.lex_state = 193, .external_lex_state = 8}, - [816] = {.lex_state = 193, .external_lex_state = 8}, - [817] = {.lex_state = 193, .external_lex_state = 8}, - [818] = {.lex_state = 193, .external_lex_state = 8}, - [819] = {.lex_state = 193, .external_lex_state = 8}, - [820] = {.lex_state = 193, .external_lex_state = 8}, - [821] = {.lex_state = 193, .external_lex_state = 8}, - [822] = {.lex_state = 72, .external_lex_state = 5}, - [823] = {.lex_state = 193, .external_lex_state = 6}, - [824] = {.lex_state = 193, .external_lex_state = 8}, - [825] = {.lex_state = 193, .external_lex_state = 8}, - [826] = {.lex_state = 193, .external_lex_state = 6}, - [827] = {.lex_state = 193, .external_lex_state = 8}, - [828] = {.lex_state = 193, .external_lex_state = 8}, - [829] = {.lex_state = 197, .external_lex_state = 9}, - [830] = {.lex_state = 193, .external_lex_state = 8}, - [831] = {.lex_state = 96, .external_lex_state = 2}, - [832] = {.lex_state = 193, .external_lex_state = 8}, - [833] = {.lex_state = 193, .external_lex_state = 8}, - [834] = {.lex_state = 193, .external_lex_state = 8}, - [835] = {.lex_state = 193, .external_lex_state = 8}, - [836] = {.lex_state = 193, .external_lex_state = 8}, - [837] = {.lex_state = 193, .external_lex_state = 8}, - [838] = {.lex_state = 193, .external_lex_state = 8}, - [839] = {.lex_state = 193, .external_lex_state = 8}, - [840] = {.lex_state = 193, .external_lex_state = 8}, - [841] = {.lex_state = 193, .external_lex_state = 8}, - [842] = {.lex_state = 193, .external_lex_state = 8}, - [843] = {.lex_state = 193, .external_lex_state = 8}, - [844] = {.lex_state = 193, .external_lex_state = 8}, - [845] = {.lex_state = 193, .external_lex_state = 8}, - [846] = {.lex_state = 26, .external_lex_state = 6}, - [847] = {.lex_state = 193, .external_lex_state = 8}, - [848] = {.lex_state = 193, .external_lex_state = 8}, - [849] = {.lex_state = 195, .external_lex_state = 6}, - [850] = {.lex_state = 193, .external_lex_state = 8}, - [851] = {.lex_state = 197, .external_lex_state = 5}, - [852] = {.lex_state = 193, .external_lex_state = 5}, - [853] = {.lex_state = 193, .external_lex_state = 8}, - [854] = {.lex_state = 72, .external_lex_state = 5}, - [855] = {.lex_state = 193, .external_lex_state = 8}, - [856] = {.lex_state = 96, .external_lex_state = 2}, - [857] = {.lex_state = 193, .external_lex_state = 8}, - [858] = {.lex_state = 193, .external_lex_state = 8}, - [859] = {.lex_state = 193, .external_lex_state = 8}, - [860] = {.lex_state = 197, .external_lex_state = 9}, - [861] = {.lex_state = 197, .external_lex_state = 9}, - [862] = {.lex_state = 197, .external_lex_state = 9}, - [863] = {.lex_state = 60, .external_lex_state = 6}, - [864] = {.lex_state = 197, .external_lex_state = 9}, - [865] = {.lex_state = 195, .external_lex_state = 6}, - [866] = {.lex_state = 197, .external_lex_state = 9}, - [867] = {.lex_state = 197, .external_lex_state = 9}, - [868] = {.lex_state = 195, .external_lex_state = 6}, - [869] = {.lex_state = 197, .external_lex_state = 9}, - [870] = {.lex_state = 197, .external_lex_state = 9}, - [871] = {.lex_state = 197, .external_lex_state = 9}, - [872] = {.lex_state = 197, .external_lex_state = 9}, - [873] = {.lex_state = 197, .external_lex_state = 9}, - [874] = {.lex_state = 197, .external_lex_state = 9}, - [875] = {.lex_state = 197, .external_lex_state = 9}, - [876] = {.lex_state = 197, .external_lex_state = 9}, - [877] = {.lex_state = 193, .external_lex_state = 5}, - [878] = {.lex_state = 197, .external_lex_state = 9}, - [879] = {.lex_state = 197, .external_lex_state = 9}, - [880] = {.lex_state = 197, .external_lex_state = 9}, - [881] = {.lex_state = 193, .external_lex_state = 5}, - [882] = {.lex_state = 197, .external_lex_state = 9}, - [883] = {.lex_state = 197, .external_lex_state = 9}, - [884] = {.lex_state = 197, .external_lex_state = 9}, - [885] = {.lex_state = 197, .external_lex_state = 9}, - [886] = {.lex_state = 197, .external_lex_state = 9}, - [887] = {.lex_state = 197, .external_lex_state = 9}, - [888] = {.lex_state = 197, .external_lex_state = 9}, - [889] = {.lex_state = 197, .external_lex_state = 9}, - [890] = {.lex_state = 197, .external_lex_state = 9}, - [891] = {.lex_state = 193, .external_lex_state = 5}, - [892] = {.lex_state = 197, .external_lex_state = 5}, - [893] = {.lex_state = 186, .external_lex_state = 6}, - [894] = {.lex_state = 96, .external_lex_state = 2}, - [895] = {.lex_state = 195, .external_lex_state = 6}, - [896] = {.lex_state = 193, .external_lex_state = 5}, - [897] = {.lex_state = 193, .external_lex_state = 5}, - [898] = {.lex_state = 186, .external_lex_state = 6}, - [899] = {.lex_state = 197, .external_lex_state = 5}, - [900] = {.lex_state = 197, .external_lex_state = 5}, - [901] = {.lex_state = 197, .external_lex_state = 5}, - [902] = {.lex_state = 197, .external_lex_state = 5}, - [903] = {.lex_state = 197, .external_lex_state = 5}, - [904] = {.lex_state = 197, .external_lex_state = 5}, - [905] = {.lex_state = 197, .external_lex_state = 5}, - [906] = {.lex_state = 193, .external_lex_state = 6}, - [907] = {.lex_state = 193, .external_lex_state = 6}, - [908] = {.lex_state = 197, .external_lex_state = 5}, - [909] = {.lex_state = 33, .external_lex_state = 10}, - [910] = {.lex_state = 33, .external_lex_state = 10}, - [911] = {.lex_state = 33, .external_lex_state = 10}, - [912] = {.lex_state = 33, .external_lex_state = 10}, - [913] = {.lex_state = 33, .external_lex_state = 10}, - [914] = {.lex_state = 33, .external_lex_state = 10}, - [915] = {.lex_state = 33, .external_lex_state = 10}, - [916] = {.lex_state = 33, .external_lex_state = 10}, - [917] = {.lex_state = 78, .external_lex_state = 2}, - [918] = {.lex_state = 36, .external_lex_state = 10}, - [919] = {.lex_state = 33, .external_lex_state = 10}, - [920] = {.lex_state = 89}, - [921] = {.lex_state = 94, .external_lex_state = 11}, - [922] = {.lex_state = 94, .external_lex_state = 11}, - [923] = {.lex_state = 94, .external_lex_state = 11}, - [924] = {.lex_state = 94, .external_lex_state = 11}, - [925] = {.lex_state = 94, .external_lex_state = 11}, - [926] = {.lex_state = 94, .external_lex_state = 11}, - [927] = {.lex_state = 94, .external_lex_state = 11}, - [928] = {.lex_state = 94, .external_lex_state = 11}, - [929] = {.lex_state = 94, .external_lex_state = 11}, - [930] = {.lex_state = 94, .external_lex_state = 11}, - [931] = {.lex_state = 94, .external_lex_state = 11}, - [932] = {.lex_state = 84, .external_lex_state = 12}, - [933] = {.lex_state = 94, .external_lex_state = 11}, - [934] = {.lex_state = 93, .external_lex_state = 13}, - [935] = {.lex_state = 94, .external_lex_state = 11}, - [936] = {.lex_state = 93, .external_lex_state = 13}, - [937] = {.lex_state = 94, .external_lex_state = 11}, - [938] = {.lex_state = 94, .external_lex_state = 11}, - [939] = {.lex_state = 94, .external_lex_state = 11}, - [940] = {.lex_state = 93, .external_lex_state = 13}, - [941] = {.lex_state = 94, .external_lex_state = 11}, - [942] = {.lex_state = 93, .external_lex_state = 13}, - [943] = {.lex_state = 93, .external_lex_state = 13}, - [944] = {.lex_state = 94, .external_lex_state = 11}, - [945] = {.lex_state = 94, .external_lex_state = 11}, - [946] = {.lex_state = 93, .external_lex_state = 13}, - [947] = {.lex_state = 93, .external_lex_state = 13}, - [948] = {.lex_state = 94, .external_lex_state = 11}, - [949] = {.lex_state = 93, .external_lex_state = 13}, - [950] = {.lex_state = 94, .external_lex_state = 11}, - [951] = {.lex_state = 93, .external_lex_state = 13}, - [952] = {.lex_state = 94, .external_lex_state = 11}, - [953] = {.lex_state = 93, .external_lex_state = 13}, - [954] = {.lex_state = 84}, - [955] = {.lex_state = 93, .external_lex_state = 13}, - [956] = {.lex_state = 84}, - [957] = {.lex_state = 84}, - [958] = {.lex_state = 84}, - [959] = {.lex_state = 93, .external_lex_state = 13}, - [960] = {.lex_state = 93, .external_lex_state = 13}, - [961] = {.lex_state = 93, .external_lex_state = 13}, - [962] = {.lex_state = 93, .external_lex_state = 13}, - [963] = {.lex_state = 93, .external_lex_state = 13}, - [964] = {.lex_state = 93, .external_lex_state = 13}, - [965] = {.lex_state = 94, .external_lex_state = 11}, - [966] = {.lex_state = 94, .external_lex_state = 11}, - [967] = {.lex_state = 84, .external_lex_state = 12}, - [968] = {.lex_state = 84}, - [969] = {.lex_state = 94, .external_lex_state = 11}, - [970] = {.lex_state = 94, .external_lex_state = 11}, - [971] = {.lex_state = 84}, - [972] = {.lex_state = 84}, - [973] = {.lex_state = 94, .external_lex_state = 11}, - [974] = {.lex_state = 84}, - [975] = {.lex_state = 93, .external_lex_state = 13}, - [976] = {.lex_state = 93, .external_lex_state = 13}, - [977] = {.lex_state = 94, .external_lex_state = 11}, - [978] = {.lex_state = 94, .external_lex_state = 11}, - [979] = {.lex_state = 84}, - [980] = {.lex_state = 94, .external_lex_state = 11}, - [981] = {.lex_state = 93, .external_lex_state = 13}, - [982] = {.lex_state = 94, .external_lex_state = 11}, - [983] = {.lex_state = 93, .external_lex_state = 13}, - [984] = {.lex_state = 94, .external_lex_state = 11}, - [985] = {.lex_state = 93, .external_lex_state = 13}, - [986] = {.lex_state = 93, .external_lex_state = 13}, - [987] = {.lex_state = 93, .external_lex_state = 13}, - [988] = {.lex_state = 93, .external_lex_state = 13}, - [989] = {.lex_state = 93, .external_lex_state = 13}, - [990] = {.lex_state = 93, .external_lex_state = 13}, - [991] = {.lex_state = 93, .external_lex_state = 13}, - [992] = {.lex_state = 93, .external_lex_state = 13}, - [993] = {.lex_state = 94, .external_lex_state = 11}, - [994] = {.lex_state = 94, .external_lex_state = 11}, - [995] = {.lex_state = 88, .external_lex_state = 14}, - [996] = {.lex_state = 94, .external_lex_state = 11}, - [997] = {.lex_state = 93, .external_lex_state = 13}, - [998] = {.lex_state = 93, .external_lex_state = 13}, - [999] = {.lex_state = 94, .external_lex_state = 11}, - [1000] = {.lex_state = 94, .external_lex_state = 11}, - [1001] = {.lex_state = 94, .external_lex_state = 11}, - [1002] = {.lex_state = 84}, - [1003] = {.lex_state = 84}, - [1004] = {.lex_state = 93, .external_lex_state = 13}, - [1005] = {.lex_state = 94, .external_lex_state = 11}, - [1006] = {.lex_state = 93, .external_lex_state = 13}, - [1007] = {.lex_state = 93, .external_lex_state = 13}, - [1008] = {.lex_state = 93, .external_lex_state = 13}, - [1009] = {.lex_state = 93, .external_lex_state = 13}, - [1010] = {.lex_state = 93, .external_lex_state = 13}, - [1011] = {.lex_state = 93, .external_lex_state = 13}, - [1012] = {.lex_state = 94, .external_lex_state = 11}, - [1013] = {.lex_state = 94, .external_lex_state = 11}, - [1014] = {.lex_state = 94, .external_lex_state = 11}, - [1015] = {.lex_state = 94, .external_lex_state = 11}, - [1016] = {.lex_state = 94, .external_lex_state = 11}, - [1017] = {.lex_state = 94, .external_lex_state = 11}, - [1018] = {.lex_state = 94, .external_lex_state = 11}, - [1019] = {.lex_state = 93, .external_lex_state = 13}, - [1020] = {.lex_state = 94, .external_lex_state = 11}, - [1021] = {.lex_state = 94, .external_lex_state = 11}, - [1022] = {.lex_state = 94, .external_lex_state = 11}, - [1023] = {.lex_state = 94, .external_lex_state = 11}, - [1024] = {.lex_state = 94, .external_lex_state = 11}, - [1025] = {.lex_state = 94, .external_lex_state = 11}, - [1026] = {.lex_state = 94, .external_lex_state = 11}, - [1027] = {.lex_state = 94, .external_lex_state = 11}, - [1028] = {.lex_state = 94, .external_lex_state = 11}, - [1029] = {.lex_state = 94, .external_lex_state = 11}, - [1030] = {.lex_state = 94, .external_lex_state = 11}, - [1031] = {.lex_state = 93, .external_lex_state = 13}, - [1032] = {.lex_state = 94, .external_lex_state = 11}, - [1033] = {.lex_state = 94, .external_lex_state = 11}, - [1034] = {.lex_state = 93, .external_lex_state = 13}, - [1035] = {.lex_state = 93, .external_lex_state = 13}, - [1036] = {.lex_state = 93, .external_lex_state = 13}, - [1037] = {.lex_state = 93, .external_lex_state = 13}, - [1038] = {.lex_state = 93, .external_lex_state = 13}, - [1039] = {.lex_state = 93, .external_lex_state = 13}, - [1040] = {.lex_state = 93, .external_lex_state = 13}, - [1041] = {.lex_state = 94, .external_lex_state = 11}, - [1042] = {.lex_state = 94, .external_lex_state = 11}, - [1043] = {.lex_state = 93, .external_lex_state = 13}, - [1044] = {.lex_state = 93, .external_lex_state = 13}, - [1045] = {.lex_state = 94, .external_lex_state = 11}, - [1046] = {.lex_state = 94, .external_lex_state = 11}, - [1047] = {.lex_state = 94, .external_lex_state = 11}, - [1048] = {.lex_state = 84}, - [1049] = {.lex_state = 84, .external_lex_state = 12}, - [1050] = {.lex_state = 94, .external_lex_state = 11}, - [1051] = {.lex_state = 94, .external_lex_state = 11}, - [1052] = {.lex_state = 93, .external_lex_state = 13}, - [1053] = {.lex_state = 93, .external_lex_state = 13}, - [1054] = {.lex_state = 94, .external_lex_state = 11}, - [1055] = {.lex_state = 94, .external_lex_state = 11}, - [1056] = {.lex_state = 94, .external_lex_state = 11}, - [1057] = {.lex_state = 93, .external_lex_state = 13}, - [1058] = {.lex_state = 93, .external_lex_state = 13}, - [1059] = {.lex_state = 94, .external_lex_state = 11}, - [1060] = {.lex_state = 93, .external_lex_state = 13}, - [1061] = {.lex_state = 94, .external_lex_state = 11}, - [1062] = {.lex_state = 93, .external_lex_state = 13}, - [1063] = {.lex_state = 93, .external_lex_state = 13}, - [1064] = {.lex_state = 94, .external_lex_state = 11}, - [1065] = {.lex_state = 94, .external_lex_state = 11}, - [1066] = {.lex_state = 93, .external_lex_state = 13}, - [1067] = {.lex_state = 93, .external_lex_state = 13}, - [1068] = {.lex_state = 93, .external_lex_state = 13}, - [1069] = {.lex_state = 93, .external_lex_state = 13}, - [1070] = {.lex_state = 93, .external_lex_state = 13}, - [1071] = {.lex_state = 93, .external_lex_state = 13}, - [1072] = {.lex_state = 93, .external_lex_state = 13}, - [1073] = {.lex_state = 93, .external_lex_state = 13}, - [1074] = {.lex_state = 93, .external_lex_state = 13}, - [1075] = {.lex_state = 84, .external_lex_state = 12}, - [1076] = {.lex_state = 94, .external_lex_state = 11}, - [1077] = {.lex_state = 93, .external_lex_state = 13}, - [1078] = {.lex_state = 93, .external_lex_state = 13}, - [1079] = {.lex_state = 94, .external_lex_state = 11}, - [1080] = {.lex_state = 94, .external_lex_state = 11}, - [1081] = {.lex_state = 94, .external_lex_state = 11}, - [1082] = {.lex_state = 94, .external_lex_state = 11}, - [1083] = {.lex_state = 94, .external_lex_state = 11}, - [1084] = {.lex_state = 94, .external_lex_state = 11}, - [1085] = {.lex_state = 94, .external_lex_state = 11}, - [1086] = {.lex_state = 94, .external_lex_state = 11}, - [1087] = {.lex_state = 93, .external_lex_state = 13}, - [1088] = {.lex_state = 94, .external_lex_state = 11}, - [1089] = {.lex_state = 94, .external_lex_state = 11}, - [1090] = {.lex_state = 93, .external_lex_state = 13}, - [1091] = {.lex_state = 94, .external_lex_state = 11}, - [1092] = {.lex_state = 94, .external_lex_state = 11}, - [1093] = {.lex_state = 93, .external_lex_state = 13}, - [1094] = {.lex_state = 94, .external_lex_state = 11}, - [1095] = {.lex_state = 94, .external_lex_state = 11}, - [1096] = {.lex_state = 93, .external_lex_state = 13}, - [1097] = {.lex_state = 93, .external_lex_state = 13}, - [1098] = {.lex_state = 93, .external_lex_state = 13}, - [1099] = {.lex_state = 94, .external_lex_state = 11}, - [1100] = {.lex_state = 93, .external_lex_state = 13}, - [1101] = {.lex_state = 93, .external_lex_state = 13}, - [1102] = {.lex_state = 94, .external_lex_state = 11}, - [1103] = {.lex_state = 93, .external_lex_state = 13}, - [1104] = {.lex_state = 93, .external_lex_state = 13}, - [1105] = {.lex_state = 93, .external_lex_state = 13}, - [1106] = {.lex_state = 93, .external_lex_state = 13}, - [1107] = {.lex_state = 94, .external_lex_state = 11}, - [1108] = {.lex_state = 94, .external_lex_state = 11}, - [1109] = {.lex_state = 93, .external_lex_state = 13}, - [1110] = {.lex_state = 93, .external_lex_state = 13}, - [1111] = {.lex_state = 93, .external_lex_state = 13}, - [1112] = {.lex_state = 93, .external_lex_state = 13}, - [1113] = {.lex_state = 94, .external_lex_state = 11}, - [1114] = {.lex_state = 93, .external_lex_state = 13}, - [1115] = {.lex_state = 93, .external_lex_state = 13}, - [1116] = {.lex_state = 94, .external_lex_state = 11}, - [1117] = {.lex_state = 93, .external_lex_state = 13}, - [1118] = {.lex_state = 93, .external_lex_state = 13}, - [1119] = {.lex_state = 94, .external_lex_state = 11}, - [1120] = {.lex_state = 94, .external_lex_state = 11}, - [1121] = {.lex_state = 93, .external_lex_state = 13}, - [1122] = {.lex_state = 94, .external_lex_state = 11}, - [1123] = {.lex_state = 93, .external_lex_state = 13}, - [1124] = {.lex_state = 93, .external_lex_state = 13}, - [1125] = {.lex_state = 93, .external_lex_state = 13}, - [1126] = {.lex_state = 93, .external_lex_state = 13}, - [1127] = {.lex_state = 93, .external_lex_state = 13}, - [1128] = {.lex_state = 94, .external_lex_state = 11}, - [1129] = {.lex_state = 93, .external_lex_state = 13}, - [1130] = {.lex_state = 94, .external_lex_state = 11}, - [1131] = {.lex_state = 93, .external_lex_state = 13}, - [1132] = {.lex_state = 94, .external_lex_state = 11}, - [1133] = {.lex_state = 93, .external_lex_state = 13}, - [1134] = {.lex_state = 93, .external_lex_state = 13}, - [1135] = {.lex_state = 93, .external_lex_state = 13}, - [1136] = {.lex_state = 93, .external_lex_state = 13}, - [1137] = {.lex_state = 94, .external_lex_state = 11}, - [1138] = {.lex_state = 93, .external_lex_state = 13}, - [1139] = {.lex_state = 94, .external_lex_state = 11}, - [1140] = {.lex_state = 94, .external_lex_state = 11}, - [1141] = {.lex_state = 94, .external_lex_state = 11}, - [1142] = {.lex_state = 93, .external_lex_state = 13}, - [1143] = {.lex_state = 93, .external_lex_state = 13}, - [1144] = {.lex_state = 94, .external_lex_state = 11}, - [1145] = {.lex_state = 94, .external_lex_state = 11}, - [1146] = {.lex_state = 93, .external_lex_state = 13}, - [1147] = {.lex_state = 93, .external_lex_state = 13}, - [1148] = {.lex_state = 93, .external_lex_state = 13}, - [1149] = {.lex_state = 93, .external_lex_state = 13}, - [1150] = {.lex_state = 93, .external_lex_state = 13}, - [1151] = {.lex_state = 93, .external_lex_state = 13}, - [1152] = {.lex_state = 93, .external_lex_state = 13}, - [1153] = {.lex_state = 93, .external_lex_state = 13}, - [1154] = {.lex_state = 88}, - [1155] = {.lex_state = 93, .external_lex_state = 13}, - [1156] = {.lex_state = 93, .external_lex_state = 13}, - [1157] = {.lex_state = 94, .external_lex_state = 11}, - [1158] = {.lex_state = 93, .external_lex_state = 13}, - [1159] = {.lex_state = 93, .external_lex_state = 13}, - [1160] = {.lex_state = 94, .external_lex_state = 11}, - [1161] = {.lex_state = 94, .external_lex_state = 11}, - [1162] = {.lex_state = 94, .external_lex_state = 11}, - [1163] = {.lex_state = 94, .external_lex_state = 11}, - [1164] = {.lex_state = 94, .external_lex_state = 11}, - [1165] = {.lex_state = 93, .external_lex_state = 13}, - [1166] = {.lex_state = 93, .external_lex_state = 13}, - [1167] = {.lex_state = 94, .external_lex_state = 11}, - [1168] = {.lex_state = 94, .external_lex_state = 11}, - [1169] = {.lex_state = 94, .external_lex_state = 11}, - [1170] = {.lex_state = 94, .external_lex_state = 11}, - [1171] = {.lex_state = 94, .external_lex_state = 11}, - [1172] = {.lex_state = 84, .external_lex_state = 12}, - [1173] = {.lex_state = 94, .external_lex_state = 11}, - [1174] = {.lex_state = 94, .external_lex_state = 11}, - [1175] = {.lex_state = 94, .external_lex_state = 11}, - [1176] = {.lex_state = 94, .external_lex_state = 11}, - [1177] = {.lex_state = 93, .external_lex_state = 13}, - [1178] = {.lex_state = 93, .external_lex_state = 13}, - [1179] = {.lex_state = 93, .external_lex_state = 13}, - [1180] = {.lex_state = 94, .external_lex_state = 11}, - [1181] = {.lex_state = 93, .external_lex_state = 13}, - [1182] = {.lex_state = 94, .external_lex_state = 11}, - [1183] = {.lex_state = 93, .external_lex_state = 13}, - [1184] = {.lex_state = 93, .external_lex_state = 13}, - [1185] = {.lex_state = 93, .external_lex_state = 13}, - [1186] = {.lex_state = 93, .external_lex_state = 13}, - [1187] = {.lex_state = 94, .external_lex_state = 11}, - [1188] = {.lex_state = 94, .external_lex_state = 13}, - [1189] = {.lex_state = 94, .external_lex_state = 13}, - [1190] = {.lex_state = 84}, - [1191] = {.lex_state = 94, .external_lex_state = 13}, - [1192] = {.lex_state = 94, .external_lex_state = 13}, - [1193] = {.lex_state = 94, .external_lex_state = 13}, - [1194] = {.lex_state = 94, .external_lex_state = 13}, - [1195] = {.lex_state = 94, .external_lex_state = 13}, - [1196] = {.lex_state = 94, .external_lex_state = 13}, - [1197] = {.lex_state = 94, .external_lex_state = 13}, - [1198] = {.lex_state = 94, .external_lex_state = 13}, - [1199] = {.lex_state = 94, .external_lex_state = 13}, - [1200] = {.lex_state = 94, .external_lex_state = 13}, - [1201] = {.lex_state = 94, .external_lex_state = 13}, - [1202] = {.lex_state = 94, .external_lex_state = 13}, - [1203] = {.lex_state = 94, .external_lex_state = 13}, - [1204] = {.lex_state = 94, .external_lex_state = 13}, - [1205] = {.lex_state = 94, .external_lex_state = 13}, - [1206] = {.lex_state = 94, .external_lex_state = 13}, - [1207] = {.lex_state = 94, .external_lex_state = 13}, - [1208] = {.lex_state = 94, .external_lex_state = 13}, - [1209] = {.lex_state = 94, .external_lex_state = 13}, - [1210] = {.lex_state = 94, .external_lex_state = 13}, - [1211] = {.lex_state = 94, .external_lex_state = 13}, - [1212] = {.lex_state = 94, .external_lex_state = 13}, - [1213] = {.lex_state = 94, .external_lex_state = 13}, - [1214] = {.lex_state = 94, .external_lex_state = 13}, - [1215] = {.lex_state = 94, .external_lex_state = 13}, - [1216] = {.lex_state = 94, .external_lex_state = 13}, - [1217] = {.lex_state = 94, .external_lex_state = 13}, - [1218] = {.lex_state = 94, .external_lex_state = 13}, - [1219] = {.lex_state = 94, .external_lex_state = 13}, - [1220] = {.lex_state = 94, .external_lex_state = 13}, - [1221] = {.lex_state = 94, .external_lex_state = 13}, - [1222] = {.lex_state = 94, .external_lex_state = 13}, - [1223] = {.lex_state = 94, .external_lex_state = 13}, - [1224] = {.lex_state = 84}, - [1225] = {.lex_state = 94, .external_lex_state = 13}, - [1226] = {.lex_state = 94, .external_lex_state = 13}, - [1227] = {.lex_state = 94, .external_lex_state = 13}, - [1228] = {.lex_state = 94, .external_lex_state = 13}, - [1229] = {.lex_state = 94, .external_lex_state = 13}, - [1230] = {.lex_state = 94, .external_lex_state = 13}, - [1231] = {.lex_state = 94, .external_lex_state = 13}, - [1232] = {.lex_state = 94, .external_lex_state = 13}, - [1233] = {.lex_state = 94, .external_lex_state = 13}, - [1234] = {.lex_state = 94, .external_lex_state = 13}, - [1235] = {.lex_state = 94, .external_lex_state = 13}, - [1236] = {.lex_state = 94, .external_lex_state = 13}, - [1237] = {.lex_state = 94, .external_lex_state = 13}, - [1238] = {.lex_state = 94, .external_lex_state = 13}, - [1239] = {.lex_state = 94, .external_lex_state = 13}, - [1240] = {.lex_state = 94, .external_lex_state = 13}, - [1241] = {.lex_state = 94, .external_lex_state = 13}, - [1242] = {.lex_state = 94, .external_lex_state = 13}, - [1243] = {.lex_state = 94, .external_lex_state = 13}, - [1244] = {.lex_state = 94, .external_lex_state = 13}, - [1245] = {.lex_state = 94, .external_lex_state = 13}, - [1246] = {.lex_state = 94, .external_lex_state = 13}, - [1247] = {.lex_state = 94, .external_lex_state = 13}, - [1248] = {.lex_state = 94, .external_lex_state = 13}, - [1249] = {.lex_state = 94, .external_lex_state = 13}, - [1250] = {.lex_state = 94, .external_lex_state = 13}, - [1251] = {.lex_state = 94, .external_lex_state = 13}, - [1252] = {.lex_state = 94, .external_lex_state = 13}, - [1253] = {.lex_state = 94, .external_lex_state = 13}, - [1254] = {.lex_state = 94, .external_lex_state = 13}, - [1255] = {.lex_state = 94, .external_lex_state = 13}, - [1256] = {.lex_state = 94, .external_lex_state = 13}, - [1257] = {.lex_state = 94, .external_lex_state = 13}, - [1258] = {.lex_state = 94, .external_lex_state = 13}, - [1259] = {.lex_state = 94, .external_lex_state = 13}, - [1260] = {.lex_state = 94, .external_lex_state = 13}, - [1261] = {.lex_state = 94, .external_lex_state = 13}, - [1262] = {.lex_state = 94, .external_lex_state = 13}, - [1263] = {.lex_state = 94, .external_lex_state = 13}, - [1264] = {.lex_state = 94, .external_lex_state = 13}, - [1265] = {.lex_state = 94, .external_lex_state = 13}, - [1266] = {.lex_state = 94, .external_lex_state = 13}, - [1267] = {.lex_state = 94, .external_lex_state = 13}, - [1268] = {.lex_state = 94, .external_lex_state = 13}, - [1269] = {.lex_state = 94, .external_lex_state = 13}, - [1270] = {.lex_state = 94, .external_lex_state = 13}, - [1271] = {.lex_state = 94, .external_lex_state = 13}, - [1272] = {.lex_state = 94, .external_lex_state = 13}, - [1273] = {.lex_state = 94, .external_lex_state = 13}, - [1274] = {.lex_state = 94, .external_lex_state = 13}, - [1275] = {.lex_state = 84}, - [1276] = {.lex_state = 94, .external_lex_state = 13}, - [1277] = {.lex_state = 94, .external_lex_state = 13}, - [1278] = {.lex_state = 94, .external_lex_state = 13}, - [1279] = {.lex_state = 94, .external_lex_state = 13}, - [1280] = {.lex_state = 94, .external_lex_state = 13}, - [1281] = {.lex_state = 84}, - [1282] = {.lex_state = 94, .external_lex_state = 13}, - [1283] = {.lex_state = 94, .external_lex_state = 13}, - [1284] = {.lex_state = 94, .external_lex_state = 13}, - [1285] = {.lex_state = 94, .external_lex_state = 13}, - [1286] = {.lex_state = 94, .external_lex_state = 13}, - [1287] = {.lex_state = 94, .external_lex_state = 13}, - [1288] = {.lex_state = 84}, - [1289] = {.lex_state = 94, .external_lex_state = 13}, - [1290] = {.lex_state = 94, .external_lex_state = 13}, - [1291] = {.lex_state = 94, .external_lex_state = 13}, - [1292] = {.lex_state = 94, .external_lex_state = 13}, - [1293] = {.lex_state = 94, .external_lex_state = 13}, - [1294] = {.lex_state = 94, .external_lex_state = 13}, - [1295] = {.lex_state = 94, .external_lex_state = 13}, - [1296] = {.lex_state = 94, .external_lex_state = 13}, - [1297] = {.lex_state = 94, .external_lex_state = 13}, - [1298] = {.lex_state = 94, .external_lex_state = 13}, - [1299] = {.lex_state = 94, .external_lex_state = 13}, - [1300] = {.lex_state = 94, .external_lex_state = 13}, - [1301] = {.lex_state = 94, .external_lex_state = 13}, - [1302] = {.lex_state = 94, .external_lex_state = 13}, - [1303] = {.lex_state = 94, .external_lex_state = 13}, - [1304] = {.lex_state = 94, .external_lex_state = 13}, - [1305] = {.lex_state = 94, .external_lex_state = 13}, - [1306] = {.lex_state = 94, .external_lex_state = 13}, - [1307] = {.lex_state = 94, .external_lex_state = 13}, - [1308] = {.lex_state = 94, .external_lex_state = 13}, - [1309] = {.lex_state = 94, .external_lex_state = 13}, - [1310] = {.lex_state = 94, .external_lex_state = 13}, - [1311] = {.lex_state = 94, .external_lex_state = 13}, - [1312] = {.lex_state = 94, .external_lex_state = 13}, - [1313] = {.lex_state = 94, .external_lex_state = 13}, - [1314] = {.lex_state = 94, .external_lex_state = 13}, - [1315] = {.lex_state = 94, .external_lex_state = 13}, - [1316] = {.lex_state = 94, .external_lex_state = 13}, - [1317] = {.lex_state = 94, .external_lex_state = 13}, - [1318] = {.lex_state = 94, .external_lex_state = 13}, - [1319] = {.lex_state = 84}, - [1320] = {.lex_state = 94, .external_lex_state = 13}, - [1321] = {.lex_state = 94, .external_lex_state = 13}, - [1322] = {.lex_state = 94, .external_lex_state = 13}, - [1323] = {.lex_state = 94, .external_lex_state = 13}, - [1324] = {.lex_state = 94, .external_lex_state = 13}, - [1325] = {.lex_state = 94, .external_lex_state = 13}, - [1326] = {.lex_state = 94, .external_lex_state = 13}, - [1327] = {.lex_state = 94, .external_lex_state = 13}, - [1328] = {.lex_state = 94, .external_lex_state = 13}, - [1329] = {.lex_state = 94, .external_lex_state = 13}, - [1330] = {.lex_state = 94, .external_lex_state = 13}, - [1331] = {.lex_state = 94, .external_lex_state = 13}, - [1332] = {.lex_state = 94, .external_lex_state = 13}, - [1333] = {.lex_state = 94, .external_lex_state = 13}, - [1334] = {.lex_state = 94, .external_lex_state = 13}, - [1335] = {.lex_state = 94, .external_lex_state = 13}, - [1336] = {.lex_state = 94, .external_lex_state = 13}, - [1337] = {.lex_state = 94, .external_lex_state = 13}, - [1338] = {.lex_state = 94, .external_lex_state = 13}, - [1339] = {.lex_state = 94, .external_lex_state = 13}, - [1340] = {.lex_state = 94, .external_lex_state = 13}, - [1341] = {.lex_state = 94, .external_lex_state = 13}, - [1342] = {.lex_state = 94, .external_lex_state = 13}, - [1343] = {.lex_state = 94, .external_lex_state = 13}, - [1344] = {.lex_state = 94, .external_lex_state = 13}, - [1345] = {.lex_state = 94, .external_lex_state = 13}, - [1346] = {.lex_state = 94, .external_lex_state = 13}, - [1347] = {.lex_state = 94, .external_lex_state = 13}, - [1348] = {.lex_state = 94, .external_lex_state = 13}, - [1349] = {.lex_state = 94, .external_lex_state = 13}, - [1350] = {.lex_state = 94, .external_lex_state = 13}, - [1351] = {.lex_state = 94, .external_lex_state = 13}, - [1352] = {.lex_state = 94, .external_lex_state = 13}, - [1353] = {.lex_state = 94, .external_lex_state = 13}, - [1354] = {.lex_state = 94, .external_lex_state = 13}, - [1355] = {.lex_state = 94, .external_lex_state = 13}, - [1356] = {.lex_state = 94, .external_lex_state = 13}, - [1357] = {.lex_state = 94, .external_lex_state = 13}, - [1358] = {.lex_state = 94, .external_lex_state = 13}, - [1359] = {.lex_state = 94, .external_lex_state = 13}, - [1360] = {.lex_state = 94, .external_lex_state = 13}, - [1361] = {.lex_state = 94, .external_lex_state = 13}, - [1362] = {.lex_state = 94, .external_lex_state = 13}, - [1363] = {.lex_state = 94, .external_lex_state = 13}, - [1364] = {.lex_state = 94, .external_lex_state = 13}, - [1365] = {.lex_state = 94, .external_lex_state = 13}, - [1366] = {.lex_state = 94, .external_lex_state = 13}, - [1367] = {.lex_state = 94, .external_lex_state = 13}, - [1368] = {.lex_state = 94, .external_lex_state = 13}, - [1369] = {.lex_state = 94, .external_lex_state = 13}, - [1370] = {.lex_state = 94, .external_lex_state = 13}, - [1371] = {.lex_state = 94, .external_lex_state = 13}, - [1372] = {.lex_state = 84}, - [1373] = {.lex_state = 94, .external_lex_state = 13}, - [1374] = {.lex_state = 94, .external_lex_state = 13}, - [1375] = {.lex_state = 94, .external_lex_state = 13}, - [1376] = {.lex_state = 94, .external_lex_state = 13}, - [1377] = {.lex_state = 94, .external_lex_state = 13}, - [1378] = {.lex_state = 94, .external_lex_state = 13}, - [1379] = {.lex_state = 94, .external_lex_state = 13}, - [1380] = {.lex_state = 94, .external_lex_state = 13}, - [1381] = {.lex_state = 94, .external_lex_state = 13}, - [1382] = {.lex_state = 94, .external_lex_state = 13}, - [1383] = {.lex_state = 94, .external_lex_state = 13}, - [1384] = {.lex_state = 94, .external_lex_state = 13}, - [1385] = {.lex_state = 94, .external_lex_state = 13}, - [1386] = {.lex_state = 94, .external_lex_state = 13}, - [1387] = {.lex_state = 94, .external_lex_state = 13}, - [1388] = {.lex_state = 94, .external_lex_state = 13}, - [1389] = {.lex_state = 94, .external_lex_state = 13}, - [1390] = {.lex_state = 94, .external_lex_state = 13}, - [1391] = {.lex_state = 94, .external_lex_state = 13}, - [1392] = {.lex_state = 94, .external_lex_state = 13}, - [1393] = {.lex_state = 94, .external_lex_state = 13}, - [1394] = {.lex_state = 94, .external_lex_state = 13}, - [1395] = {.lex_state = 94, .external_lex_state = 13}, - [1396] = {.lex_state = 94, .external_lex_state = 13}, - [1397] = {.lex_state = 84}, - [1398] = {.lex_state = 94, .external_lex_state = 13}, - [1399] = {.lex_state = 94, .external_lex_state = 13}, - [1400] = {.lex_state = 94, .external_lex_state = 13}, - [1401] = {.lex_state = 84}, - [1402] = {.lex_state = 94, .external_lex_state = 13}, - [1403] = {.lex_state = 94, .external_lex_state = 13}, - [1404] = {.lex_state = 94, .external_lex_state = 13}, - [1405] = {.lex_state = 94, .external_lex_state = 13}, - [1406] = {.lex_state = 94, .external_lex_state = 13}, - [1407] = {.lex_state = 94, .external_lex_state = 13}, - [1408] = {.lex_state = 94, .external_lex_state = 13}, - [1409] = {.lex_state = 94, .external_lex_state = 13}, - [1410] = {.lex_state = 94, .external_lex_state = 13}, - [1411] = {.lex_state = 94, .external_lex_state = 13}, - [1412] = {.lex_state = 94, .external_lex_state = 13}, - [1413] = {.lex_state = 94, .external_lex_state = 13}, - [1414] = {.lex_state = 94, .external_lex_state = 13}, - [1415] = {.lex_state = 94, .external_lex_state = 13}, - [1416] = {.lex_state = 94, .external_lex_state = 13}, - [1417] = {.lex_state = 94, .external_lex_state = 13}, - [1418] = {.lex_state = 94, .external_lex_state = 13}, - [1419] = {.lex_state = 94, .external_lex_state = 13}, - [1420] = {.lex_state = 94, .external_lex_state = 13}, - [1421] = {.lex_state = 94, .external_lex_state = 13}, - [1422] = {.lex_state = 94, .external_lex_state = 13}, - [1423] = {.lex_state = 94, .external_lex_state = 13}, - [1424] = {.lex_state = 94, .external_lex_state = 13}, - [1425] = {.lex_state = 94, .external_lex_state = 13}, - [1426] = {.lex_state = 94, .external_lex_state = 13}, - [1427] = {.lex_state = 94, .external_lex_state = 13}, - [1428] = {.lex_state = 94, .external_lex_state = 13}, - [1429] = {.lex_state = 94, .external_lex_state = 13}, - [1430] = {.lex_state = 94, .external_lex_state = 13}, - [1431] = {.lex_state = 94, .external_lex_state = 13}, - [1432] = {.lex_state = 94, .external_lex_state = 13}, - [1433] = {.lex_state = 94, .external_lex_state = 13}, - [1434] = {.lex_state = 94, .external_lex_state = 13}, - [1435] = {.lex_state = 94, .external_lex_state = 13}, - [1436] = {.lex_state = 94, .external_lex_state = 13}, - [1437] = {.lex_state = 94, .external_lex_state = 13}, - [1438] = {.lex_state = 94, .external_lex_state = 13}, - [1439] = {.lex_state = 94, .external_lex_state = 13}, - [1440] = {.lex_state = 94, .external_lex_state = 13}, - [1441] = {.lex_state = 94, .external_lex_state = 13}, - [1442] = {.lex_state = 94, .external_lex_state = 13}, - [1443] = {.lex_state = 94, .external_lex_state = 13}, - [1444] = {.lex_state = 94, .external_lex_state = 13}, - [1445] = {.lex_state = 94, .external_lex_state = 13}, - [1446] = {.lex_state = 94, .external_lex_state = 13}, - [1447] = {.lex_state = 94, .external_lex_state = 13}, - [1448] = {.lex_state = 94, .external_lex_state = 13}, - [1449] = {.lex_state = 94, .external_lex_state = 13}, - [1450] = {.lex_state = 94, .external_lex_state = 13}, - [1451] = {.lex_state = 94, .external_lex_state = 13}, - [1452] = {.lex_state = 94, .external_lex_state = 13}, - [1453] = {.lex_state = 94, .external_lex_state = 13}, - [1454] = {.lex_state = 94, .external_lex_state = 13}, - [1455] = {.lex_state = 84}, - [1456] = {.lex_state = 94, .external_lex_state = 13}, - [1457] = {.lex_state = 94, .external_lex_state = 13}, - [1458] = {.lex_state = 94, .external_lex_state = 13}, - [1459] = {.lex_state = 94, .external_lex_state = 13}, - [1460] = {.lex_state = 94, .external_lex_state = 13}, - [1461] = {.lex_state = 94, .external_lex_state = 13}, - [1462] = {.lex_state = 94, .external_lex_state = 13}, - [1463] = {.lex_state = 94, .external_lex_state = 13}, - [1464] = {.lex_state = 94, .external_lex_state = 13}, - [1465] = {.lex_state = 94, .external_lex_state = 13}, - [1466] = {.lex_state = 94, .external_lex_state = 13}, - [1467] = {.lex_state = 94, .external_lex_state = 13}, - [1468] = {.lex_state = 94, .external_lex_state = 13}, - [1469] = {.lex_state = 94, .external_lex_state = 13}, - [1470] = {.lex_state = 94, .external_lex_state = 13}, - [1471] = {.lex_state = 94, .external_lex_state = 13}, - [1472] = {.lex_state = 94, .external_lex_state = 13}, - [1473] = {.lex_state = 94, .external_lex_state = 13}, - [1474] = {.lex_state = 94, .external_lex_state = 13}, - [1475] = {.lex_state = 94, .external_lex_state = 13}, - [1476] = {.lex_state = 94, .external_lex_state = 13}, - [1477] = {.lex_state = 94, .external_lex_state = 13}, - [1478] = {.lex_state = 94, .external_lex_state = 13}, - [1479] = {.lex_state = 94, .external_lex_state = 13}, - [1480] = {.lex_state = 94, .external_lex_state = 13}, - [1481] = {.lex_state = 94, .external_lex_state = 13}, - [1482] = {.lex_state = 94, .external_lex_state = 13}, - [1483] = {.lex_state = 94, .external_lex_state = 13}, - [1484] = {.lex_state = 94, .external_lex_state = 13}, - [1485] = {.lex_state = 94, .external_lex_state = 13}, - [1486] = {.lex_state = 94, .external_lex_state = 13}, - [1487] = {.lex_state = 94, .external_lex_state = 13}, - [1488] = {.lex_state = 94, .external_lex_state = 13}, - [1489] = {.lex_state = 94, .external_lex_state = 13}, - [1490] = {.lex_state = 84}, - [1491] = {.lex_state = 94, .external_lex_state = 13}, - [1492] = {.lex_state = 84}, - [1493] = {.lex_state = 84}, - [1494] = {.lex_state = 94, .external_lex_state = 13}, - [1495] = {.lex_state = 94, .external_lex_state = 13}, - [1496] = {.lex_state = 94, .external_lex_state = 13}, - [1497] = {.lex_state = 94, .external_lex_state = 13}, - [1498] = {.lex_state = 94, .external_lex_state = 13}, - [1499] = {.lex_state = 94, .external_lex_state = 13}, - [1500] = {.lex_state = 94, .external_lex_state = 13}, - [1501] = {.lex_state = 94, .external_lex_state = 13}, - [1502] = {.lex_state = 94, .external_lex_state = 13}, - [1503] = {.lex_state = 94, .external_lex_state = 13}, - [1504] = {.lex_state = 94, .external_lex_state = 13}, - [1505] = {.lex_state = 94, .external_lex_state = 13}, - [1506] = {.lex_state = 94, .external_lex_state = 13}, - [1507] = {.lex_state = 94, .external_lex_state = 13}, - [1508] = {.lex_state = 94, .external_lex_state = 13}, - [1509] = {.lex_state = 94, .external_lex_state = 13}, - [1510] = {.lex_state = 94, .external_lex_state = 13}, - [1511] = {.lex_state = 94, .external_lex_state = 13}, - [1512] = {.lex_state = 94, .external_lex_state = 13}, - [1513] = {.lex_state = 94, .external_lex_state = 13}, - [1514] = {.lex_state = 94, .external_lex_state = 13}, - [1515] = {.lex_state = 94, .external_lex_state = 13}, - [1516] = {.lex_state = 94, .external_lex_state = 13}, - [1517] = {.lex_state = 94, .external_lex_state = 13}, - [1518] = {.lex_state = 94, .external_lex_state = 13}, - [1519] = {.lex_state = 94, .external_lex_state = 13}, - [1520] = {.lex_state = 94, .external_lex_state = 13}, - [1521] = {.lex_state = 84}, - [1522] = {.lex_state = 94, .external_lex_state = 13}, - [1523] = {.lex_state = 94, .external_lex_state = 13}, - [1524] = {.lex_state = 94, .external_lex_state = 13}, - [1525] = {.lex_state = 94, .external_lex_state = 13}, - [1526] = {.lex_state = 94, .external_lex_state = 13}, - [1527] = {.lex_state = 94, .external_lex_state = 13}, - [1528] = {.lex_state = 94, .external_lex_state = 13}, - [1529] = {.lex_state = 94, .external_lex_state = 13}, - [1530] = {.lex_state = 94, .external_lex_state = 13}, - [1531] = {.lex_state = 94, .external_lex_state = 13}, - [1532] = {.lex_state = 94, .external_lex_state = 13}, - [1533] = {.lex_state = 94, .external_lex_state = 13}, - [1534] = {.lex_state = 94, .external_lex_state = 13}, - [1535] = {.lex_state = 94, .external_lex_state = 13}, - [1536] = {.lex_state = 94, .external_lex_state = 13}, - [1537] = {.lex_state = 94, .external_lex_state = 13}, - [1538] = {.lex_state = 94, .external_lex_state = 13}, - [1539] = {.lex_state = 94, .external_lex_state = 13}, - [1540] = {.lex_state = 94, .external_lex_state = 13}, - [1541] = {.lex_state = 94, .external_lex_state = 13}, - [1542] = {.lex_state = 94, .external_lex_state = 13}, - [1543] = {.lex_state = 94, .external_lex_state = 13}, - [1544] = {.lex_state = 94, .external_lex_state = 13}, - [1545] = {.lex_state = 84}, - [1546] = {.lex_state = 84}, - [1547] = {.lex_state = 94, .external_lex_state = 13}, - [1548] = {.lex_state = 94, .external_lex_state = 13}, - [1549] = {.lex_state = 84}, - [1550] = {.lex_state = 84}, - [1551] = {.lex_state = 84}, - [1552] = {.lex_state = 94, .external_lex_state = 13}, - [1553] = {.lex_state = 94, .external_lex_state = 13}, - [1554] = {.lex_state = 84}, - [1555] = {.lex_state = 94, .external_lex_state = 13}, - [1556] = {.lex_state = 94, .external_lex_state = 13}, - [1557] = {.lex_state = 84}, - [1558] = {.lex_state = 94, .external_lex_state = 13}, - [1559] = {.lex_state = 94, .external_lex_state = 13}, - [1560] = {.lex_state = 94, .external_lex_state = 13}, - [1561] = {.lex_state = 94, .external_lex_state = 13}, - [1562] = {.lex_state = 94, .external_lex_state = 13}, - [1563] = {.lex_state = 94, .external_lex_state = 13}, - [1564] = {.lex_state = 94, .external_lex_state = 13}, - [1565] = {.lex_state = 94, .external_lex_state = 13}, - [1566] = {.lex_state = 94, .external_lex_state = 13}, - [1567] = {.lex_state = 94, .external_lex_state = 13}, - [1568] = {.lex_state = 94, .external_lex_state = 13}, - [1569] = {.lex_state = 94, .external_lex_state = 13}, - [1570] = {.lex_state = 94, .external_lex_state = 13}, - [1571] = {.lex_state = 94, .external_lex_state = 13}, - [1572] = {.lex_state = 94, .external_lex_state = 13}, - [1573] = {.lex_state = 94, .external_lex_state = 13}, - [1574] = {.lex_state = 94, .external_lex_state = 13}, - [1575] = {.lex_state = 94, .external_lex_state = 13}, - [1576] = {.lex_state = 94, .external_lex_state = 13}, - [1577] = {.lex_state = 94, .external_lex_state = 13}, - [1578] = {.lex_state = 94, .external_lex_state = 13}, - [1579] = {.lex_state = 94, .external_lex_state = 13}, - [1580] = {.lex_state = 94, .external_lex_state = 13}, - [1581] = {.lex_state = 94, .external_lex_state = 13}, - [1582] = {.lex_state = 94, .external_lex_state = 13}, - [1583] = {.lex_state = 84}, - [1584] = {.lex_state = 94, .external_lex_state = 13}, - [1585] = {.lex_state = 84}, - [1586] = {.lex_state = 94, .external_lex_state = 13}, - [1587] = {.lex_state = 84}, - [1588] = {.lex_state = 94, .external_lex_state = 13}, - [1589] = {.lex_state = 84}, - [1590] = {.lex_state = 84}, - [1591] = {.lex_state = 84}, - [1592] = {.lex_state = 94, .external_lex_state = 13}, - [1593] = {.lex_state = 94, .external_lex_state = 13}, - [1594] = {.lex_state = 94, .external_lex_state = 13}, - [1595] = {.lex_state = 84}, - [1596] = {.lex_state = 94, .external_lex_state = 13}, - [1597] = {.lex_state = 94, .external_lex_state = 13}, - [1598] = {.lex_state = 94, .external_lex_state = 13}, - [1599] = {.lex_state = 94, .external_lex_state = 13}, - [1600] = {.lex_state = 94, .external_lex_state = 13}, - [1601] = {.lex_state = 94, .external_lex_state = 13}, - [1602] = {.lex_state = 94, .external_lex_state = 13}, - [1603] = {.lex_state = 84}, - [1604] = {.lex_state = 94, .external_lex_state = 13}, - [1605] = {.lex_state = 94, .external_lex_state = 13}, - [1606] = {.lex_state = 84}, - [1607] = {.lex_state = 84}, - [1608] = {.lex_state = 94, .external_lex_state = 13}, - [1609] = {.lex_state = 94, .external_lex_state = 13}, - [1610] = {.lex_state = 94, .external_lex_state = 13}, - [1611] = {.lex_state = 84}, - [1612] = {.lex_state = 94, .external_lex_state = 13}, - [1613] = {.lex_state = 94, .external_lex_state = 13}, - [1614] = {.lex_state = 94, .external_lex_state = 13}, - [1615] = {.lex_state = 94, .external_lex_state = 13}, - [1616] = {.lex_state = 94, .external_lex_state = 13}, - [1617] = {.lex_state = 94, .external_lex_state = 13}, - [1618] = {.lex_state = 94, .external_lex_state = 13}, - [1619] = {.lex_state = 94, .external_lex_state = 13}, - [1620] = {.lex_state = 94, .external_lex_state = 13}, - [1621] = {.lex_state = 94, .external_lex_state = 13}, - [1622] = {.lex_state = 94, .external_lex_state = 13}, - [1623] = {.lex_state = 94, .external_lex_state = 13}, - [1624] = {.lex_state = 94, .external_lex_state = 13}, - [1625] = {.lex_state = 94, .external_lex_state = 13}, - [1626] = {.lex_state = 94, .external_lex_state = 13}, - [1627] = {.lex_state = 94, .external_lex_state = 13}, - [1628] = {.lex_state = 94, .external_lex_state = 13}, - [1629] = {.lex_state = 94, .external_lex_state = 13}, - [1630] = {.lex_state = 94, .external_lex_state = 13}, - [1631] = {.lex_state = 94, .external_lex_state = 13}, - [1632] = {.lex_state = 94, .external_lex_state = 13}, - [1633] = {.lex_state = 94, .external_lex_state = 13}, - [1634] = {.lex_state = 94, .external_lex_state = 13}, - [1635] = {.lex_state = 94, .external_lex_state = 13}, - [1636] = {.lex_state = 94, .external_lex_state = 13}, - [1637] = {.lex_state = 94, .external_lex_state = 13}, - [1638] = {.lex_state = 94, .external_lex_state = 13}, - [1639] = {.lex_state = 94, .external_lex_state = 13}, - [1640] = {.lex_state = 94, .external_lex_state = 13}, - [1641] = {.lex_state = 94, .external_lex_state = 13}, - [1642] = {.lex_state = 94, .external_lex_state = 13}, - [1643] = {.lex_state = 94, .external_lex_state = 13}, - [1644] = {.lex_state = 94, .external_lex_state = 13}, - [1645] = {.lex_state = 94, .external_lex_state = 13}, - [1646] = {.lex_state = 94, .external_lex_state = 13}, - [1647] = {.lex_state = 94, .external_lex_state = 13}, - [1648] = {.lex_state = 94, .external_lex_state = 13}, - [1649] = {.lex_state = 94, .external_lex_state = 13}, - [1650] = {.lex_state = 94, .external_lex_state = 13}, - [1651] = {.lex_state = 94, .external_lex_state = 13}, - [1652] = {.lex_state = 94, .external_lex_state = 13}, - [1653] = {.lex_state = 84}, - [1654] = {.lex_state = 94, .external_lex_state = 13}, - [1655] = {.lex_state = 94, .external_lex_state = 13}, - [1656] = {.lex_state = 28, .external_lex_state = 6}, - [1657] = {.lex_state = 77, .external_lex_state = 13}, - [1658] = {.lex_state = 28, .external_lex_state = 6}, - [1659] = {.lex_state = 28, .external_lex_state = 6}, - [1660] = {.lex_state = 28, .external_lex_state = 6}, - [1661] = {.lex_state = 28, .external_lex_state = 6}, - [1662] = {.lex_state = 28, .external_lex_state = 6}, - [1663] = {.lex_state = 28, .external_lex_state = 6}, - [1664] = {.lex_state = 28, .external_lex_state = 6}, - [1665] = {.lex_state = 187, .external_lex_state = 6}, - [1666] = {.lex_state = 28, .external_lex_state = 6}, - [1667] = {.lex_state = 28, .external_lex_state = 8}, - [1668] = {.lex_state = 187, .external_lex_state = 6}, - [1669] = {.lex_state = 28, .external_lex_state = 6}, - [1670] = {.lex_state = 28, .external_lex_state = 6}, - [1671] = {.lex_state = 187, .external_lex_state = 6}, - [1672] = {.lex_state = 28, .external_lex_state = 6}, - [1673] = {.lex_state = 187, .external_lex_state = 6}, - [1674] = {.lex_state = 187, .external_lex_state = 6}, - [1675] = {.lex_state = 187, .external_lex_state = 6}, - [1676] = {.lex_state = 187, .external_lex_state = 6}, - [1677] = {.lex_state = 187, .external_lex_state = 6}, - [1678] = {.lex_state = 37, .external_lex_state = 15}, - [1679] = {.lex_state = 28, .external_lex_state = 8}, - [1680] = {.lex_state = 28, .external_lex_state = 8}, - [1681] = {.lex_state = 28, .external_lex_state = 8}, - [1682] = {.lex_state = 28, .external_lex_state = 6}, - [1683] = {.lex_state = 187, .external_lex_state = 6}, - [1684] = {.lex_state = 28, .external_lex_state = 8}, - [1685] = {.lex_state = 96, .external_lex_state = 2}, - [1686] = {.lex_state = 28, .external_lex_state = 6}, - [1687] = {.lex_state = 187, .external_lex_state = 6}, - [1688] = {.lex_state = 28, .external_lex_state = 6}, - [1689] = {.lex_state = 74, .external_lex_state = 10}, - [1690] = {.lex_state = 187, .external_lex_state = 6}, - [1691] = {.lex_state = 187, .external_lex_state = 8}, - [1692] = {.lex_state = 28, .external_lex_state = 8}, - [1693] = {.lex_state = 187, .external_lex_state = 6}, - [1694] = {.lex_state = 28, .external_lex_state = 6}, - [1695] = {.lex_state = 187, .external_lex_state = 6}, - [1696] = {.lex_state = 28, .external_lex_state = 8}, - [1697] = {.lex_state = 187, .external_lex_state = 6}, - [1698] = {.lex_state = 28, .external_lex_state = 8}, - [1699] = {.lex_state = 28, .external_lex_state = 6}, - [1700] = {.lex_state = 187, .external_lex_state = 6}, - [1701] = {.lex_state = 97}, - [1702] = {.lex_state = 187, .external_lex_state = 8}, - [1703] = {.lex_state = 187, .external_lex_state = 6}, - [1704] = {.lex_state = 28, .external_lex_state = 8}, - [1705] = {.lex_state = 75, .external_lex_state = 10}, - [1706] = {.lex_state = 187, .external_lex_state = 6}, - [1707] = {.lex_state = 187, .external_lex_state = 6}, - [1708] = {.lex_state = 187, .external_lex_state = 6}, - [1709] = {.lex_state = 28, .external_lex_state = 8}, - [1710] = {.lex_state = 187, .external_lex_state = 8}, - [1711] = {.lex_state = 96, .external_lex_state = 16}, - [1712] = {.lex_state = 187, .external_lex_state = 6}, - [1713] = {.lex_state = 97}, - [1714] = {.lex_state = 187, .external_lex_state = 8}, - [1715] = {.lex_state = 97}, - [1716] = {.lex_state = 28, .external_lex_state = 8}, - [1717] = {.lex_state = 96, .external_lex_state = 16}, - [1718] = {.lex_state = 187, .external_lex_state = 8}, - [1719] = {.lex_state = 37, .external_lex_state = 15}, - [1720] = {.lex_state = 75, .external_lex_state = 10}, - [1721] = {.lex_state = 28, .external_lex_state = 8}, - [1722] = {.lex_state = 28, .external_lex_state = 8}, - [1723] = {.lex_state = 96, .external_lex_state = 16}, - [1724] = {.lex_state = 97}, - [1725] = {.lex_state = 97}, - [1726] = {.lex_state = 28, .external_lex_state = 8}, - [1727] = {.lex_state = 28, .external_lex_state = 6}, - [1728] = {.lex_state = 187, .external_lex_state = 6}, - [1729] = {.lex_state = 75, .external_lex_state = 10}, - [1730] = {.lex_state = 37, .external_lex_state = 15}, - [1731] = {.lex_state = 97}, - [1732] = {.lex_state = 187, .external_lex_state = 6}, - [1733] = {.lex_state = 28, .external_lex_state = 8}, - [1734] = {.lex_state = 28, .external_lex_state = 8}, - [1735] = {.lex_state = 28, .external_lex_state = 8}, - [1736] = {.lex_state = 28, .external_lex_state = 8}, - [1737] = {.lex_state = 97}, - [1738] = {.lex_state = 187, .external_lex_state = 6}, - [1739] = {.lex_state = 37, .external_lex_state = 10}, - [1740] = {.lex_state = 28, .external_lex_state = 8}, - [1741] = {.lex_state = 28, .external_lex_state = 8}, - [1742] = {.lex_state = 28, .external_lex_state = 8}, - [1743] = {.lex_state = 28, .external_lex_state = 8}, - [1744] = {.lex_state = 28, .external_lex_state = 8}, - [1745] = {.lex_state = 28, .external_lex_state = 8}, - [1746] = {.lex_state = 28, .external_lex_state = 8}, - [1747] = {.lex_state = 28, .external_lex_state = 8}, - [1748] = {.lex_state = 28, .external_lex_state = 8}, - [1749] = {.lex_state = 28, .external_lex_state = 8}, - [1750] = {.lex_state = 28, .external_lex_state = 8}, - [1751] = {.lex_state = 28, .external_lex_state = 8}, - [1752] = {.lex_state = 28, .external_lex_state = 8}, - [1753] = {.lex_state = 96, .external_lex_state = 16}, - [1754] = {.lex_state = 28, .external_lex_state = 8}, - [1755] = {.lex_state = 97}, - [1756] = {.lex_state = 97}, - [1757] = {.lex_state = 187, .external_lex_state = 6}, - [1758] = {.lex_state = 28, .external_lex_state = 8}, - [1759] = {.lex_state = 75, .external_lex_state = 10}, - [1760] = {.lex_state = 37, .external_lex_state = 10}, - [1761] = {.lex_state = 28, .external_lex_state = 8}, - [1762] = {.lex_state = 97}, - [1763] = {.lex_state = 28, .external_lex_state = 8}, - [1764] = {.lex_state = 97}, - [1765] = {.lex_state = 187, .external_lex_state = 8}, - [1766] = {.lex_state = 187, .external_lex_state = 6}, - [1767] = {.lex_state = 28, .external_lex_state = 8}, - [1768] = {.lex_state = 28, .external_lex_state = 8}, - [1769] = {.lex_state = 187, .external_lex_state = 8}, - [1770] = {.lex_state = 187, .external_lex_state = 8}, - [1771] = {.lex_state = 187, .external_lex_state = 6}, - [1772] = {.lex_state = 37, .external_lex_state = 15}, - [1773] = {.lex_state = 96, .external_lex_state = 16}, - [1774] = {.lex_state = 97}, - [1775] = {.lex_state = 28, .external_lex_state = 8}, - [1776] = {.lex_state = 28, .external_lex_state = 8}, - [1777] = {.lex_state = 28, .external_lex_state = 6}, - [1778] = {.lex_state = 28, .external_lex_state = 6}, - [1779] = {.lex_state = 187, .external_lex_state = 8}, - [1780] = {.lex_state = 37, .external_lex_state = 15}, - [1781] = {.lex_state = 37, .external_lex_state = 15}, - [1782] = {.lex_state = 37, .external_lex_state = 15}, - [1783] = {.lex_state = 37, .external_lex_state = 15}, - [1784] = {.lex_state = 37, .external_lex_state = 15}, - [1785] = {.lex_state = 37, .external_lex_state = 15}, - [1786] = {.lex_state = 28, .external_lex_state = 6}, - [1787] = {.lex_state = 187, .external_lex_state = 8}, - [1788] = {.lex_state = 187, .external_lex_state = 8}, - [1789] = {.lex_state = 187, .external_lex_state = 8}, - [1790] = {.lex_state = 37, .external_lex_state = 15}, - [1791] = {.lex_state = 37, .external_lex_state = 15}, - [1792] = {.lex_state = 37, .external_lex_state = 15}, - [1793] = {.lex_state = 187, .external_lex_state = 8}, - [1794] = {.lex_state = 28, .external_lex_state = 6}, - [1795] = {.lex_state = 28, .external_lex_state = 6}, - [1796] = {.lex_state = 37, .external_lex_state = 15}, - [1797] = {.lex_state = 96}, - [1798] = {.lex_state = 37, .external_lex_state = 15}, - [1799] = {.lex_state = 37, .external_lex_state = 15}, - [1800] = {.lex_state = 37, .external_lex_state = 15}, - [1801] = {.lex_state = 37, .external_lex_state = 15}, - [1802] = {.lex_state = 28, .external_lex_state = 6}, - [1803] = {.lex_state = 187, .external_lex_state = 8}, - [1804] = {.lex_state = 187, .external_lex_state = 8}, - [1805] = {.lex_state = 28, .external_lex_state = 6}, - [1806] = {.lex_state = 187, .external_lex_state = 8}, - [1807] = {.lex_state = 187, .external_lex_state = 6}, - [1808] = {.lex_state = 187, .external_lex_state = 8}, - [1809] = {.lex_state = 187, .external_lex_state = 8}, - [1810] = {.lex_state = 187, .external_lex_state = 8}, - [1811] = {.lex_state = 96}, - [1812] = {.lex_state = 187, .external_lex_state = 8}, - [1813] = {.lex_state = 187, .external_lex_state = 8}, - [1814] = {.lex_state = 37, .external_lex_state = 15}, - [1815] = {.lex_state = 187, .external_lex_state = 8}, - [1816] = {.lex_state = 37, .external_lex_state = 15}, - [1817] = {.lex_state = 37, .external_lex_state = 15}, - [1818] = {.lex_state = 37, .external_lex_state = 15}, - [1819] = {.lex_state = 37, .external_lex_state = 15}, - [1820] = {.lex_state = 37, .external_lex_state = 15}, - [1821] = {.lex_state = 37, .external_lex_state = 15}, - [1822] = {.lex_state = 187, .external_lex_state = 8}, - [1823] = {.lex_state = 37, .external_lex_state = 15}, - [1824] = {.lex_state = 96}, - [1825] = {.lex_state = 37, .external_lex_state = 15}, - [1826] = {.lex_state = 28, .external_lex_state = 6}, - [1827] = {.lex_state = 96}, - [1828] = {.lex_state = 187, .external_lex_state = 6}, - [1829] = {.lex_state = 187, .external_lex_state = 8}, - [1830] = {.lex_state = 187, .external_lex_state = 8}, - [1831] = {.lex_state = 187, .external_lex_state = 8}, - [1832] = {.lex_state = 187, .external_lex_state = 8}, - [1833] = {.lex_state = 37, .external_lex_state = 10}, - [1834] = {.lex_state = 37, .external_lex_state = 15}, - [1835] = {.lex_state = 28, .external_lex_state = 6}, - [1836] = {.lex_state = 37, .external_lex_state = 15}, - [1837] = {.lex_state = 28, .external_lex_state = 6}, - [1838] = {.lex_state = 28, .external_lex_state = 6}, - [1839] = {.lex_state = 28, .external_lex_state = 6}, - [1840] = {.lex_state = 187, .external_lex_state = 8}, - [1841] = {.lex_state = 187, .external_lex_state = 6}, - [1842] = {.lex_state = 96, .external_lex_state = 2}, - [1843] = {.lex_state = 96, .external_lex_state = 16}, - [1844] = {.lex_state = 96}, - [1845] = {.lex_state = 199, .external_lex_state = 17}, - [1846] = {.lex_state = 28, .external_lex_state = 6}, - [1847] = {.lex_state = 96}, - [1848] = {.lex_state = 28, .external_lex_state = 6}, - [1849] = {.lex_state = 96, .external_lex_state = 16}, - [1850] = {.lex_state = 96}, - [1851] = {.lex_state = 96}, - [1852] = {.lex_state = 199, .external_lex_state = 17}, - [1853] = {.lex_state = 90, .external_lex_state = 17}, - [1854] = {.lex_state = 96, .external_lex_state = 2}, - [1855] = {.lex_state = 187, .external_lex_state = 8}, - [1856] = {.lex_state = 187, .external_lex_state = 8}, - [1857] = {.lex_state = 199, .external_lex_state = 17}, - [1858] = {.lex_state = 187, .external_lex_state = 8}, - [1859] = {.lex_state = 187, .external_lex_state = 6}, - [1860] = {.lex_state = 96, .external_lex_state = 2}, - [1861] = {.lex_state = 187, .external_lex_state = 8}, - [1862] = {.lex_state = 28, .external_lex_state = 6}, - [1863] = {.lex_state = 187, .external_lex_state = 8}, - [1864] = {.lex_state = 28, .external_lex_state = 6}, - [1865] = {.lex_state = 28, .external_lex_state = 6}, - [1866] = {.lex_state = 28, .external_lex_state = 6}, - [1867] = {.lex_state = 28, .external_lex_state = 6}, - [1868] = {.lex_state = 28, .external_lex_state = 6}, - [1869] = {.lex_state = 96}, - [1870] = {.lex_state = 96}, - [1871] = {.lex_state = 96}, - [1872] = {.lex_state = 187, .external_lex_state = 6}, - [1873] = {.lex_state = 28, .external_lex_state = 6}, - [1874] = {.lex_state = 37, .external_lex_state = 15}, - [1875] = {.lex_state = 96, .external_lex_state = 16}, - [1876] = {.lex_state = 96, .external_lex_state = 16}, - [1877] = {.lex_state = 96, .external_lex_state = 16}, - [1878] = {.lex_state = 28, .external_lex_state = 6}, - [1879] = {.lex_state = 96, .external_lex_state = 16}, - [1880] = {.lex_state = 28, .external_lex_state = 6}, - [1881] = {.lex_state = 28, .external_lex_state = 6}, - [1882] = {.lex_state = 96, .external_lex_state = 16}, - [1883] = {.lex_state = 28, .external_lex_state = 6}, - [1884] = {.lex_state = 96, .external_lex_state = 16}, - [1885] = {.lex_state = 96, .external_lex_state = 16}, - [1886] = {.lex_state = 96, .external_lex_state = 16}, - [1887] = {.lex_state = 96, .external_lex_state = 16}, - [1888] = {.lex_state = 96, .external_lex_state = 16}, - [1889] = {.lex_state = 96, .external_lex_state = 16}, - [1890] = {.lex_state = 28, .external_lex_state = 6}, - [1891] = {.lex_state = 28, .external_lex_state = 6}, - [1892] = {.lex_state = 28, .external_lex_state = 6}, - [1893] = {.lex_state = 28, .external_lex_state = 6}, - [1894] = {.lex_state = 28, .external_lex_state = 6}, - [1895] = {.lex_state = 28, .external_lex_state = 6}, - [1896] = {.lex_state = 28, .external_lex_state = 6}, - [1897] = {.lex_state = 28, .external_lex_state = 6}, - [1898] = {.lex_state = 96, .external_lex_state = 16}, - [1899] = {.lex_state = 96, .external_lex_state = 16}, - [1900] = {.lex_state = 96, .external_lex_state = 16}, - [1901] = {.lex_state = 96, .external_lex_state = 16}, - [1902] = {.lex_state = 96, .external_lex_state = 16}, - [1903] = {.lex_state = 96, .external_lex_state = 16}, - [1904] = {.lex_state = 28, .external_lex_state = 6}, - [1905] = {.lex_state = 28, .external_lex_state = 6}, - [1906] = {.lex_state = 28, .external_lex_state = 6}, - [1907] = {.lex_state = 28, .external_lex_state = 6}, - [1908] = {.lex_state = 28, .external_lex_state = 6}, - [1909] = {.lex_state = 96}, - [1910] = {.lex_state = 96, .external_lex_state = 16}, - [1911] = {.lex_state = 28, .external_lex_state = 6}, - [1912] = {.lex_state = 28, .external_lex_state = 6}, - [1913] = {.lex_state = 187, .external_lex_state = 8}, - [1914] = {.lex_state = 187, .external_lex_state = 6}, - [1915] = {.lex_state = 28, .external_lex_state = 6}, - [1916] = {.lex_state = 96, .external_lex_state = 16}, - [1917] = {.lex_state = 96, .external_lex_state = 16}, - [1918] = {.lex_state = 187, .external_lex_state = 8}, - [1919] = {.lex_state = 187, .external_lex_state = 8}, - [1920] = {.lex_state = 96, .external_lex_state = 16}, - [1921] = {.lex_state = 28, .external_lex_state = 6}, - [1922] = {.lex_state = 96, .external_lex_state = 16}, - [1923] = {.lex_state = 96, .external_lex_state = 16}, - [1924] = {.lex_state = 96, .external_lex_state = 16}, - [1925] = {.lex_state = 28, .external_lex_state = 6}, - [1926] = {.lex_state = 187, .external_lex_state = 8}, - [1927] = {.lex_state = 28, .external_lex_state = 6}, - [1928] = {.lex_state = 187, .external_lex_state = 8}, - [1929] = {.lex_state = 96, .external_lex_state = 16}, - [1930] = {.lex_state = 187, .external_lex_state = 8}, - [1931] = {.lex_state = 28, .external_lex_state = 6}, - [1932] = {.lex_state = 28, .external_lex_state = 6}, - [1933] = {.lex_state = 187, .external_lex_state = 8}, - [1934] = {.lex_state = 28, .external_lex_state = 6}, - [1935] = {.lex_state = 96, .external_lex_state = 2}, - [1936] = {.lex_state = 187, .external_lex_state = 6}, - [1937] = {.lex_state = 187, .external_lex_state = 6}, - [1938] = {.lex_state = 96, .external_lex_state = 2}, - [1939] = {.lex_state = 187, .external_lex_state = 8}, - [1940] = {.lex_state = 187, .external_lex_state = 6}, - [1941] = {.lex_state = 187, .external_lex_state = 8}, - [1942] = {.lex_state = 199, .external_lex_state = 17}, - [1943] = {.lex_state = 187, .external_lex_state = 8}, - [1944] = {.lex_state = 187, .external_lex_state = 8}, - [1945] = {.lex_state = 90}, - [1946] = {.lex_state = 187, .external_lex_state = 8}, - [1947] = {.lex_state = 37, .external_lex_state = 10}, - [1948] = {.lex_state = 187, .external_lex_state = 8}, - [1949] = {.lex_state = 96, .external_lex_state = 2}, - [1950] = {.lex_state = 187, .external_lex_state = 8}, - [1951] = {.lex_state = 96, .external_lex_state = 2}, - [1952] = {.lex_state = 187, .external_lex_state = 8}, - [1953] = {.lex_state = 187, .external_lex_state = 6}, - [1954] = {.lex_state = 187, .external_lex_state = 8}, - [1955] = {.lex_state = 187, .external_lex_state = 8}, - [1956] = {.lex_state = 187, .external_lex_state = 8}, - [1957] = {.lex_state = 96, .external_lex_state = 2}, - [1958] = {.lex_state = 187, .external_lex_state = 8}, - [1959] = {.lex_state = 187, .external_lex_state = 8}, - [1960] = {.lex_state = 187, .external_lex_state = 8}, - [1961] = {.lex_state = 187, .external_lex_state = 8}, - [1962] = {.lex_state = 187, .external_lex_state = 8}, - [1963] = {.lex_state = 187, .external_lex_state = 8}, - [1964] = {.lex_state = 37, .external_lex_state = 10}, - [1965] = {.lex_state = 187, .external_lex_state = 8}, - [1966] = {.lex_state = 96, .external_lex_state = 2}, - [1967] = {.lex_state = 96, .external_lex_state = 2}, - [1968] = {.lex_state = 96, .external_lex_state = 2}, - [1969] = {.lex_state = 187, .external_lex_state = 8}, - [1970] = {.lex_state = 187, .external_lex_state = 8}, - [1971] = {.lex_state = 187, .external_lex_state = 8}, - [1972] = {.lex_state = 187, .external_lex_state = 8}, - [1973] = {.lex_state = 187, .external_lex_state = 8}, - [1974] = {.lex_state = 37, .external_lex_state = 10}, - [1975] = {.lex_state = 96, .external_lex_state = 18}, - [1976] = {.lex_state = 96, .external_lex_state = 2}, - [1977] = {.lex_state = 187, .external_lex_state = 8}, - [1978] = {.lex_state = 187, .external_lex_state = 6}, - [1979] = {.lex_state = 187, .external_lex_state = 6}, - [1980] = {.lex_state = 96, .external_lex_state = 18}, - [1981] = {.lex_state = 199, .external_lex_state = 17}, - [1982] = {.lex_state = 96}, - [1983] = {.lex_state = 96, .external_lex_state = 2}, - [1984] = {.lex_state = 187, .external_lex_state = 6}, - [1985] = {.lex_state = 187, .external_lex_state = 6}, - [1986] = {.lex_state = 187, .external_lex_state = 6}, - [1987] = {.lex_state = 187, .external_lex_state = 6}, - [1988] = {.lex_state = 199, .external_lex_state = 17}, - [1989] = {.lex_state = 187, .external_lex_state = 6}, - [1990] = {.lex_state = 187, .external_lex_state = 8}, - [1991] = {.lex_state = 187, .external_lex_state = 6}, - [1992] = {.lex_state = 187, .external_lex_state = 6}, - [1993] = {.lex_state = 96, .external_lex_state = 18}, - [1994] = {.lex_state = 96, .external_lex_state = 2}, - [1995] = {.lex_state = 187, .external_lex_state = 6}, - [1996] = {.lex_state = 199, .external_lex_state = 17}, - [1997] = {.lex_state = 96, .external_lex_state = 2}, - [1998] = {.lex_state = 78}, - [1999] = {.lex_state = 96, .external_lex_state = 2}, - [2000] = {.lex_state = 187, .external_lex_state = 6}, - [2001] = {.lex_state = 96, .external_lex_state = 18}, - [2002] = {.lex_state = 187, .external_lex_state = 6}, - [2003] = {.lex_state = 187, .external_lex_state = 6}, - [2004] = {.lex_state = 199, .external_lex_state = 17}, - [2005] = {.lex_state = 199, .external_lex_state = 17}, - [2006] = {.lex_state = 96, .external_lex_state = 2}, - [2007] = {.lex_state = 37, .external_lex_state = 10}, - [2008] = {.lex_state = 96, .external_lex_state = 2}, - [2009] = {.lex_state = 96, .external_lex_state = 2}, - [2010] = {.lex_state = 187, .external_lex_state = 6}, - [2011] = {.lex_state = 187, .external_lex_state = 6}, - [2012] = {.lex_state = 91}, - [2013] = {.lex_state = 199, .external_lex_state = 17}, - [2014] = {.lex_state = 187, .external_lex_state = 6}, - [2015] = {.lex_state = 187, .external_lex_state = 6}, - [2016] = {.lex_state = 96, .external_lex_state = 2}, - [2017] = {.lex_state = 187, .external_lex_state = 6}, - [2018] = {.lex_state = 96, .external_lex_state = 2}, - [2019] = {.lex_state = 90}, - [2020] = {.lex_state = 187, .external_lex_state = 8}, - [2021] = {.lex_state = 96, .external_lex_state = 2}, - [2022] = {.lex_state = 96, .external_lex_state = 2}, - [2023] = {.lex_state = 199, .external_lex_state = 17}, - [2024] = {.lex_state = 37, .external_lex_state = 10}, - [2025] = {.lex_state = 91, .external_lex_state = 17}, - [2026] = {.lex_state = 187, .external_lex_state = 6}, - [2027] = {.lex_state = 92, .external_lex_state = 19}, - [2028] = {.lex_state = 199, .external_lex_state = 17}, - [2029] = {.lex_state = 199, .external_lex_state = 17}, - [2030] = {.lex_state = 199, .external_lex_state = 17}, - [2031] = {.lex_state = 96, .external_lex_state = 2}, - [2032] = {.lex_state = 187, .external_lex_state = 6}, - [2033] = {.lex_state = 37, .external_lex_state = 10}, - [2034] = {.lex_state = 37, .external_lex_state = 10}, - [2035] = {.lex_state = 96, .external_lex_state = 2}, - [2036] = {.lex_state = 37, .external_lex_state = 10}, - [2037] = {.lex_state = 187, .external_lex_state = 6}, - [2038] = {.lex_state = 187, .external_lex_state = 6}, - [2039] = {.lex_state = 96, .external_lex_state = 2}, - [2040] = {.lex_state = 96, .external_lex_state = 18}, - [2041] = {.lex_state = 199, .external_lex_state = 17}, - [2042] = {.lex_state = 96, .external_lex_state = 2}, - [2043] = {.lex_state = 96, .external_lex_state = 2}, - [2044] = {.lex_state = 187, .external_lex_state = 6}, - [2045] = {.lex_state = 37, .external_lex_state = 10}, - [2046] = {.lex_state = 187, .external_lex_state = 6}, - [2047] = {.lex_state = 96, .external_lex_state = 2}, - [2048] = {.lex_state = 187, .external_lex_state = 6}, - [2049] = {.lex_state = 187, .external_lex_state = 6}, - [2050] = {.lex_state = 199, .external_lex_state = 17}, - [2051] = {.lex_state = 96, .external_lex_state = 2}, - [2052] = {.lex_state = 199, .external_lex_state = 17}, - [2053] = {.lex_state = 96, .external_lex_state = 2}, - [2054] = {.lex_state = 96, .external_lex_state = 18}, - [2055] = {.lex_state = 187, .external_lex_state = 6}, - [2056] = {.lex_state = 187, .external_lex_state = 6}, - [2057] = {.lex_state = 96, .external_lex_state = 18}, - [2058] = {.lex_state = 187, .external_lex_state = 6}, - [2059] = {.lex_state = 187, .external_lex_state = 6}, - [2060] = {.lex_state = 187, .external_lex_state = 6}, - [2061] = {.lex_state = 187, .external_lex_state = 6}, - [2062] = {.lex_state = 199, .external_lex_state = 17}, - [2063] = {.lex_state = 96, .external_lex_state = 2}, - [2064] = {.lex_state = 37, .external_lex_state = 10}, - [2065] = {.lex_state = 199, .external_lex_state = 17}, - [2066] = {.lex_state = 187, .external_lex_state = 6}, - [2067] = {.lex_state = 96, .external_lex_state = 2}, - [2068] = {.lex_state = 187, .external_lex_state = 6}, - [2069] = {.lex_state = 199, .external_lex_state = 17}, - [2070] = {.lex_state = 187, .external_lex_state = 6}, - [2071] = {.lex_state = 96, .external_lex_state = 2}, - [2072] = {.lex_state = 199, .external_lex_state = 17}, - [2073] = {.lex_state = 187, .external_lex_state = 6}, - [2074] = {.lex_state = 96, .external_lex_state = 2}, - [2075] = {.lex_state = 199, .external_lex_state = 17}, - [2076] = {.lex_state = 199, .external_lex_state = 17}, - [2077] = {.lex_state = 37, .external_lex_state = 10}, - [2078] = {.lex_state = 37, .external_lex_state = 10}, - [2079] = {.lex_state = 199, .external_lex_state = 17}, - [2080] = {.lex_state = 199, .external_lex_state = 17}, - [2081] = {.lex_state = 96, .external_lex_state = 2}, - [2082] = {.lex_state = 37, .external_lex_state = 10}, - [2083] = {.lex_state = 96, .external_lex_state = 2}, - [2084] = {.lex_state = 199, .external_lex_state = 17}, - [2085] = {.lex_state = 37, .external_lex_state = 10}, - [2086] = {.lex_state = 199, .external_lex_state = 17}, - [2087] = {.lex_state = 187, .external_lex_state = 6}, - [2088] = {.lex_state = 37, .external_lex_state = 10}, - [2089] = {.lex_state = 187, .external_lex_state = 6}, - [2090] = {.lex_state = 96, .external_lex_state = 18}, - [2091] = {.lex_state = 96, .external_lex_state = 2}, - [2092] = {.lex_state = 187, .external_lex_state = 6}, - [2093] = {.lex_state = 91, .external_lex_state = 17}, - [2094] = {.lex_state = 199, .external_lex_state = 17}, - [2095] = {.lex_state = 187, .external_lex_state = 6}, - [2096] = {.lex_state = 37, .external_lex_state = 10}, - [2097] = {.lex_state = 187, .external_lex_state = 6}, - [2098] = {.lex_state = 187, .external_lex_state = 6}, - [2099] = {.lex_state = 187, .external_lex_state = 6}, - [2100] = {.lex_state = 199, .external_lex_state = 17}, - [2101] = {.lex_state = 187, .external_lex_state = 6}, - [2102] = {.lex_state = 199, .external_lex_state = 17}, - [2103] = {.lex_state = 96, .external_lex_state = 18}, - [2104] = {.lex_state = 91, .external_lex_state = 17}, - [2105] = {.lex_state = 91, .external_lex_state = 17}, - [2106] = {.lex_state = 187, .external_lex_state = 6}, - [2107] = {.lex_state = 96, .external_lex_state = 2}, - [2108] = {.lex_state = 94, .external_lex_state = 20}, - [2109] = {.lex_state = 199}, - [2110] = {.lex_state = 187, .external_lex_state = 6}, - [2111] = {.lex_state = 187, .external_lex_state = 6}, - [2112] = {.lex_state = 187, .external_lex_state = 6}, - [2113] = {.lex_state = 96, .external_lex_state = 2}, - [2114] = {.lex_state = 94, .external_lex_state = 20}, - [2115] = {.lex_state = 96, .external_lex_state = 2}, - [2116] = {.lex_state = 199}, - [2117] = {.lex_state = 94, .external_lex_state = 20}, - [2118] = {.lex_state = 91, .external_lex_state = 17}, - [2119] = {.lex_state = 96}, - [2120] = {.lex_state = 96}, - [2121] = {.lex_state = 91}, - [2122] = {.lex_state = 91, .external_lex_state = 17}, - [2123] = {.lex_state = 96}, - [2124] = {.lex_state = 91, .external_lex_state = 17}, - [2125] = {.lex_state = 91, .external_lex_state = 17}, - [2126] = {.lex_state = 96}, - [2127] = {.lex_state = 91, .external_lex_state = 17}, - [2128] = {.lex_state = 91, .external_lex_state = 17}, - [2129] = {.lex_state = 91, .external_lex_state = 17}, - [2130] = {.lex_state = 96}, - [2131] = {.lex_state = 91, .external_lex_state = 17}, - [2132] = {.lex_state = 91, .external_lex_state = 17}, - [2133] = {.lex_state = 96}, - [2134] = {.lex_state = 187, .external_lex_state = 6}, - [2135] = {.lex_state = 91, .external_lex_state = 17}, - [2136] = {.lex_state = 91, .external_lex_state = 17}, - [2137] = {.lex_state = 187, .external_lex_state = 6}, - [2138] = {.lex_state = 91, .external_lex_state = 17}, - [2139] = {.lex_state = 187, .external_lex_state = 6}, - [2140] = {.lex_state = 187, .external_lex_state = 6}, - [2141] = {.lex_state = 187, .external_lex_state = 6}, - [2142] = {.lex_state = 187, .external_lex_state = 6}, - [2143] = {.lex_state = 96}, - [2144] = {.lex_state = 92, .external_lex_state = 14}, - [2145] = {.lex_state = 91, .external_lex_state = 17}, - [2146] = {.lex_state = 91, .external_lex_state = 17}, - [2147] = {.lex_state = 91, .external_lex_state = 17}, - [2148] = {.lex_state = 91, .external_lex_state = 17}, - [2149] = {.lex_state = 187, .external_lex_state = 6}, - [2150] = {.lex_state = 91, .external_lex_state = 17}, - [2151] = {.lex_state = 187, .external_lex_state = 6}, - [2152] = {.lex_state = 91, .external_lex_state = 17}, - [2153] = {.lex_state = 91, .external_lex_state = 17}, - [2154] = {.lex_state = 91, .external_lex_state = 17}, - [2155] = {.lex_state = 91, .external_lex_state = 17}, - [2156] = {.lex_state = 91, .external_lex_state = 17}, - [2157] = {.lex_state = 91, .external_lex_state = 17}, - [2158] = {.lex_state = 91, .external_lex_state = 17}, - [2159] = {.lex_state = 96}, - [2160] = {.lex_state = 91, .external_lex_state = 17}, - [2161] = {.lex_state = 187, .external_lex_state = 6}, - [2162] = {.lex_state = 187, .external_lex_state = 6}, - [2163] = {.lex_state = 93, .external_lex_state = 20}, - [2164] = {.lex_state = 187, .external_lex_state = 6}, - [2165] = {.lex_state = 91}, - [2166] = {.lex_state = 93, .external_lex_state = 20}, - [2167] = {.lex_state = 187, .external_lex_state = 6}, - [2168] = {.lex_state = 91, .external_lex_state = 17}, - [2169] = {.lex_state = 96}, - [2170] = {.lex_state = 94, .external_lex_state = 20}, - [2171] = {.lex_state = 187, .external_lex_state = 6}, - [2172] = {.lex_state = 187, .external_lex_state = 6}, - [2173] = {.lex_state = 96}, - [2174] = {.lex_state = 92, .external_lex_state = 19}, - [2175] = {.lex_state = 93, .external_lex_state = 20}, - [2176] = {.lex_state = 187, .external_lex_state = 6}, - [2177] = {.lex_state = 187, .external_lex_state = 6}, - [2178] = {.lex_state = 92, .external_lex_state = 19}, - [2179] = {.lex_state = 92, .external_lex_state = 14}, - [2180] = {.lex_state = 90}, - [2181] = {.lex_state = 187, .external_lex_state = 6}, - [2182] = {.lex_state = 96}, - [2183] = {.lex_state = 187, .external_lex_state = 6}, - [2184] = {.lex_state = 187, .external_lex_state = 6}, - [2185] = {.lex_state = 187, .external_lex_state = 6}, - [2186] = {.lex_state = 187, .external_lex_state = 6}, - [2187] = {.lex_state = 199}, - [2188] = {.lex_state = 187, .external_lex_state = 6}, - [2189] = {.lex_state = 96}, - [2190] = {.lex_state = 187, .external_lex_state = 6}, - [2191] = {.lex_state = 92, .external_lex_state = 19}, - [2192] = {.lex_state = 187, .external_lex_state = 6}, - [2193] = {.lex_state = 187, .external_lex_state = 6}, - [2194] = {.lex_state = 187, .external_lex_state = 6}, - [2195] = {.lex_state = 96}, - [2196] = {.lex_state = 199}, - [2197] = {.lex_state = 187, .external_lex_state = 6}, - [2198] = {.lex_state = 96}, - [2199] = {.lex_state = 93, .external_lex_state = 20}, - [2200] = {.lex_state = 187, .external_lex_state = 6}, - [2201] = {.lex_state = 187, .external_lex_state = 6}, - [2202] = {.lex_state = 96}, - [2203] = {.lex_state = 199}, - [2204] = {.lex_state = 187, .external_lex_state = 6}, - [2205] = {.lex_state = 187, .external_lex_state = 6}, - [2206] = {.lex_state = 187, .external_lex_state = 6}, - [2207] = {.lex_state = 187, .external_lex_state = 6}, - [2208] = {.lex_state = 187, .external_lex_state = 6}, - [2209] = {.lex_state = 96}, - [2210] = {.lex_state = 187, .external_lex_state = 6}, - [2211] = {.lex_state = 187, .external_lex_state = 6}, - [2212] = {.lex_state = 187, .external_lex_state = 6}, - [2213] = {.lex_state = 187, .external_lex_state = 6}, - [2214] = {.lex_state = 187, .external_lex_state = 6}, - [2215] = {.lex_state = 187, .external_lex_state = 6}, - [2216] = {.lex_state = 199}, - [2217] = {.lex_state = 199}, - [2218] = {.lex_state = 96}, - [2219] = {.lex_state = 199}, - [2220] = {.lex_state = 187, .external_lex_state = 6}, - [2221] = {.lex_state = 187, .external_lex_state = 6}, - [2222] = {.lex_state = 187, .external_lex_state = 6}, - [2223] = {.lex_state = 96}, - [2224] = {.lex_state = 96}, - [2225] = {.lex_state = 98, .external_lex_state = 13}, - [2226] = {.lex_state = 94, .external_lex_state = 20}, - [2227] = {.lex_state = 98, .external_lex_state = 13}, - [2228] = {.lex_state = 98, .external_lex_state = 13}, - [2229] = {.lex_state = 92, .external_lex_state = 19}, - [2230] = {.lex_state = 98, .external_lex_state = 13}, - [2231] = {.lex_state = 98, .external_lex_state = 13}, - [2232] = {.lex_state = 96}, - [2233] = {.lex_state = 98, .external_lex_state = 13}, - [2234] = {.lex_state = 98, .external_lex_state = 13}, - [2235] = {.lex_state = 92, .external_lex_state = 19}, - [2236] = {.lex_state = 92, .external_lex_state = 19}, - [2237] = {.lex_state = 92, .external_lex_state = 19}, - [2238] = {.lex_state = 92, .external_lex_state = 19}, - [2239] = {.lex_state = 98, .external_lex_state = 13}, - [2240] = {.lex_state = 98, .external_lex_state = 13}, - [2241] = {.lex_state = 199}, - [2242] = {.lex_state = 98, .external_lex_state = 13}, - [2243] = {.lex_state = 98, .external_lex_state = 13}, - [2244] = {.lex_state = 98, .external_lex_state = 13}, - [2245] = {.lex_state = 92, .external_lex_state = 19}, - [2246] = {.lex_state = 98, .external_lex_state = 13}, - [2247] = {.lex_state = 92, .external_lex_state = 19}, - [2248] = {.lex_state = 92, .external_lex_state = 19}, - [2249] = {.lex_state = 94, .external_lex_state = 13}, - [2250] = {.lex_state = 94, .external_lex_state = 20}, - [2251] = {.lex_state = 98, .external_lex_state = 13}, - [2252] = {.lex_state = 92, .external_lex_state = 19}, - [2253] = {.lex_state = 94, .external_lex_state = 20}, - [2254] = {.lex_state = 199}, - [2255] = {.lex_state = 94, .external_lex_state = 20}, - [2256] = {.lex_state = 98, .external_lex_state = 13}, - [2257] = {.lex_state = 92, .external_lex_state = 19}, - [2258] = {.lex_state = 94, .external_lex_state = 20}, - [2259] = {.lex_state = 92, .external_lex_state = 19}, - [2260] = {.lex_state = 92, .external_lex_state = 19}, - [2261] = {.lex_state = 98, .external_lex_state = 13}, - [2262] = {.lex_state = 92, .external_lex_state = 19}, - [2263] = {.lex_state = 98, .external_lex_state = 13}, - [2264] = {.lex_state = 98, .external_lex_state = 13}, - [2265] = {.lex_state = 98, .external_lex_state = 13}, - [2266] = {.lex_state = 92, .external_lex_state = 19}, - [2267] = {.lex_state = 94, .external_lex_state = 20}, - [2268] = {.lex_state = 98, .external_lex_state = 13}, - [2269] = {.lex_state = 98, .external_lex_state = 13}, - [2270] = {.lex_state = 94, .external_lex_state = 20}, - [2271] = {.lex_state = 94, .external_lex_state = 20}, - [2272] = {.lex_state = 92, .external_lex_state = 19}, - [2273] = {.lex_state = 92, .external_lex_state = 19}, - [2274] = {.lex_state = 92, .external_lex_state = 19}, - [2275] = {.lex_state = 94, .external_lex_state = 20}, - [2276] = {.lex_state = 98, .external_lex_state = 13}, - [2277] = {.lex_state = 98, .external_lex_state = 13}, - [2278] = {.lex_state = 92, .external_lex_state = 19}, - [2279] = {.lex_state = 98, .external_lex_state = 13}, - [2280] = {.lex_state = 98, .external_lex_state = 13}, - [2281] = {.lex_state = 98, .external_lex_state = 13}, - [2282] = {.lex_state = 94, .external_lex_state = 20}, - [2283] = {.lex_state = 94, .external_lex_state = 20}, - [2284] = {.lex_state = 98, .external_lex_state = 13}, - [2285] = {.lex_state = 94, .external_lex_state = 13}, - [2286] = {.lex_state = 96, .external_lex_state = 12}, - [2287] = {.lex_state = 98, .external_lex_state = 13}, - [2288] = {.lex_state = 98, .external_lex_state = 13}, - [2289] = {.lex_state = 98, .external_lex_state = 13}, - [2290] = {.lex_state = 92, .external_lex_state = 19}, - [2291] = {.lex_state = 98, .external_lex_state = 13}, - [2292] = {.lex_state = 98, .external_lex_state = 13}, - [2293] = {.lex_state = 94, .external_lex_state = 20}, - [2294] = {.lex_state = 98, .external_lex_state = 13}, - [2295] = {.lex_state = 92, .external_lex_state = 19}, - [2296] = {.lex_state = 92, .external_lex_state = 14}, - [2297] = {.lex_state = 92, .external_lex_state = 19}, - [2298] = {.lex_state = 96, .external_lex_state = 12}, - [2299] = {.lex_state = 92, .external_lex_state = 19}, - [2300] = {.lex_state = 94, .external_lex_state = 20}, - [2301] = {.lex_state = 94, .external_lex_state = 20}, - [2302] = {.lex_state = 98, .external_lex_state = 13}, - [2303] = {.lex_state = 94, .external_lex_state = 20}, - [2304] = {.lex_state = 98, .external_lex_state = 13}, - [2305] = {.lex_state = 92, .external_lex_state = 19}, - [2306] = {.lex_state = 94, .external_lex_state = 20}, - [2307] = {.lex_state = 92, .external_lex_state = 19}, - [2308] = {.lex_state = 92, .external_lex_state = 19}, - [2309] = {.lex_state = 96, .external_lex_state = 12}, - [2310] = {.lex_state = 98, .external_lex_state = 13}, - [2311] = {.lex_state = 96, .external_lex_state = 12}, - [2312] = {.lex_state = 98, .external_lex_state = 13}, - [2313] = {.lex_state = 93, .external_lex_state = 13}, - [2314] = {.lex_state = 93, .external_lex_state = 13}, - [2315] = {.lex_state = 94, .external_lex_state = 20}, - [2316] = {.lex_state = 94, .external_lex_state = 20}, - [2317] = {.lex_state = 94, .external_lex_state = 20}, - [2318] = {.lex_state = 94, .external_lex_state = 20}, - [2319] = {.lex_state = 98, .external_lex_state = 13}, - [2320] = {.lex_state = 98, .external_lex_state = 13}, - [2321] = {.lex_state = 98, .external_lex_state = 13}, - [2322] = {.lex_state = 94, .external_lex_state = 20}, - [2323] = {.lex_state = 94, .external_lex_state = 20}, - [2324] = {.lex_state = 98, .external_lex_state = 13}, - [2325] = {.lex_state = 98, .external_lex_state = 13}, - [2326] = {.lex_state = 98, .external_lex_state = 13}, - [2327] = {.lex_state = 92, .external_lex_state = 19}, - [2328] = {.lex_state = 98, .external_lex_state = 13}, - [2329] = {.lex_state = 98, .external_lex_state = 13}, - [2330] = {.lex_state = 98, .external_lex_state = 13}, - [2331] = {.lex_state = 98, .external_lex_state = 13}, - [2332] = {.lex_state = 98, .external_lex_state = 13}, - [2333] = {.lex_state = 93, .external_lex_state = 13}, - [2334] = {.lex_state = 96}, - [2335] = {.lex_state = 93, .external_lex_state = 13}, - [2336] = {.lex_state = 98, .external_lex_state = 13}, - [2337] = {.lex_state = 98, .external_lex_state = 13}, - [2338] = {.lex_state = 98, .external_lex_state = 13}, - [2339] = {.lex_state = 98, .external_lex_state = 13}, - [2340] = {.lex_state = 98, .external_lex_state = 13}, - [2341] = {.lex_state = 96}, - [2342] = {.lex_state = 98, .external_lex_state = 13}, - [2343] = {.lex_state = 98, .external_lex_state = 13}, - [2344] = {.lex_state = 98, .external_lex_state = 13}, - [2345] = {.lex_state = 98, .external_lex_state = 13}, - [2346] = {.lex_state = 98, .external_lex_state = 13}, - [2347] = {.lex_state = 98, .external_lex_state = 13}, - [2348] = {.lex_state = 98, .external_lex_state = 13}, - [2349] = {.lex_state = 94, .external_lex_state = 20}, - [2350] = {.lex_state = 98, .external_lex_state = 13}, - [2351] = {.lex_state = 98, .external_lex_state = 13}, - [2352] = {.lex_state = 94, .external_lex_state = 20}, - [2353] = {.lex_state = 94, .external_lex_state = 20}, - [2354] = {.lex_state = 94, .external_lex_state = 20}, - [2355] = {.lex_state = 199}, - [2356] = {.lex_state = 91}, - [2357] = {.lex_state = 91}, - [2358] = {.lex_state = 96}, - [2359] = {.lex_state = 199}, - [2360] = {.lex_state = 92, .external_lex_state = 14}, - [2361] = {.lex_state = 96}, - [2362] = {.lex_state = 91}, - [2363] = {.lex_state = 91}, - [2364] = {.lex_state = 91}, - [2365] = {.lex_state = 96}, - [2366] = {.lex_state = 91}, - [2367] = {.lex_state = 96}, - [2368] = {.lex_state = 92, .external_lex_state = 14}, - [2369] = {.lex_state = 96}, - [2370] = {.lex_state = 96}, - [2371] = {.lex_state = 91}, - [2372] = {.lex_state = 96}, - [2373] = {.lex_state = 96}, - [2374] = {.lex_state = 199}, - [2375] = {.lex_state = 92, .external_lex_state = 14}, - [2376] = {.lex_state = 199}, - [2377] = {.lex_state = 199}, - [2378] = {.lex_state = 199}, - [2379] = {.lex_state = 199}, - [2380] = {.lex_state = 96}, - [2381] = {.lex_state = 199}, - [2382] = {.lex_state = 199}, - [2383] = {.lex_state = 91}, - [2384] = {.lex_state = 96}, - [2385] = {.lex_state = 96}, - [2386] = {.lex_state = 96}, - [2387] = {.lex_state = 96}, - [2388] = {.lex_state = 199}, - [2389] = {.lex_state = 96}, - [2390] = {.lex_state = 96}, - [2391] = {.lex_state = 92, .external_lex_state = 14}, - [2392] = {.lex_state = 92, .external_lex_state = 14}, - [2393] = {.lex_state = 199}, - [2394] = {.lex_state = 92, .external_lex_state = 14}, - [2395] = {.lex_state = 199}, - [2396] = {.lex_state = 199}, - [2397] = {.lex_state = 96}, - [2398] = {.lex_state = 96}, - [2399] = {.lex_state = 96}, - [2400] = {.lex_state = 96}, - [2401] = {.lex_state = 199}, - [2402] = {.lex_state = 96}, - [2403] = {.lex_state = 91}, - [2404] = {.lex_state = 199}, - [2405] = {.lex_state = 96}, - [2406] = {.lex_state = 199}, - [2407] = {.lex_state = 199}, - [2408] = {.lex_state = 91}, - [2409] = {.lex_state = 96}, - [2410] = {.lex_state = 199}, - [2411] = {.lex_state = 92, .external_lex_state = 14}, - [2412] = {.lex_state = 92, .external_lex_state = 14}, - [2413] = {.lex_state = 199}, - [2414] = {.lex_state = 94, .external_lex_state = 13}, - [2415] = {.lex_state = 199}, - [2416] = {.lex_state = 92, .external_lex_state = 14}, - [2417] = {.lex_state = 199}, - [2418] = {.lex_state = 199}, - [2419] = {.lex_state = 96}, - [2420] = {.lex_state = 92, .external_lex_state = 14}, - [2421] = {.lex_state = 199}, - [2422] = {.lex_state = 91}, - [2423] = {.lex_state = 96}, - [2424] = {.lex_state = 96}, - [2425] = {.lex_state = 199}, - [2426] = {.lex_state = 96}, - [2427] = {.lex_state = 99, .external_lex_state = 14}, - [2428] = {.lex_state = 99, .external_lex_state = 14}, - [2429] = {.lex_state = 96}, - [2430] = {.lex_state = 96}, - [2431] = {.lex_state = 96}, - [2432] = {.lex_state = 96}, - [2433] = {.lex_state = 96}, - [2434] = {.lex_state = 96}, - [2435] = {.lex_state = 96}, - [2436] = {.lex_state = 96}, - [2437] = {.lex_state = 96}, - [2438] = {.lex_state = 96}, - [2439] = {.lex_state = 75, .external_lex_state = 15}, - [2440] = {.lex_state = 96}, - [2441] = {.lex_state = 96}, - [2442] = {.lex_state = 96}, - [2443] = {.lex_state = 96}, - [2444] = {.lex_state = 96}, - [2445] = {.lex_state = 96}, - [2446] = {.lex_state = 96}, - [2447] = {.lex_state = 96}, - [2448] = {.lex_state = 96}, - [2449] = {.lex_state = 96}, - [2450] = {.lex_state = 96}, - [2451] = {.lex_state = 96}, - [2452] = {.lex_state = 96}, - [2453] = {.lex_state = 96}, - [2454] = {.lex_state = 96}, - [2455] = {.lex_state = 96}, - [2456] = {.lex_state = 96}, - [2457] = {.lex_state = 96}, - [2458] = {.lex_state = 96}, - [2459] = {.lex_state = 96}, - [2460] = {.lex_state = 96}, - [2461] = {.lex_state = 96}, - [2462] = {.lex_state = 96}, - [2463] = {.lex_state = 96}, - [2464] = {.lex_state = 96}, - [2465] = {.lex_state = 96}, - [2466] = {.lex_state = 96}, - [2467] = {.lex_state = 96}, - [2468] = {.lex_state = 96}, - [2469] = {.lex_state = 96}, - [2470] = {.lex_state = 96}, - [2471] = {.lex_state = 96}, - [2472] = {.lex_state = 96}, - [2473] = {.lex_state = 96}, - [2474] = {.lex_state = 96}, - [2475] = {.lex_state = 96}, - [2476] = {.lex_state = 96}, - [2477] = {.lex_state = 96}, - [2478] = {.lex_state = 96}, - [2479] = {.lex_state = 96}, - [2480] = {.lex_state = 96}, - [2481] = {.lex_state = 96}, - [2482] = {.lex_state = 96}, - [2483] = {.lex_state = 96}, - [2484] = {.lex_state = 96}, - [2485] = {.lex_state = 96}, - [2486] = {.lex_state = 75, .external_lex_state = 15}, - [2487] = {.lex_state = 96}, - [2488] = {.lex_state = 96}, - [2489] = {.lex_state = 96}, - [2490] = {.lex_state = 75, .external_lex_state = 15}, - [2491] = {.lex_state = 75, .external_lex_state = 15}, - [2492] = {.lex_state = 27, .external_lex_state = 10}, - [2493] = {.lex_state = 96}, - [2494] = {.lex_state = 96}, - [2495] = {.lex_state = 75, .external_lex_state = 15}, - [2496] = {.lex_state = 75, .external_lex_state = 15}, - [2497] = {.lex_state = 75, .external_lex_state = 15}, - [2498] = {.lex_state = 75, .external_lex_state = 10}, - [2499] = {.lex_state = 75, .external_lex_state = 15}, - [2500] = {.lex_state = 75, .external_lex_state = 10}, - [2501] = {.lex_state = 75, .external_lex_state = 15}, - [2502] = {.lex_state = 75, .external_lex_state = 15}, - [2503] = {.lex_state = 75, .external_lex_state = 15}, - [2504] = {.lex_state = 75, .external_lex_state = 15}, - [2505] = {.lex_state = 75, .external_lex_state = 15}, - [2506] = {.lex_state = 75, .external_lex_state = 15}, - [2507] = {.lex_state = 75, .external_lex_state = 15}, - [2508] = {.lex_state = 75, .external_lex_state = 15}, - [2509] = {.lex_state = 75, .external_lex_state = 15}, - [2510] = {.lex_state = 75, .external_lex_state = 15}, - [2511] = {.lex_state = 75, .external_lex_state = 15}, - [2512] = {.lex_state = 75, .external_lex_state = 15}, - [2513] = {.lex_state = 75, .external_lex_state = 15}, - [2514] = {.lex_state = 75, .external_lex_state = 15}, - [2515] = {.lex_state = 75, .external_lex_state = 15}, - [2516] = {.lex_state = 75, .external_lex_state = 15}, - [2517] = {.lex_state = 75, .external_lex_state = 15}, - [2518] = {.lex_state = 75, .external_lex_state = 15}, - [2519] = {.lex_state = 75, .external_lex_state = 15}, - [2520] = {.lex_state = 75, .external_lex_state = 15}, - [2521] = {.lex_state = 75, .external_lex_state = 15}, - [2522] = {.lex_state = 75, .external_lex_state = 15}, - [2523] = {.lex_state = 75, .external_lex_state = 10}, - [2524] = {.lex_state = 96, .external_lex_state = 17}, - [2525] = {.lex_state = 96, .external_lex_state = 17}, - [2526] = {.lex_state = 96, .external_lex_state = 17}, - [2527] = {.lex_state = 96, .external_lex_state = 17}, - [2528] = {.lex_state = 85, .external_lex_state = 19}, - [2529] = {.lex_state = 85}, - [2530] = {.lex_state = 96, .external_lex_state = 17}, - [2531] = {.lex_state = 85, .external_lex_state = 21}, - [2532] = {.lex_state = 97}, - [2533] = {.lex_state = 85, .external_lex_state = 21}, - [2534] = {.lex_state = 85, .external_lex_state = 21}, - [2535] = {.lex_state = 96, .external_lex_state = 17}, - [2536] = {.lex_state = 85, .external_lex_state = 21}, - [2537] = {.lex_state = 96, .external_lex_state = 17}, - [2538] = {.lex_state = 97}, - [2539] = {.lex_state = 97}, - [2540] = {.lex_state = 85, .external_lex_state = 21}, - [2541] = {.lex_state = 85, .external_lex_state = 13}, - [2542] = {.lex_state = 85, .external_lex_state = 21}, - [2543] = {.lex_state = 96, .external_lex_state = 17}, - [2544] = {.lex_state = 97}, - [2545] = {.lex_state = 85, .external_lex_state = 21}, - [2546] = {.lex_state = 96, .external_lex_state = 17}, - [2547] = {.lex_state = 85, .external_lex_state = 21}, - [2548] = {.lex_state = 85, .external_lex_state = 21}, - [2549] = {.lex_state = 85, .external_lex_state = 21}, - [2550] = {.lex_state = 85, .external_lex_state = 21}, - [2551] = {.lex_state = 85, .external_lex_state = 21}, - [2552] = {.lex_state = 85, .external_lex_state = 21}, - [2553] = {.lex_state = 96, .external_lex_state = 17}, - [2554] = {.lex_state = 85, .external_lex_state = 21}, - [2555] = {.lex_state = 96, .external_lex_state = 17}, - [2556] = {.lex_state = 96}, - [2557] = {.lex_state = 96, .external_lex_state = 17}, - [2558] = {.lex_state = 85, .external_lex_state = 21}, - [2559] = {.lex_state = 97}, - [2560] = {.lex_state = 96, .external_lex_state = 17}, - [2561] = {.lex_state = 85, .external_lex_state = 21}, - [2562] = {.lex_state = 97}, - [2563] = {.lex_state = 96, .external_lex_state = 17}, - [2564] = {.lex_state = 85, .external_lex_state = 21}, - [2565] = {.lex_state = 85, .external_lex_state = 21}, - [2566] = {.lex_state = 85, .external_lex_state = 21}, - [2567] = {.lex_state = 96, .external_lex_state = 17}, - [2568] = {.lex_state = 96, .external_lex_state = 17}, - [2569] = {.lex_state = 96, .external_lex_state = 17}, - [2570] = {.lex_state = 96, .external_lex_state = 17}, - [2571] = {.lex_state = 85, .external_lex_state = 21}, - [2572] = {.lex_state = 96, .external_lex_state = 17}, - [2573] = {.lex_state = 96, .external_lex_state = 17}, - [2574] = {.lex_state = 97}, - [2575] = {.lex_state = 96, .external_lex_state = 17}, - [2576] = {.lex_state = 96, .external_lex_state = 17}, - [2577] = {.lex_state = 85, .external_lex_state = 21}, - [2578] = {.lex_state = 96, .external_lex_state = 17}, - [2579] = {.lex_state = 96, .external_lex_state = 17}, - [2580] = {.lex_state = 96, .external_lex_state = 17}, - [2581] = {.lex_state = 97}, - [2582] = {.lex_state = 96, .external_lex_state = 17}, - [2583] = {.lex_state = 85, .external_lex_state = 21}, - [2584] = {.lex_state = 97}, - [2585] = {.lex_state = 97}, - [2586] = {.lex_state = 85, .external_lex_state = 21}, - [2587] = {.lex_state = 97}, - [2588] = {.lex_state = 85, .external_lex_state = 21}, - [2589] = {.lex_state = 97}, - [2590] = {.lex_state = 85, .external_lex_state = 21}, - [2591] = {.lex_state = 96, .external_lex_state = 17}, - [2592] = {.lex_state = 97}, - [2593] = {.lex_state = 96, .external_lex_state = 17}, - [2594] = {.lex_state = 97}, - [2595] = {.lex_state = 97}, - [2596] = {.lex_state = 85, .external_lex_state = 21}, - [2597] = {.lex_state = 96, .external_lex_state = 17}, - [2598] = {.lex_state = 97}, - [2599] = {.lex_state = 96, .external_lex_state = 17}, - [2600] = {.lex_state = 96}, - [2601] = {.lex_state = 85, .external_lex_state = 21}, - [2602] = {.lex_state = 97}, - [2603] = {.lex_state = 85, .external_lex_state = 21}, - [2604] = {.lex_state = 85, .external_lex_state = 21}, - [2605] = {.lex_state = 85, .external_lex_state = 21}, - [2606] = {.lex_state = 85, .external_lex_state = 21}, - [2607] = {.lex_state = 97}, - [2608] = {.lex_state = 97}, - [2609] = {.lex_state = 97}, - [2610] = {.lex_state = 96}, - [2611] = {.lex_state = 85}, - [2612] = {.lex_state = 86}, - [2613] = {.lex_state = 96}, - [2614] = {.lex_state = 86}, - [2615] = {.lex_state = 96}, - [2616] = {.lex_state = 96}, - [2617] = {.lex_state = 96}, - [2618] = {.lex_state = 85}, - [2619] = {.lex_state = 96}, - [2620] = {.lex_state = 96}, - [2621] = {.lex_state = 96}, - [2622] = {.lex_state = 96}, - [2623] = {.lex_state = 85}, - [2624] = {.lex_state = 86}, - [2625] = {.lex_state = 96}, - [2626] = {.lex_state = 86}, - [2627] = {.lex_state = 85}, - [2628] = {.lex_state = 96}, - [2629] = {.lex_state = 86}, - [2630] = {.lex_state = 86}, - [2631] = {.lex_state = 96}, - [2632] = {.lex_state = 96}, - [2633] = {.lex_state = 96}, - [2634] = {.lex_state = 86}, - [2635] = {.lex_state = 96}, - [2636] = {.lex_state = 85}, - [2637] = {.lex_state = 86}, - [2638] = {.lex_state = 96}, - [2639] = {.lex_state = 96}, - [2640] = {.lex_state = 86}, - [2641] = {.lex_state = 86}, - [2642] = {.lex_state = 96}, - [2643] = {.lex_state = 96}, - [2644] = {.lex_state = 96}, - [2645] = {.lex_state = 96}, - [2646] = {.lex_state = 85}, - [2647] = {.lex_state = 96}, - [2648] = {.lex_state = 85}, - [2649] = {.lex_state = 86}, - [2650] = {.lex_state = 96}, - [2651] = {.lex_state = 96}, - [2652] = {.lex_state = 96}, - [2653] = {.lex_state = 96}, - [2654] = {.lex_state = 96}, - [2655] = {.lex_state = 86}, - [2656] = {.lex_state = 96}, - [2657] = {.lex_state = 96}, - [2658] = {.lex_state = 96}, - [2659] = {.lex_state = 96}, - [2660] = {.lex_state = 86}, - [2661] = {.lex_state = 86}, - [2662] = {.lex_state = 86}, - [2663] = {.lex_state = 86}, - [2664] = {.lex_state = 96}, - [2665] = {.lex_state = 96}, - [2666] = {.lex_state = 85}, - [2667] = {.lex_state = 96}, - [2668] = {.lex_state = 86}, - [2669] = {.lex_state = 86}, - [2670] = {.lex_state = 96}, - [2671] = {.lex_state = 85}, - [2672] = {.lex_state = 96}, - [2673] = {.lex_state = 86}, - [2674] = {.lex_state = 86}, - [2675] = {.lex_state = 85}, - [2676] = {.lex_state = 96}, - [2677] = {.lex_state = 86}, - [2678] = {.lex_state = 85}, - [2679] = {.lex_state = 85}, - [2680] = {.lex_state = 96}, - [2681] = {.lex_state = 86}, - [2682] = {.lex_state = 86}, - [2683] = {.lex_state = 96}, - [2684] = {.lex_state = 96}, - [2685] = {.lex_state = 85}, - [2686] = {.lex_state = 86}, - [2687] = {.lex_state = 86}, - [2688] = {.lex_state = 86}, - [2689] = {.lex_state = 86}, - [2690] = {.lex_state = 96}, - [2691] = {.lex_state = 85}, - [2692] = {.lex_state = 85}, - [2693] = {.lex_state = 86}, - [2694] = {.lex_state = 86}, - [2695] = {.lex_state = 96}, - [2696] = {.lex_state = 85}, - [2697] = {.lex_state = 86}, - [2698] = {.lex_state = 86}, - [2699] = {.lex_state = 96}, - [2700] = {.lex_state = 86}, - [2701] = {.lex_state = 85}, - [2702] = {.lex_state = 86}, - [2703] = {.lex_state = 86}, - [2704] = {.lex_state = 85}, - [2705] = {.lex_state = 86}, - [2706] = {.lex_state = 96}, - [2707] = {.lex_state = 96}, - [2708] = {.lex_state = 86}, - [2709] = {.lex_state = 96}, - [2710] = {.lex_state = 85}, - [2711] = {.lex_state = 86}, - [2712] = {.lex_state = 96}, - [2713] = {.lex_state = 86}, - [2714] = {.lex_state = 96}, - [2715] = {.lex_state = 86}, - [2716] = {.lex_state = 85}, - [2717] = {.lex_state = 86}, - [2718] = {.lex_state = 85}, - [2719] = {.lex_state = 85}, - [2720] = {.lex_state = 85}, - [2721] = {.lex_state = 85}, - [2722] = {.lex_state = 86}, - [2723] = {.lex_state = 96}, - [2724] = {.lex_state = 86}, - [2725] = {.lex_state = 86}, - [2726] = {.lex_state = 86}, - [2727] = {.lex_state = 86}, - [2728] = {.lex_state = 96}, - [2729] = {.lex_state = 86}, - [2730] = {.lex_state = 86}, - [2731] = {.lex_state = 86}, - [2732] = {.lex_state = 86}, - [2733] = {.lex_state = 85}, - [2734] = {.lex_state = 86}, - [2735] = {.lex_state = 85}, - [2736] = {.lex_state = 86}, - [2737] = {.lex_state = 86}, - [2738] = {.lex_state = 86}, - [2739] = {.lex_state = 96}, - [2740] = {.lex_state = 85}, - [2741] = {.lex_state = 96}, - [2742] = {.lex_state = 96}, - [2743] = {.lex_state = 86}, - [2744] = {.lex_state = 86}, - [2745] = {.lex_state = 85}, - [2746] = {.lex_state = 86}, - [2747] = {.lex_state = 86}, - [2748] = {.lex_state = 86}, - [2749] = {.lex_state = 85}, - [2750] = {.lex_state = 101, .external_lex_state = 21}, - [2751] = {.lex_state = 101, .external_lex_state = 21}, - [2752] = {.lex_state = 101, .external_lex_state = 21}, - [2753] = {.lex_state = 101, .external_lex_state = 21}, - [2754] = {.lex_state = 101, .external_lex_state = 21}, - [2755] = {.lex_state = 101, .external_lex_state = 22}, - [2756] = {.lex_state = 101, .external_lex_state = 22}, - [2757] = {.lex_state = 101, .external_lex_state = 21}, - [2758] = {.lex_state = 87}, - [2759] = {.lex_state = 101, .external_lex_state = 22}, - [2760] = {.lex_state = 101, .external_lex_state = 21}, - [2761] = {.lex_state = 101, .external_lex_state = 21}, - [2762] = {.lex_state = 101, .external_lex_state = 21}, - [2763] = {.lex_state = 101, .external_lex_state = 21}, - [2764] = {.lex_state = 101, .external_lex_state = 21}, - [2765] = {.lex_state = 101, .external_lex_state = 21}, - [2766] = {.lex_state = 101, .external_lex_state = 21}, - [2767] = {.lex_state = 101, .external_lex_state = 21}, - [2768] = {.lex_state = 101, .external_lex_state = 21}, - [2769] = {.lex_state = 101, .external_lex_state = 21}, - [2770] = {.lex_state = 101, .external_lex_state = 21}, - [2771] = {.lex_state = 101, .external_lex_state = 21}, - [2772] = {.lex_state = 101, .external_lex_state = 21}, - [2773] = {.lex_state = 101, .external_lex_state = 21}, - [2774] = {.lex_state = 101, .external_lex_state = 21}, - [2775] = {.lex_state = 101, .external_lex_state = 21}, - [2776] = {.lex_state = 101, .external_lex_state = 21}, - [2777] = {.lex_state = 101, .external_lex_state = 21}, - [2778] = {.lex_state = 101, .external_lex_state = 21}, - [2779] = {.lex_state = 101, .external_lex_state = 21}, - [2780] = {.lex_state = 101, .external_lex_state = 21}, - [2781] = {.lex_state = 101, .external_lex_state = 22}, - [2782] = {.lex_state = 101, .external_lex_state = 21}, - [2783] = {.lex_state = 101, .external_lex_state = 21}, - [2784] = {.lex_state = 101, .external_lex_state = 21}, - [2785] = {.lex_state = 101, .external_lex_state = 21}, - [2786] = {.lex_state = 100}, - [2787] = {.lex_state = 100}, - [2788] = {.lex_state = 100}, - [2789] = {.lex_state = 100}, - [2790] = {.lex_state = 100}, - [2791] = {.lex_state = 85}, - [2792] = {.lex_state = 199, .external_lex_state = 23}, - [2793] = {.lex_state = 100}, - [2794] = {.lex_state = 100}, - [2795] = {.lex_state = 199, .external_lex_state = 23}, - [2796] = {.lex_state = 199, .external_lex_state = 23}, - [2797] = {.lex_state = 100}, - [2798] = {.lex_state = 100}, - [2799] = {.lex_state = 100}, - [2800] = {.lex_state = 100}, - [2801] = {.lex_state = 100}, - [2802] = {.lex_state = 100}, - [2803] = {.lex_state = 100}, - [2804] = {.lex_state = 100}, - [2805] = {.lex_state = 100}, - [2806] = {.lex_state = 199, .external_lex_state = 23}, - [2807] = {.lex_state = 100}, - [2808] = {.lex_state = 100}, - [2809] = {.lex_state = 100}, - [2810] = {.lex_state = 100}, - [2811] = {.lex_state = 100}, - [2812] = {.lex_state = 100}, - [2813] = {.lex_state = 100}, - [2814] = {.lex_state = 100}, - [2815] = {.lex_state = 100}, - [2816] = {.lex_state = 100}, - [2817] = {.lex_state = 100}, - [2818] = {.lex_state = 199, .external_lex_state = 23}, - [2819] = {.lex_state = 100}, - [2820] = {.lex_state = 100}, - [2821] = {.lex_state = 100}, - [2822] = {.lex_state = 100}, - [2823] = {.lex_state = 100}, - [2824] = {.lex_state = 100}, - [2825] = {.lex_state = 100}, - [2826] = {.lex_state = 100}, - [2827] = {.lex_state = 100}, - [2828] = {.lex_state = 100}, - [2829] = {.lex_state = 100}, - [2830] = {.lex_state = 100}, - [2831] = {.lex_state = 100}, - [2832] = {.lex_state = 100}, - [2833] = {.lex_state = 100}, - [2834] = {.lex_state = 100}, - [2835] = {.lex_state = 100}, - [2836] = {.lex_state = 100}, - [2837] = {.lex_state = 100}, - [2838] = {.lex_state = 100}, - [2839] = {.lex_state = 100}, - [2840] = {.lex_state = 100}, - [2841] = {.lex_state = 100}, - [2842] = {.lex_state = 100}, - [2843] = {.lex_state = 100}, - [2844] = {.lex_state = 199, .external_lex_state = 23}, - [2845] = {.lex_state = 100}, - [2846] = {.lex_state = 199, .external_lex_state = 23}, - [2847] = {.lex_state = 100}, - [2848] = {.lex_state = 100}, - [2849] = {.lex_state = 100}, - [2850] = {.lex_state = 100}, - [2851] = {.lex_state = 100}, - [2852] = {.lex_state = 100}, - [2853] = {.lex_state = 101}, - [2854] = {.lex_state = 101}, - [2855] = {.lex_state = 188, .external_lex_state = 15}, - [2856] = {.lex_state = 102}, - [2857] = {.lex_state = 101}, - [2858] = {.lex_state = 101}, - [2859] = {.lex_state = 101}, - [2860] = {.lex_state = 101}, - [2861] = {.lex_state = 101}, - [2862] = {.lex_state = 101}, - [2863] = {.lex_state = 101}, - [2864] = {.lex_state = 100, .external_lex_state = 17}, - [2865] = {.lex_state = 100, .external_lex_state = 17}, - [2866] = {.lex_state = 100, .external_lex_state = 17}, - [2867] = {.lex_state = 100, .external_lex_state = 17}, - [2868] = {.lex_state = 188, .external_lex_state = 10}, - [2869] = {.lex_state = 100, .external_lex_state = 17}, - [2870] = {.lex_state = 100, .external_lex_state = 17}, - [2871] = {.lex_state = 100, .external_lex_state = 17}, - [2872] = {.lex_state = 100, .external_lex_state = 17}, - [2873] = {.lex_state = 100, .external_lex_state = 17}, - [2874] = {.lex_state = 100, .external_lex_state = 17}, - [2875] = {.lex_state = 100, .external_lex_state = 17}, - [2876] = {.lex_state = 100, .external_lex_state = 17}, - [2877] = {.lex_state = 100, .external_lex_state = 17}, - [2878] = {.lex_state = 29, .external_lex_state = 10}, - [2879] = {.lex_state = 188, .external_lex_state = 15}, - [2880] = {.lex_state = 100, .external_lex_state = 17}, - [2881] = {.lex_state = 100, .external_lex_state = 17}, - [2882] = {.lex_state = 100, .external_lex_state = 17}, - [2883] = {.lex_state = 100, .external_lex_state = 17}, - [2884] = {.lex_state = 100, .external_lex_state = 17}, - [2885] = {.lex_state = 100, .external_lex_state = 17}, - [2886] = {.lex_state = 100, .external_lex_state = 17}, - [2887] = {.lex_state = 188, .external_lex_state = 15}, - [2888] = {.lex_state = 188, .external_lex_state = 10}, - [2889] = {.lex_state = 188, .external_lex_state = 15}, - [2890] = {.lex_state = 29, .external_lex_state = 10}, - [2891] = {.lex_state = 188, .external_lex_state = 10}, - [2892] = {.lex_state = 100, .external_lex_state = 17}, - [2893] = {.lex_state = 188, .external_lex_state = 15}, - [2894] = {.lex_state = 188, .external_lex_state = 10}, - [2895] = {.lex_state = 188, .external_lex_state = 15}, - [2896] = {.lex_state = 100, .external_lex_state = 17}, - [2897] = {.lex_state = 29, .external_lex_state = 10}, - [2898] = {.lex_state = 29, .external_lex_state = 10}, - [2899] = {.lex_state = 29, .external_lex_state = 10}, - [2900] = {.lex_state = 188, .external_lex_state = 15}, - [2901] = {.lex_state = 199, .external_lex_state = 23}, - [2902] = {.lex_state = 199, .external_lex_state = 23}, - [2903] = {.lex_state = 199, .external_lex_state = 23}, - [2904] = {.lex_state = 199, .external_lex_state = 23}, - [2905] = {.lex_state = 199, .external_lex_state = 23}, - [2906] = {.lex_state = 199, .external_lex_state = 23}, - [2907] = {.lex_state = 199, .external_lex_state = 23}, - [2908] = {.lex_state = 199}, - [2909] = {.lex_state = 199, .external_lex_state = 23}, - [2910] = {.lex_state = 199, .external_lex_state = 23}, - [2911] = {.lex_state = 199, .external_lex_state = 23}, - [2912] = {.lex_state = 199, .external_lex_state = 23}, - [2913] = {.lex_state = 199, .external_lex_state = 23}, - [2914] = {.lex_state = 199, .external_lex_state = 23}, - [2915] = {.lex_state = 199, .external_lex_state = 23}, - [2916] = {.lex_state = 199, .external_lex_state = 23}, - [2917] = {.lex_state = 199}, - [2918] = {.lex_state = 100}, - [2919] = {.lex_state = 199, .external_lex_state = 23}, - [2920] = {.lex_state = 199, .external_lex_state = 23}, - [2921] = {.lex_state = 199}, - [2922] = {.lex_state = 199}, - [2923] = {.lex_state = 199, .external_lex_state = 23}, - [2924] = {.lex_state = 199, .external_lex_state = 23}, - [2925] = {.lex_state = 188, .external_lex_state = 15}, - [2926] = {.lex_state = 188, .external_lex_state = 10}, - [2927] = {.lex_state = 188, .external_lex_state = 15}, - [2928] = {.lex_state = 199, .external_lex_state = 23}, - [2929] = {.lex_state = 188, .external_lex_state = 10}, - [2930] = {.lex_state = 188, .external_lex_state = 15}, - [2931] = {.lex_state = 188, .external_lex_state = 15}, - [2932] = {.lex_state = 188, .external_lex_state = 15}, - [2933] = {.lex_state = 188, .external_lex_state = 15}, - [2934] = {.lex_state = 199}, - [2935] = {.lex_state = 188, .external_lex_state = 15}, - [2936] = {.lex_state = 188, .external_lex_state = 15}, - [2937] = {.lex_state = 188, .external_lex_state = 15}, - [2938] = {.lex_state = 188, .external_lex_state = 15}, - [2939] = {.lex_state = 188, .external_lex_state = 15}, - [2940] = {.lex_state = 29, .external_lex_state = 10}, - [2941] = {.lex_state = 188, .external_lex_state = 15}, - [2942] = {.lex_state = 188, .external_lex_state = 15}, - [2943] = {.lex_state = 188, .external_lex_state = 15}, - [2944] = {.lex_state = 199}, - [2945] = {.lex_state = 188, .external_lex_state = 15}, - [2946] = {.lex_state = 188, .external_lex_state = 10}, - [2947] = {.lex_state = 29, .external_lex_state = 10}, - [2948] = {.lex_state = 188, .external_lex_state = 15}, - [2949] = {.lex_state = 188, .external_lex_state = 15}, - [2950] = {.lex_state = 188, .external_lex_state = 15}, - [2951] = {.lex_state = 188, .external_lex_state = 15}, - [2952] = {.lex_state = 188, .external_lex_state = 15}, - [2953] = {.lex_state = 188, .external_lex_state = 15}, - [2954] = {.lex_state = 188, .external_lex_state = 10}, - [2955] = {.lex_state = 188, .external_lex_state = 15}, - [2956] = {.lex_state = 188, .external_lex_state = 15}, - [2957] = {.lex_state = 188, .external_lex_state = 15}, - [2958] = {.lex_state = 188, .external_lex_state = 15}, - [2959] = {.lex_state = 100}, - [2960] = {.lex_state = 188, .external_lex_state = 10}, - [2961] = {.lex_state = 102}, - [2962] = {.lex_state = 91, .external_lex_state = 17}, - [2963] = {.lex_state = 199}, - [2964] = {.lex_state = 102}, - [2965] = {.lex_state = 188, .external_lex_state = 10}, - [2966] = {.lex_state = 188, .external_lex_state = 10}, - [2967] = {.lex_state = 188, .external_lex_state = 10}, - [2968] = {.lex_state = 188, .external_lex_state = 10}, - [2969] = {.lex_state = 102}, - [2970] = {.lex_state = 188, .external_lex_state = 10}, - [2971] = {.lex_state = 102}, - [2972] = {.lex_state = 91}, - [2973] = {.lex_state = 91, .external_lex_state = 17}, - [2974] = {.lex_state = 102}, - [2975] = {.lex_state = 102}, - [2976] = {.lex_state = 102}, - [2977] = {.lex_state = 188, .external_lex_state = 10}, - [2978] = {.lex_state = 102}, - [2979] = {.lex_state = 188, .external_lex_state = 10}, - [2980] = {.lex_state = 102}, - [2981] = {.lex_state = 188, .external_lex_state = 10}, - [2982] = {.lex_state = 188, .external_lex_state = 10}, - [2983] = {.lex_state = 188, .external_lex_state = 10}, - [2984] = {.lex_state = 102}, - [2985] = {.lex_state = 102}, - [2986] = {.lex_state = 102}, - [2987] = {.lex_state = 91}, - [2988] = {.lex_state = 102}, - [2989] = {.lex_state = 188, .external_lex_state = 10}, - [2990] = {.lex_state = 91, .external_lex_state = 17}, - [2991] = {.lex_state = 188, .external_lex_state = 10}, - [2992] = {.lex_state = 91, .external_lex_state = 17}, - [2993] = {.lex_state = 91}, - [2994] = {.lex_state = 102}, - [2995] = {.lex_state = 102}, - [2996] = {.lex_state = 102}, - [2997] = {.lex_state = 102}, - [2998] = {.lex_state = 188, .external_lex_state = 10}, - [2999] = {.lex_state = 102}, - [3000] = {.lex_state = 102}, - [3001] = {.lex_state = 102}, - [3002] = {.lex_state = 102}, - [3003] = {.lex_state = 102}, - [3004] = {.lex_state = 91, .external_lex_state = 17}, - [3005] = {.lex_state = 102}, - [3006] = {.lex_state = 91}, - [3007] = {.lex_state = 102}, - [3008] = {.lex_state = 188, .external_lex_state = 10}, - [3009] = {.lex_state = 188, .external_lex_state = 10}, - [3010] = {.lex_state = 91, .external_lex_state = 17}, - [3011] = {.lex_state = 102}, - [3012] = {.lex_state = 102}, - [3013] = {.lex_state = 199}, - [3014] = {.lex_state = 102}, - [3015] = {.lex_state = 102}, - [3016] = {.lex_state = 102}, - [3017] = {.lex_state = 102}, - [3018] = {.lex_state = 102}, - [3019] = {.lex_state = 199}, - [3020] = {.lex_state = 199}, - [3021] = {.lex_state = 199}, - [3022] = {.lex_state = 188, .external_lex_state = 10}, - [3023] = {.lex_state = 102}, - [3024] = {.lex_state = 188, .external_lex_state = 10}, - [3025] = {.lex_state = 188, .external_lex_state = 10}, - [3026] = {.lex_state = 92, .external_lex_state = 19}, - [3027] = {.lex_state = 102}, - [3028] = {.lex_state = 199}, - [3029] = {.lex_state = 199}, - [3030] = {.lex_state = 102}, - [3031] = {.lex_state = 199}, - [3032] = {.lex_state = 102}, - [3033] = {.lex_state = 199}, - [3034] = {.lex_state = 102}, - [3035] = {.lex_state = 188, .external_lex_state = 10}, - [3036] = {.lex_state = 188, .external_lex_state = 10}, - [3037] = {.lex_state = 102}, - [3038] = {.lex_state = 102}, - [3039] = {.lex_state = 199}, - [3040] = {.lex_state = 102}, - [3041] = {.lex_state = 102}, - [3042] = {.lex_state = 188, .external_lex_state = 10}, - [3043] = {.lex_state = 103, .external_lex_state = 20}, - [3044] = {.lex_state = 199}, - [3045] = {.lex_state = 102}, - [3046] = {.lex_state = 188, .external_lex_state = 10}, - [3047] = {.lex_state = 188, .external_lex_state = 10}, - [3048] = {.lex_state = 102}, - [3049] = {.lex_state = 102}, - [3050] = {.lex_state = 188, .external_lex_state = 10}, - [3051] = {.lex_state = 188, .external_lex_state = 10}, - [3052] = {.lex_state = 188, .external_lex_state = 10}, - [3053] = {.lex_state = 102}, - [3054] = {.lex_state = 188, .external_lex_state = 10}, - [3055] = {.lex_state = 188, .external_lex_state = 10}, - [3056] = {.lex_state = 188, .external_lex_state = 10}, - [3057] = {.lex_state = 188, .external_lex_state = 10}, - [3058] = {.lex_state = 92, .external_lex_state = 19}, - [3059] = {.lex_state = 92, .external_lex_state = 19}, - [3060] = {.lex_state = 92, .external_lex_state = 19}, - [3061] = {.lex_state = 102}, - [3062] = {.lex_state = 188, .external_lex_state = 10}, - [3063] = {.lex_state = 102}, - [3064] = {.lex_state = 91, .external_lex_state = 17}, - [3065] = {.lex_state = 102}, - [3066] = {.lex_state = 91}, - [3067] = {.lex_state = 102}, - [3068] = {.lex_state = 103, .external_lex_state = 13}, - [3069] = {.lex_state = 103, .external_lex_state = 13}, - [3070] = {.lex_state = 199}, - [3071] = {.lex_state = 103, .external_lex_state = 13}, - [3072] = {.lex_state = 103, .external_lex_state = 13}, - [3073] = {.lex_state = 103, .external_lex_state = 13}, - [3074] = {.lex_state = 101, .external_lex_state = 20}, - [3075] = {.lex_state = 101, .external_lex_state = 20}, - [3076] = {.lex_state = 103, .external_lex_state = 13}, - [3077] = {.lex_state = 101, .external_lex_state = 20}, - [3078] = {.lex_state = 101, .external_lex_state = 20}, - [3079] = {.lex_state = 103, .external_lex_state = 13}, - [3080] = {.lex_state = 103, .external_lex_state = 13}, - [3081] = {.lex_state = 102}, - [3082] = {.lex_state = 103, .external_lex_state = 13}, - [3083] = {.lex_state = 101, .external_lex_state = 20}, - [3084] = {.lex_state = 103, .external_lex_state = 13}, - [3085] = {.lex_state = 103, .external_lex_state = 13}, - [3086] = {.lex_state = 101, .external_lex_state = 20}, - [3087] = {.lex_state = 101, .external_lex_state = 20}, - [3088] = {.lex_state = 101, .external_lex_state = 20}, - [3089] = {.lex_state = 103, .external_lex_state = 13}, - [3090] = {.lex_state = 103, .external_lex_state = 13}, - [3091] = {.lex_state = 101, .external_lex_state = 20}, - [3092] = {.lex_state = 103, .external_lex_state = 13}, - [3093] = {.lex_state = 103, .external_lex_state = 13}, - [3094] = {.lex_state = 101, .external_lex_state = 20}, - [3095] = {.lex_state = 101, .external_lex_state = 20}, - [3096] = {.lex_state = 103, .external_lex_state = 13}, - [3097] = {.lex_state = 101, .external_lex_state = 20}, - [3098] = {.lex_state = 102}, - [3099] = {.lex_state = 103, .external_lex_state = 13}, - [3100] = {.lex_state = 199}, - [3101] = {.lex_state = 101, .external_lex_state = 20}, - [3102] = {.lex_state = 92, .external_lex_state = 19}, - [3103] = {.lex_state = 103, .external_lex_state = 13}, - [3104] = {.lex_state = 101, .external_lex_state = 20}, - [3105] = {.lex_state = 101, .external_lex_state = 20}, - [3106] = {.lex_state = 103, .external_lex_state = 13}, - [3107] = {.lex_state = 101, .external_lex_state = 20}, - [3108] = {.lex_state = 101, .external_lex_state = 20}, - [3109] = {.lex_state = 101, .external_lex_state = 20}, - [3110] = {.lex_state = 103, .external_lex_state = 13}, - [3111] = {.lex_state = 103, .external_lex_state = 13}, - [3112] = {.lex_state = 199}, - [3113] = {.lex_state = 101, .external_lex_state = 20}, - [3114] = {.lex_state = 103, .external_lex_state = 13}, - [3115] = {.lex_state = 103, .external_lex_state = 13}, - [3116] = {.lex_state = 101, .external_lex_state = 20}, - [3117] = {.lex_state = 101, .external_lex_state = 20}, - [3118] = {.lex_state = 103, .external_lex_state = 13}, - [3119] = {.lex_state = 101, .external_lex_state = 20}, - [3120] = {.lex_state = 103, .external_lex_state = 13}, - [3121] = {.lex_state = 103, .external_lex_state = 13}, - [3122] = {.lex_state = 103, .external_lex_state = 13}, - [3123] = {.lex_state = 101, .external_lex_state = 20}, - [3124] = {.lex_state = 103, .external_lex_state = 13}, - [3125] = {.lex_state = 103, .external_lex_state = 13}, - [3126] = {.lex_state = 101, .external_lex_state = 20}, - [3127] = {.lex_state = 101, .external_lex_state = 20}, - [3128] = {.lex_state = 101, .external_lex_state = 20}, - [3129] = {.lex_state = 102}, - [3130] = {.lex_state = 101, .external_lex_state = 20}, - [3131] = {.lex_state = 101, .external_lex_state = 20}, - [3132] = {.lex_state = 103, .external_lex_state = 13}, - [3133] = {.lex_state = 101, .external_lex_state = 20}, - [3134] = {.lex_state = 91}, - [3135] = {.lex_state = 103, .external_lex_state = 13}, - [3136] = {.lex_state = 91}, - [3137] = {.lex_state = 91}, - [3138] = {.lex_state = 101, .external_lex_state = 20}, - [3139] = {.lex_state = 103, .external_lex_state = 13}, - [3140] = {.lex_state = 103, .external_lex_state = 13}, - [3141] = {.lex_state = 102}, - [3142] = {.lex_state = 103, .external_lex_state = 13}, - [3143] = {.lex_state = 101, .external_lex_state = 20}, - [3144] = {.lex_state = 92, .external_lex_state = 19}, - [3145] = {.lex_state = 103, .external_lex_state = 13}, - [3146] = {.lex_state = 101, .external_lex_state = 20}, - [3147] = {.lex_state = 101, .external_lex_state = 20}, - [3148] = {.lex_state = 101, .external_lex_state = 20}, - [3149] = {.lex_state = 101, .external_lex_state = 20}, - [3150] = {.lex_state = 91}, - [3151] = {.lex_state = 101, .external_lex_state = 20}, - [3152] = {.lex_state = 91}, - [3153] = {.lex_state = 91}, - [3154] = {.lex_state = 103, .external_lex_state = 13}, - [3155] = {.lex_state = 101, .external_lex_state = 20}, - [3156] = {.lex_state = 101, .external_lex_state = 20}, - [3157] = {.lex_state = 103, .external_lex_state = 13}, - [3158] = {.lex_state = 103, .external_lex_state = 13}, - [3159] = {.lex_state = 91}, - [3160] = {.lex_state = 102}, - [3161] = {.lex_state = 101, .external_lex_state = 20}, - [3162] = {.lex_state = 103, .external_lex_state = 13}, - [3163] = {.lex_state = 103, .external_lex_state = 13}, - [3164] = {.lex_state = 101, .external_lex_state = 20}, - [3165] = {.lex_state = 101, .external_lex_state = 20}, - [3166] = {.lex_state = 101, .external_lex_state = 20}, - [3167] = {.lex_state = 101, .external_lex_state = 20}, - [3168] = {.lex_state = 101, .external_lex_state = 17}, - [3169] = {.lex_state = 103, .external_lex_state = 13}, - [3170] = {.lex_state = 101, .external_lex_state = 20}, - [3171] = {.lex_state = 101, .external_lex_state = 17}, - [3172] = {.lex_state = 101, .external_lex_state = 20}, - [3173] = {.lex_state = 103, .external_lex_state = 13}, - [3174] = {.lex_state = 103, .external_lex_state = 13}, - [3175] = {.lex_state = 103, .external_lex_state = 13}, - [3176] = {.lex_state = 103, .external_lex_state = 13}, - [3177] = {.lex_state = 101, .external_lex_state = 20}, - [3178] = {.lex_state = 103, .external_lex_state = 13}, - [3179] = {.lex_state = 103, .external_lex_state = 13}, - [3180] = {.lex_state = 199}, - [3181] = {.lex_state = 101, .external_lex_state = 20}, - [3182] = {.lex_state = 101, .external_lex_state = 20}, - [3183] = {.lex_state = 102}, - [3184] = {.lex_state = 101, .external_lex_state = 20}, - [3185] = {.lex_state = 103, .external_lex_state = 13}, - [3186] = {.lex_state = 103, .external_lex_state = 13}, - [3187] = {.lex_state = 199}, - [3188] = {.lex_state = 101, .external_lex_state = 20}, - [3189] = {.lex_state = 91}, - [3190] = {.lex_state = 199}, - [3191] = {.lex_state = 103, .external_lex_state = 13}, - [3192] = {.lex_state = 103, .external_lex_state = 13}, - [3193] = {.lex_state = 101, .external_lex_state = 20}, - [3194] = {.lex_state = 101, .external_lex_state = 20}, - [3195] = {.lex_state = 101, .external_lex_state = 17}, - [3196] = {.lex_state = 199}, - [3197] = {.lex_state = 101, .external_lex_state = 17}, - [3198] = {.lex_state = 91}, - [3199] = {.lex_state = 101, .external_lex_state = 20}, - [3200] = {.lex_state = 103, .external_lex_state = 13}, - [3201] = {.lex_state = 103, .external_lex_state = 13}, - [3202] = {.lex_state = 91}, - [3203] = {.lex_state = 101, .external_lex_state = 20}, - [3204] = {.lex_state = 91}, - [3205] = {.lex_state = 103, .external_lex_state = 13}, - [3206] = {.lex_state = 103, .external_lex_state = 13}, - [3207] = {.lex_state = 103, .external_lex_state = 13}, - [3208] = {.lex_state = 91}, - [3209] = {.lex_state = 102}, - [3210] = {.lex_state = 91}, - [3211] = {.lex_state = 101, .external_lex_state = 20}, - [3212] = {.lex_state = 199}, - [3213] = {.lex_state = 101, .external_lex_state = 20}, - [3214] = {.lex_state = 101, .external_lex_state = 20}, - [3215] = {.lex_state = 103, .external_lex_state = 13}, - [3216] = {.lex_state = 103, .external_lex_state = 13}, - [3217] = {.lex_state = 101, .external_lex_state = 20}, - [3218] = {.lex_state = 103, .external_lex_state = 13}, - [3219] = {.lex_state = 103, .external_lex_state = 13}, - [3220] = {.lex_state = 101, .external_lex_state = 20}, - [3221] = {.lex_state = 101, .external_lex_state = 20}, - [3222] = {.lex_state = 101, .external_lex_state = 20}, - [3223] = {.lex_state = 103, .external_lex_state = 13}, - [3224] = {.lex_state = 91}, - [3225] = {.lex_state = 92, .external_lex_state = 19}, - [3226] = {.lex_state = 199}, - [3227] = {.lex_state = 101, .external_lex_state = 20}, - [3228] = {.lex_state = 102}, - [3229] = {.lex_state = 91}, - [3230] = {.lex_state = 103, .external_lex_state = 13}, - [3231] = {.lex_state = 103, .external_lex_state = 13}, - [3232] = {.lex_state = 102}, - [3233] = {.lex_state = 199}, - [3234] = {.lex_state = 92, .external_lex_state = 19}, - [3235] = {.lex_state = 91}, - [3236] = {.lex_state = 101, .external_lex_state = 20}, - [3237] = {.lex_state = 91}, - [3238] = {.lex_state = 101, .external_lex_state = 20}, - [3239] = {.lex_state = 101, .external_lex_state = 20}, - [3240] = {.lex_state = 101, .external_lex_state = 20}, - [3241] = {.lex_state = 102}, - [3242] = {.lex_state = 101}, - [3243] = {.lex_state = 102}, - [3244] = {.lex_state = 101}, - [3245] = {.lex_state = 102}, - [3246] = {.lex_state = 101}, - [3247] = {.lex_state = 92, .external_lex_state = 19}, - [3248] = {.lex_state = 101}, - [3249] = {.lex_state = 102}, - [3250] = {.lex_state = 102}, - [3251] = {.lex_state = 102}, - [3252] = {.lex_state = 102}, - [3253] = {.lex_state = 102}, - [3254] = {.lex_state = 102}, - [3255] = {.lex_state = 102}, - [3256] = {.lex_state = 102}, - [3257] = {.lex_state = 102}, - [3258] = {.lex_state = 91}, - [3259] = {.lex_state = 102}, - [3260] = {.lex_state = 101}, - [3261] = {.lex_state = 102}, - [3262] = {.lex_state = 101}, - [3263] = {.lex_state = 101}, - [3264] = {.lex_state = 102}, - [3265] = {.lex_state = 102}, - [3266] = {.lex_state = 199}, - [3267] = {.lex_state = 102}, - [3268] = {.lex_state = 102}, - [3269] = {.lex_state = 102}, - [3270] = {.lex_state = 102}, - [3271] = {.lex_state = 102}, - [3272] = {.lex_state = 101}, - [3273] = {.lex_state = 102}, - [3274] = {.lex_state = 102}, - [3275] = {.lex_state = 102}, - [3276] = {.lex_state = 199}, - [3277] = {.lex_state = 102}, - [3278] = {.lex_state = 101, .external_lex_state = 20}, - [3279] = {.lex_state = 102}, - [3280] = {.lex_state = 102}, - [3281] = {.lex_state = 199}, - [3282] = {.lex_state = 102}, - [3283] = {.lex_state = 102}, - [3284] = {.lex_state = 102}, - [3285] = {.lex_state = 102}, - [3286] = {.lex_state = 101, .external_lex_state = 20}, - [3287] = {.lex_state = 102}, - [3288] = {.lex_state = 102}, - [3289] = {.lex_state = 102}, - [3290] = {.lex_state = 102}, - [3291] = {.lex_state = 199}, - [3292] = {.lex_state = 102}, - [3293] = {.lex_state = 92, .external_lex_state = 19}, - [3294] = {.lex_state = 102}, - [3295] = {.lex_state = 102}, - [3296] = {.lex_state = 199}, - [3297] = {.lex_state = 102}, - [3298] = {.lex_state = 102}, - [3299] = {.lex_state = 101, .external_lex_state = 20}, - [3300] = {.lex_state = 101}, - [3301] = {.lex_state = 102}, - [3302] = {.lex_state = 101, .external_lex_state = 20}, - [3303] = {.lex_state = 199}, - [3304] = {.lex_state = 101}, - [3305] = {.lex_state = 102}, - [3306] = {.lex_state = 102}, - [3307] = {.lex_state = 101, .external_lex_state = 20}, - [3308] = {.lex_state = 102}, - [3309] = {.lex_state = 102}, - [3310] = {.lex_state = 101, .external_lex_state = 20}, - [3311] = {.lex_state = 101}, - [3312] = {.lex_state = 101, .external_lex_state = 20}, - [3313] = {.lex_state = 102}, - [3314] = {.lex_state = 102}, - [3315] = {.lex_state = 102}, - [3316] = {.lex_state = 102}, - [3317] = {.lex_state = 101, .external_lex_state = 20}, - [3318] = {.lex_state = 199}, - [3319] = {.lex_state = 101, .external_lex_state = 20}, - [3320] = {.lex_state = 102}, - [3321] = {.lex_state = 102}, - [3322] = {.lex_state = 102}, - [3323] = {.lex_state = 102}, - [3324] = {.lex_state = 102}, - [3325] = {.lex_state = 102}, - [3326] = {.lex_state = 102}, - [3327] = {.lex_state = 102}, - [3328] = {.lex_state = 102}, - [3329] = {.lex_state = 90}, - [3330] = {.lex_state = 103, .external_lex_state = 13}, - [3331] = {.lex_state = 90}, - [3332] = {.lex_state = 199}, - [3333] = {.lex_state = 101, .external_lex_state = 20}, - [3334] = {.lex_state = 101, .external_lex_state = 20}, - [3335] = {.lex_state = 101, .external_lex_state = 20}, - [3336] = {.lex_state = 101, .external_lex_state = 20}, - [3337] = {.lex_state = 101, .external_lex_state = 20}, - [3338] = {.lex_state = 101, .external_lex_state = 20}, - [3339] = {.lex_state = 101, .external_lex_state = 20}, - [3340] = {.lex_state = 101}, - [3341] = {.lex_state = 101, .external_lex_state = 20}, - [3342] = {.lex_state = 102}, - [3343] = {.lex_state = 90}, - [3344] = {.lex_state = 101, .external_lex_state = 20}, - [3345] = {.lex_state = 199}, - [3346] = {.lex_state = 102}, - [3347] = {.lex_state = 101, .external_lex_state = 20}, - [3348] = {.lex_state = 101}, - [3349] = {.lex_state = 102}, - [3350] = {.lex_state = 102}, - [3351] = {.lex_state = 101, .external_lex_state = 20}, - [3352] = {.lex_state = 101, .external_lex_state = 20}, - [3353] = {.lex_state = 101, .external_lex_state = 20}, - [3354] = {.lex_state = 101, .external_lex_state = 20}, - [3355] = {.lex_state = 199}, - [3356] = {.lex_state = 101, .external_lex_state = 20}, - [3357] = {.lex_state = 199}, - [3358] = {.lex_state = 199}, - [3359] = {.lex_state = 101, .external_lex_state = 13}, - [3360] = {.lex_state = 101, .external_lex_state = 13}, - [3361] = {.lex_state = 101, .external_lex_state = 13}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 91}, - [3364] = {.lex_state = 91}, - [3365] = {.lex_state = 199}, - [3366] = {.lex_state = 101, .external_lex_state = 13}, - [3367] = {.lex_state = 101, .external_lex_state = 13}, - [3368] = {.lex_state = 91}, - [3369] = {.lex_state = 199}, - [3370] = {.lex_state = 101, .external_lex_state = 13}, - [3371] = {.lex_state = 91}, - [3372] = {.lex_state = 199}, - [3373] = {.lex_state = 91}, - [3374] = {.lex_state = 91}, - [3375] = {.lex_state = 101, .external_lex_state = 13}, - [3376] = {.lex_state = 91}, - [3377] = {.lex_state = 101, .external_lex_state = 13}, - [3378] = {.lex_state = 91}, - [3379] = {.lex_state = 199}, - [3380] = {.lex_state = 91}, - [3381] = {.lex_state = 101, .external_lex_state = 13}, - [3382] = {.lex_state = 199}, - [3383] = {.lex_state = 95}, - [3384] = {.lex_state = 199}, - [3385] = {.lex_state = 199}, - [3386] = {.lex_state = 91}, - [3387] = {.lex_state = 101, .external_lex_state = 13}, - [3388] = {.lex_state = 101, .external_lex_state = 13}, - [3389] = {.lex_state = 101, .external_lex_state = 13}, - [3390] = {.lex_state = 101, .external_lex_state = 13}, - [3391] = {.lex_state = 91}, - [3392] = {.lex_state = 101, .external_lex_state = 13}, - [3393] = {.lex_state = 199}, - [3394] = {.lex_state = 91}, - [3395] = {.lex_state = 91}, - [3396] = {.lex_state = 199}, - [3397] = {.lex_state = 101, .external_lex_state = 13}, - [3398] = {.lex_state = 199}, - [3399] = {.lex_state = 91}, - [3400] = {.lex_state = 91}, - [3401] = {.lex_state = 101, .external_lex_state = 13}, - [3402] = {.lex_state = 199}, - [3403] = {.lex_state = 199}, - [3404] = {.lex_state = 91}, - [3405] = {.lex_state = 101, .external_lex_state = 13}, - [3406] = {.lex_state = 91}, - [3407] = {.lex_state = 199}, - [3408] = {.lex_state = 91}, - [3409] = {.lex_state = 199}, - [3410] = {.lex_state = 101, .external_lex_state = 13}, - [3411] = {.lex_state = 101, .external_lex_state = 13}, - [3412] = {.lex_state = 91}, - [3413] = {.lex_state = 199}, - [3414] = {.lex_state = 199}, - [3415] = {.lex_state = 199}, - [3416] = {.lex_state = 101, .external_lex_state = 13}, - [3417] = {.lex_state = 91}, - [3418] = {.lex_state = 199}, - [3419] = {.lex_state = 91}, - [3420] = {.lex_state = 101, .external_lex_state = 13}, - [3421] = {.lex_state = 91}, - [3422] = {.lex_state = 199}, - [3423] = {.lex_state = 91}, - [3424] = {.lex_state = 91}, - [3425] = {.lex_state = 91}, - [3426] = {.lex_state = 101, .external_lex_state = 13}, - [3427] = {.lex_state = 101, .external_lex_state = 13}, - [3428] = {.lex_state = 199}, - [3429] = {.lex_state = 101, .external_lex_state = 13}, - [3430] = {.lex_state = 199, .external_lex_state = 24}, - [3431] = {.lex_state = 199}, - [3432] = {.lex_state = 199}, - [3433] = {.lex_state = 91}, - [3434] = {.lex_state = 91}, - [3435] = {.lex_state = 91}, - [3436] = {.lex_state = 101, .external_lex_state = 13}, - [3437] = {.lex_state = 101, .external_lex_state = 13}, - [3438] = {.lex_state = 199}, - [3439] = {.lex_state = 199}, - [3440] = {.lex_state = 91}, - [3441] = {.lex_state = 199}, - [3442] = {.lex_state = 199, .external_lex_state = 24}, - [3443] = {.lex_state = 91}, - [3444] = {.lex_state = 101, .external_lex_state = 13}, - [3445] = {.lex_state = 91}, - [3446] = {.lex_state = 91}, - [3447] = {.lex_state = 101, .external_lex_state = 13}, - [3448] = {.lex_state = 101, .external_lex_state = 13}, - [3449] = {.lex_state = 91}, - [3450] = {.lex_state = 199}, - [3451] = {.lex_state = 101, .external_lex_state = 13}, - [3452] = {.lex_state = 91}, - [3453] = {.lex_state = 91}, - [3454] = {.lex_state = 91}, - [3455] = {.lex_state = 101, .external_lex_state = 13}, - [3456] = {.lex_state = 199}, - [3457] = {.lex_state = 91}, - [3458] = {.lex_state = 101, .external_lex_state = 13}, - [3459] = {.lex_state = 199}, - [3460] = {.lex_state = 101, .external_lex_state = 13}, - [3461] = {.lex_state = 101, .external_lex_state = 13}, - [3462] = {.lex_state = 92, .external_lex_state = 14}, - [3463] = {.lex_state = 92, .external_lex_state = 14}, - [3464] = {.lex_state = 101, .external_lex_state = 13}, - [3465] = {.lex_state = 101, .external_lex_state = 13}, - [3466] = {.lex_state = 101, .external_lex_state = 13}, - [3467] = {.lex_state = 101, .external_lex_state = 13}, - [3468] = {.lex_state = 91}, - [3469] = {.lex_state = 91}, - [3470] = {.lex_state = 199}, - [3471] = {.lex_state = 199, .external_lex_state = 24}, - [3472] = {.lex_state = 91}, - [3473] = {.lex_state = 91}, - [3474] = {.lex_state = 199}, - [3475] = {.lex_state = 101, .external_lex_state = 13}, - [3476] = {.lex_state = 91}, - [3477] = {.lex_state = 91}, - [3478] = {.lex_state = 91}, - [3479] = {.lex_state = 199}, - [3480] = {.lex_state = 91}, - [3481] = {.lex_state = 199}, - [3482] = {.lex_state = 199}, - [3483] = {.lex_state = 91}, - [3484] = {.lex_state = 91}, - [3485] = {.lex_state = 101, .external_lex_state = 13}, - [3486] = {.lex_state = 199, .external_lex_state = 24}, - [3487] = {.lex_state = 101, .external_lex_state = 13}, - [3488] = {.lex_state = 199}, - [3489] = {.lex_state = 199}, - [3490] = {.lex_state = 101, .external_lex_state = 13}, - [3491] = {.lex_state = 199}, - [3492] = {.lex_state = 199, .external_lex_state = 24}, - [3493] = {.lex_state = 199}, - [3494] = {.lex_state = 91}, - [3495] = {.lex_state = 199}, - [3496] = {.lex_state = 92, .external_lex_state = 14}, - [3497] = {.lex_state = 92, .external_lex_state = 14}, - [3498] = {.lex_state = 91}, - [3499] = {.lex_state = 91}, - [3500] = {.lex_state = 199}, - [3501] = {.lex_state = 199}, - [3502] = {.lex_state = 101, .external_lex_state = 13}, - [3503] = {.lex_state = 91}, - [3504] = {.lex_state = 91}, - [3505] = {.lex_state = 199}, - [3506] = {.lex_state = 199}, - [3507] = {.lex_state = 101, .external_lex_state = 13}, - [3508] = {.lex_state = 101, .external_lex_state = 13}, - [3509] = {.lex_state = 199}, - [3510] = {.lex_state = 199}, - [3511] = {.lex_state = 91}, - [3512] = {.lex_state = 101, .external_lex_state = 13}, - [3513] = {.lex_state = 199}, - [3514] = {.lex_state = 101, .external_lex_state = 13}, - [3515] = {.lex_state = 101, .external_lex_state = 13}, - [3516] = {.lex_state = 199}, - [3517] = {.lex_state = 199}, - [3518] = {.lex_state = 101, .external_lex_state = 13}, - [3519] = {.lex_state = 101, .external_lex_state = 13}, - [3520] = {.lex_state = 91}, - [3521] = {.lex_state = 199}, - [3522] = {.lex_state = 91}, - [3523] = {.lex_state = 95}, - [3524] = {.lex_state = 91}, - [3525] = {.lex_state = 199}, - [3526] = {.lex_state = 101, .external_lex_state = 13}, - [3527] = {.lex_state = 199}, - [3528] = {.lex_state = 90}, - [3529] = {.lex_state = 199}, - [3530] = {.lex_state = 199}, - [3531] = {.lex_state = 199}, - [3532] = {.lex_state = 90}, - [3533] = {.lex_state = 199}, - [3534] = {.lex_state = 91}, - [3535] = {.lex_state = 199}, - [3536] = {.lex_state = 101, .external_lex_state = 13}, - [3537] = {.lex_state = 101, .external_lex_state = 13}, - [3538] = {.lex_state = 101, .external_lex_state = 13}, - [3539] = {.lex_state = 101, .external_lex_state = 13}, - [3540] = {.lex_state = 199}, - [3541] = {.lex_state = 199}, - [3542] = {.lex_state = 199}, - [3543] = {.lex_state = 101, .external_lex_state = 13}, - [3544] = {.lex_state = 101, .external_lex_state = 13}, - [3545] = {.lex_state = 199}, - [3546] = {.lex_state = 199}, - [3547] = {.lex_state = 199}, - [3548] = {.lex_state = 199, .external_lex_state = 24}, - [3549] = {.lex_state = 91}, - [3550] = {.lex_state = 91}, - [3551] = {.lex_state = 91}, - [3552] = {.lex_state = 199}, - [3553] = {.lex_state = 90}, - [3554] = {.lex_state = 91}, - [3555] = {.lex_state = 199}, - [3556] = {.lex_state = 199}, - [3557] = {.lex_state = 91}, - [3558] = {.lex_state = 199}, - [3559] = {.lex_state = 101, .external_lex_state = 13}, - [3560] = {.lex_state = 199}, - [3561] = {.lex_state = 199}, - [3562] = {.lex_state = 199}, - [3563] = {.lex_state = 101, .external_lex_state = 13}, - [3564] = {.lex_state = 101, .external_lex_state = 13}, - [3565] = {.lex_state = 91}, - [3566] = {.lex_state = 91}, - [3567] = {.lex_state = 91}, - [3568] = {.lex_state = 101, .external_lex_state = 13}, - [3569] = {.lex_state = 91}, - [3570] = {.lex_state = 101, .external_lex_state = 13}, -}; - -enum { - ts_external_token_heredoc_start = 0, - ts_external_token__simple_heredoc_body = 1, - ts_external_token__heredoc_body_beginning = 2, - ts_external_token__heredoc_body_middle = 3, - ts_external_token__heredoc_body_end = 4, - ts_external_token_file_descriptor = 5, - ts_external_token__empty_value = 6, - ts_external_token__concat = 7, + case 77: + if (lookahead == 'n') ADVANCE(82); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 79: + if (lookahead == 'n') ADVANCE(83); + END_STATE(); + case 80: + if (lookahead == 'y') ADVANCE(84); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_typeset); + END_STATE(); + case 82: + if (lookahead == 'v') ADVANCE(85); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_unsetenv); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 231, .external_lex_state = 2}, + [2] = {.lex_state = 109, .external_lex_state = 2}, + [3] = {.lex_state = 109, .external_lex_state = 2}, + [4] = {.lex_state = 109, .external_lex_state = 2}, + [5] = {.lex_state = 109, .external_lex_state = 2}, + [6] = {.lex_state = 109, .external_lex_state = 2}, + [7] = {.lex_state = 109, .external_lex_state = 2}, + [8] = {.lex_state = 109, .external_lex_state = 2}, + [9] = {.lex_state = 109, .external_lex_state = 2}, + [10] = {.lex_state = 109, .external_lex_state = 2}, + [11] = {.lex_state = 109, .external_lex_state = 2}, + [12] = {.lex_state = 109, .external_lex_state = 2}, + [13] = {.lex_state = 109, .external_lex_state = 2}, + [14] = {.lex_state = 109, .external_lex_state = 2}, + [15] = {.lex_state = 109, .external_lex_state = 2}, + [16] = {.lex_state = 109, .external_lex_state = 2}, + [17] = {.lex_state = 109, .external_lex_state = 2}, + [18] = {.lex_state = 109, .external_lex_state = 2}, + [19] = {.lex_state = 109, .external_lex_state = 2}, + [20] = {.lex_state = 109, .external_lex_state = 2}, + [21] = {.lex_state = 109, .external_lex_state = 2}, + [22] = {.lex_state = 109, .external_lex_state = 2}, + [23] = {.lex_state = 109, .external_lex_state = 2}, + [24] = {.lex_state = 109, .external_lex_state = 2}, + [25] = {.lex_state = 109, .external_lex_state = 2}, + [26] = {.lex_state = 109, .external_lex_state = 2}, + [27] = {.lex_state = 109, .external_lex_state = 2}, + [28] = {.lex_state = 109, .external_lex_state = 2}, + [29] = {.lex_state = 109, .external_lex_state = 2}, + [30] = {.lex_state = 109, .external_lex_state = 2}, + [31] = {.lex_state = 109, .external_lex_state = 2}, + [32] = {.lex_state = 109, .external_lex_state = 2}, + [33] = {.lex_state = 109, .external_lex_state = 2}, + [34] = {.lex_state = 109, .external_lex_state = 2}, + [35] = {.lex_state = 109, .external_lex_state = 2}, + [36] = {.lex_state = 109, .external_lex_state = 2}, + [37] = {.lex_state = 5, .external_lex_state = 3}, + [38] = {.lex_state = 231, .external_lex_state = 2}, + [39] = {.lex_state = 231, .external_lex_state = 2}, + [40] = {.lex_state = 231, .external_lex_state = 2}, + [41] = {.lex_state = 231, .external_lex_state = 2}, + [42] = {.lex_state = 231, .external_lex_state = 2}, + [43] = {.lex_state = 78, .external_lex_state = 3}, + [44] = {.lex_state = 231, .external_lex_state = 2}, + [45] = {.lex_state = 111, .external_lex_state = 2}, + [46] = {.lex_state = 111, .external_lex_state = 2}, + [47] = {.lex_state = 111, .external_lex_state = 2}, + [48] = {.lex_state = 111, .external_lex_state = 2}, + [49] = {.lex_state = 111, .external_lex_state = 2}, + [50] = {.lex_state = 111, .external_lex_state = 2}, + [51] = {.lex_state = 111, .external_lex_state = 2}, + [52] = {.lex_state = 111, .external_lex_state = 2}, + [53] = {.lex_state = 111, .external_lex_state = 2}, + [54] = {.lex_state = 111, .external_lex_state = 2}, + [55] = {.lex_state = 111, .external_lex_state = 2}, + [56] = {.lex_state = 111, .external_lex_state = 2}, + [57] = {.lex_state = 231, .external_lex_state = 2}, + [58] = {.lex_state = 231, .external_lex_state = 2}, + [59] = {.lex_state = 231, .external_lex_state = 2}, + [60] = {.lex_state = 231, .external_lex_state = 2}, + [61] = {.lex_state = 231, .external_lex_state = 2}, + [62] = {.lex_state = 231, .external_lex_state = 2}, + [63] = {.lex_state = 231, .external_lex_state = 2}, + [64] = {.lex_state = 231, .external_lex_state = 2}, + [65] = {.lex_state = 231, .external_lex_state = 2}, + [66] = {.lex_state = 231, .external_lex_state = 2}, + [67] = {.lex_state = 231, .external_lex_state = 2}, + [68] = {.lex_state = 231, .external_lex_state = 2}, + [69] = {.lex_state = 231, .external_lex_state = 2}, + [70] = {.lex_state = 231, .external_lex_state = 2}, + [71] = {.lex_state = 231, .external_lex_state = 2}, + [72] = {.lex_state = 231, .external_lex_state = 2}, + [73] = {.lex_state = 231, .external_lex_state = 2}, + [74] = {.lex_state = 231, .external_lex_state = 2}, + [75] = {.lex_state = 231, .external_lex_state = 2}, + [76] = {.lex_state = 231, .external_lex_state = 2}, + [77] = {.lex_state = 231, .external_lex_state = 2}, + [78] = {.lex_state = 231, .external_lex_state = 2}, + [79] = {.lex_state = 231, .external_lex_state = 2}, + [80] = {.lex_state = 231, .external_lex_state = 2}, + [81] = {.lex_state = 231, .external_lex_state = 2}, + [82] = {.lex_state = 231, .external_lex_state = 2}, + [83] = {.lex_state = 231, .external_lex_state = 2}, + [84] = {.lex_state = 231, .external_lex_state = 2}, + [85] = {.lex_state = 231, .external_lex_state = 2}, + [86] = {.lex_state = 231, .external_lex_state = 2}, + [87] = {.lex_state = 231, .external_lex_state = 2}, + [88] = {.lex_state = 231, .external_lex_state = 2}, + [89] = {.lex_state = 231, .external_lex_state = 2}, + [90] = {.lex_state = 231, .external_lex_state = 2}, + [91] = {.lex_state = 231, .external_lex_state = 2}, + [92] = {.lex_state = 231, .external_lex_state = 2}, + [93] = {.lex_state = 231, .external_lex_state = 2}, + [94] = {.lex_state = 231, .external_lex_state = 2}, + [95] = {.lex_state = 231, .external_lex_state = 2}, + [96] = {.lex_state = 231, .external_lex_state = 2}, + [97] = {.lex_state = 231, .external_lex_state = 2}, + [98] = {.lex_state = 231, .external_lex_state = 2}, + [99] = {.lex_state = 112, .external_lex_state = 4}, + [100] = {.lex_state = 231, .external_lex_state = 2}, + [101] = {.lex_state = 231, .external_lex_state = 2}, + [102] = {.lex_state = 231, .external_lex_state = 2}, + [103] = {.lex_state = 112, .external_lex_state = 4}, + [104] = {.lex_state = 231, .external_lex_state = 2}, + [105] = {.lex_state = 231, .external_lex_state = 2}, + [106] = {.lex_state = 231, .external_lex_state = 2}, + [107] = {.lex_state = 231, .external_lex_state = 2}, + [108] = {.lex_state = 231, .external_lex_state = 2}, + [109] = {.lex_state = 231, .external_lex_state = 2}, + [110] = {.lex_state = 231, .external_lex_state = 2}, + [111] = {.lex_state = 231, .external_lex_state = 2}, + [112] = {.lex_state = 231, .external_lex_state = 2}, + [113] = {.lex_state = 231, .external_lex_state = 2}, + [114] = {.lex_state = 231, .external_lex_state = 2}, + [115] = {.lex_state = 231, .external_lex_state = 2}, + [116] = {.lex_state = 231, .external_lex_state = 2}, + [117] = {.lex_state = 231, .external_lex_state = 2}, + [118] = {.lex_state = 231, .external_lex_state = 2}, + [119] = {.lex_state = 231, .external_lex_state = 2}, + [120] = {.lex_state = 231, .external_lex_state = 2}, + [121] = {.lex_state = 231, .external_lex_state = 2}, + [122] = {.lex_state = 231, .external_lex_state = 2}, + [123] = {.lex_state = 231, .external_lex_state = 2}, + [124] = {.lex_state = 231, .external_lex_state = 2}, + [125] = {.lex_state = 231, .external_lex_state = 2}, + [126] = {.lex_state = 231, .external_lex_state = 2}, + [127] = {.lex_state = 231, .external_lex_state = 2}, + [128] = {.lex_state = 231, .external_lex_state = 2}, + [129] = {.lex_state = 231, .external_lex_state = 2}, + [130] = {.lex_state = 231, .external_lex_state = 2}, + [131] = {.lex_state = 231, .external_lex_state = 2}, + [132] = {.lex_state = 231, .external_lex_state = 2}, + [133] = {.lex_state = 231, .external_lex_state = 2}, + [134] = {.lex_state = 231, .external_lex_state = 2}, + [135] = {.lex_state = 231, .external_lex_state = 2}, + [136] = {.lex_state = 231, .external_lex_state = 2}, + [137] = {.lex_state = 231, .external_lex_state = 2}, + [138] = {.lex_state = 231, .external_lex_state = 2}, + [139] = {.lex_state = 231, .external_lex_state = 2}, + [140] = {.lex_state = 231, .external_lex_state = 2}, + [141] = {.lex_state = 231, .external_lex_state = 2}, + [142] = {.lex_state = 231, .external_lex_state = 2}, + [143] = {.lex_state = 231, .external_lex_state = 2}, + [144] = {.lex_state = 231, .external_lex_state = 2}, + [145] = {.lex_state = 231, .external_lex_state = 2}, + [146] = {.lex_state = 231, .external_lex_state = 2}, + [147] = {.lex_state = 231, .external_lex_state = 2}, + [148] = {.lex_state = 231, .external_lex_state = 2}, + [149] = {.lex_state = 231, .external_lex_state = 2}, + [150] = {.lex_state = 231, .external_lex_state = 2}, + [151] = {.lex_state = 231, .external_lex_state = 2}, + [152] = {.lex_state = 231, .external_lex_state = 2}, + [153] = {.lex_state = 231, .external_lex_state = 2}, + [154] = {.lex_state = 231, .external_lex_state = 2}, + [155] = {.lex_state = 231, .external_lex_state = 2}, + [156] = {.lex_state = 231, .external_lex_state = 2}, + [157] = {.lex_state = 231, .external_lex_state = 2}, + [158] = {.lex_state = 231, .external_lex_state = 2}, + [159] = {.lex_state = 231, .external_lex_state = 2}, + [160] = {.lex_state = 112, .external_lex_state = 4}, + [161] = {.lex_state = 112, .external_lex_state = 4}, + [162] = {.lex_state = 231, .external_lex_state = 2}, + [163] = {.lex_state = 231, .external_lex_state = 2}, + [164] = {.lex_state = 231, .external_lex_state = 2}, + [165] = {.lex_state = 112, .external_lex_state = 4}, + [166] = {.lex_state = 231, .external_lex_state = 2}, + [167] = {.lex_state = 231, .external_lex_state = 2}, + [168] = {.lex_state = 231, .external_lex_state = 2}, + [169] = {.lex_state = 231, .external_lex_state = 2}, + [170] = {.lex_state = 231, .external_lex_state = 2}, + [171] = {.lex_state = 231, .external_lex_state = 2}, + [172] = {.lex_state = 231, .external_lex_state = 2}, + [173] = {.lex_state = 231, .external_lex_state = 2}, + [174] = {.lex_state = 231, .external_lex_state = 2}, + [175] = {.lex_state = 231, .external_lex_state = 2}, + [176] = {.lex_state = 231, .external_lex_state = 2}, + [177] = {.lex_state = 231, .external_lex_state = 2}, + [178] = {.lex_state = 231, .external_lex_state = 2}, + [179] = {.lex_state = 231, .external_lex_state = 2}, + [180] = {.lex_state = 112, .external_lex_state = 4}, + [181] = {.lex_state = 231, .external_lex_state = 2}, + [182] = {.lex_state = 231, .external_lex_state = 2}, + [183] = {.lex_state = 231, .external_lex_state = 2}, + [184] = {.lex_state = 231, .external_lex_state = 2}, + [185] = {.lex_state = 231, .external_lex_state = 2}, + [186] = {.lex_state = 231, .external_lex_state = 2}, + [187] = {.lex_state = 112, .external_lex_state = 4}, + [188] = {.lex_state = 231, .external_lex_state = 2}, + [189] = {.lex_state = 231, .external_lex_state = 2}, + [190] = {.lex_state = 231, .external_lex_state = 2}, + [191] = {.lex_state = 231, .external_lex_state = 2}, + [192] = {.lex_state = 231, .external_lex_state = 2}, + [193] = {.lex_state = 231, .external_lex_state = 2}, + [194] = {.lex_state = 231, .external_lex_state = 2}, + [195] = {.lex_state = 231, .external_lex_state = 2}, + [196] = {.lex_state = 231, .external_lex_state = 2}, + [197] = {.lex_state = 231, .external_lex_state = 2}, + [198] = {.lex_state = 231, .external_lex_state = 2}, + [199] = {.lex_state = 231, .external_lex_state = 2}, + [200] = {.lex_state = 231, .external_lex_state = 2}, + [201] = {.lex_state = 231, .external_lex_state = 2}, + [202] = {.lex_state = 231, .external_lex_state = 2}, + [203] = {.lex_state = 231, .external_lex_state = 2}, + [204] = {.lex_state = 231, .external_lex_state = 2}, + [205] = {.lex_state = 231, .external_lex_state = 2}, + [206] = {.lex_state = 231, .external_lex_state = 2}, + [207] = {.lex_state = 231, .external_lex_state = 2}, + [208] = {.lex_state = 231, .external_lex_state = 2}, + [209] = {.lex_state = 231, .external_lex_state = 2}, + [210] = {.lex_state = 231, .external_lex_state = 2}, + [211] = {.lex_state = 231, .external_lex_state = 2}, + [212] = {.lex_state = 231, .external_lex_state = 2}, + [213] = {.lex_state = 231, .external_lex_state = 2}, + [214] = {.lex_state = 231, .external_lex_state = 2}, + [215] = {.lex_state = 231, .external_lex_state = 2}, + [216] = {.lex_state = 82, .external_lex_state = 5}, + [217] = {.lex_state = 104, .external_lex_state = 6}, + [218] = {.lex_state = 101, .external_lex_state = 6}, + [219] = {.lex_state = 103, .external_lex_state = 6}, + [220] = {.lex_state = 105, .external_lex_state = 7}, + [221] = {.lex_state = 12, .external_lex_state = 8}, + [222] = {.lex_state = 102, .external_lex_state = 6}, + [223] = {.lex_state = 12, .external_lex_state = 8}, + [224] = {.lex_state = 79, .external_lex_state = 8}, + [225] = {.lex_state = 79, .external_lex_state = 8}, + [226] = {.lex_state = 83, .external_lex_state = 3}, + [227] = {.lex_state = 83, .external_lex_state = 3}, + [228] = {.lex_state = 83, .external_lex_state = 3}, + [229] = {.lex_state = 83, .external_lex_state = 3}, + [230] = {.lex_state = 83, .external_lex_state = 3}, + [231] = {.lex_state = 87, .external_lex_state = 3}, + [232] = {.lex_state = 83, .external_lex_state = 3}, + [233] = {.lex_state = 83, .external_lex_state = 3}, + [234] = {.lex_state = 83, .external_lex_state = 3}, + [235] = {.lex_state = 83, .external_lex_state = 3}, + [236] = {.lex_state = 83, .external_lex_state = 3}, + [237] = {.lex_state = 83, .external_lex_state = 3}, + [238] = {.lex_state = 83, .external_lex_state = 3}, + [239] = {.lex_state = 83, .external_lex_state = 3}, + [240] = {.lex_state = 83, .external_lex_state = 3}, + [241] = {.lex_state = 83, .external_lex_state = 3}, + [242] = {.lex_state = 83, .external_lex_state = 3}, + [243] = {.lex_state = 83, .external_lex_state = 8}, + [244] = {.lex_state = 83, .external_lex_state = 3}, + [245] = {.lex_state = 83, .external_lex_state = 3}, + [246] = {.lex_state = 83, .external_lex_state = 3}, + [247] = {.lex_state = 87, .external_lex_state = 3}, + [248] = {.lex_state = 87, .external_lex_state = 3}, + [249] = {.lex_state = 87, .external_lex_state = 3}, + [250] = {.lex_state = 83, .external_lex_state = 3}, + [251] = {.lex_state = 83, .external_lex_state = 3}, + [252] = {.lex_state = 83, .external_lex_state = 3}, + [253] = {.lex_state = 83, .external_lex_state = 3}, + [254] = {.lex_state = 83, .external_lex_state = 3}, + [255] = {.lex_state = 83, .external_lex_state = 3}, + [256] = {.lex_state = 87, .external_lex_state = 3}, + [257] = {.lex_state = 83, .external_lex_state = 3}, + [258] = {.lex_state = 83, .external_lex_state = 3}, + [259] = {.lex_state = 83, .external_lex_state = 3}, + [260] = {.lex_state = 83, .external_lex_state = 3}, + [261] = {.lex_state = 83, .external_lex_state = 3}, + [262] = {.lex_state = 87, .external_lex_state = 3}, + [263] = {.lex_state = 83, .external_lex_state = 3}, + [264] = {.lex_state = 83, .external_lex_state = 8}, + [265] = {.lex_state = 83, .external_lex_state = 3}, + [266] = {.lex_state = 83, .external_lex_state = 3}, + [267] = {.lex_state = 83, .external_lex_state = 3}, + [268] = {.lex_state = 87, .external_lex_state = 3}, + [269] = {.lex_state = 87, .external_lex_state = 8}, + [270] = {.lex_state = 87, .external_lex_state = 3}, + [271] = {.lex_state = 83, .external_lex_state = 8}, + [272] = {.lex_state = 87, .external_lex_state = 3}, + [273] = {.lex_state = 87, .external_lex_state = 3}, + [274] = {.lex_state = 87, .external_lex_state = 3}, + [275] = {.lex_state = 87, .external_lex_state = 3}, + [276] = {.lex_state = 87, .external_lex_state = 3}, + [277] = {.lex_state = 87, .external_lex_state = 3}, + [278] = {.lex_state = 87, .external_lex_state = 3}, + [279] = {.lex_state = 87, .external_lex_state = 3}, + [280] = {.lex_state = 87, .external_lex_state = 3}, + [281] = {.lex_state = 83, .external_lex_state = 8}, + [282] = {.lex_state = 87, .external_lex_state = 3}, + [283] = {.lex_state = 87, .external_lex_state = 3}, + [284] = {.lex_state = 87, .external_lex_state = 3}, + [285] = {.lex_state = 87, .external_lex_state = 3}, + [286] = {.lex_state = 87, .external_lex_state = 3}, + [287] = {.lex_state = 87, .external_lex_state = 3}, + [288] = {.lex_state = 87, .external_lex_state = 3}, + [289] = {.lex_state = 87, .external_lex_state = 3}, + [290] = {.lex_state = 87, .external_lex_state = 8}, + [291] = {.lex_state = 87, .external_lex_state = 3}, + [292] = {.lex_state = 87, .external_lex_state = 3}, + [293] = {.lex_state = 87, .external_lex_state = 3}, + [294] = {.lex_state = 87, .external_lex_state = 3}, + [295] = {.lex_state = 87, .external_lex_state = 3}, + [296] = {.lex_state = 87, .external_lex_state = 3}, + [297] = {.lex_state = 87, .external_lex_state = 3}, + [298] = {.lex_state = 87, .external_lex_state = 3}, + [299] = {.lex_state = 87, .external_lex_state = 3}, + [300] = {.lex_state = 87, .external_lex_state = 8}, + [301] = {.lex_state = 87, .external_lex_state = 8}, + [302] = {.lex_state = 110, .external_lex_state = 2}, + [303] = {.lex_state = 110, .external_lex_state = 2}, + [304] = {.lex_state = 74, .external_lex_state = 9}, + [305] = {.lex_state = 74, .external_lex_state = 9}, + [306] = {.lex_state = 111, .external_lex_state = 10}, + [307] = {.lex_state = 231, .external_lex_state = 10}, + [308] = {.lex_state = 111, .external_lex_state = 10}, + [309] = {.lex_state = 74, .external_lex_state = 9}, + [310] = {.lex_state = 231, .external_lex_state = 10}, + [311] = {.lex_state = 231, .external_lex_state = 10}, + [312] = {.lex_state = 80, .external_lex_state = 9}, + [313] = {.lex_state = 80, .external_lex_state = 9}, + [314] = {.lex_state = 80, .external_lex_state = 9}, + [315] = {.lex_state = 77, .external_lex_state = 8}, + [316] = {.lex_state = 84, .external_lex_state = 8}, + [317] = {.lex_state = 226, .external_lex_state = 9}, + [318] = {.lex_state = 21, .external_lex_state = 11}, + [319] = {.lex_state = 84, .external_lex_state = 8}, + [320] = {.lex_state = 84, .external_lex_state = 8}, + [321] = {.lex_state = 226, .external_lex_state = 9}, + [322] = {.lex_state = 226, .external_lex_state = 9}, + [323] = {.lex_state = 77, .external_lex_state = 8}, + [324] = {.lex_state = 226, .external_lex_state = 9}, + [325] = {.lex_state = 21, .external_lex_state = 11}, + [326] = {.lex_state = 226, .external_lex_state = 9}, + [327] = {.lex_state = 226, .external_lex_state = 9}, + [328] = {.lex_state = 84, .external_lex_state = 8}, + [329] = {.lex_state = 84, .external_lex_state = 8}, + [330] = {.lex_state = 90, .external_lex_state = 8}, + [331] = {.lex_state = 111, .external_lex_state = 2}, + [332] = {.lex_state = 231, .external_lex_state = 10}, + [333] = {.lex_state = 231, .external_lex_state = 2}, + [334] = {.lex_state = 90, .external_lex_state = 8}, + [335] = {.lex_state = 231, .external_lex_state = 10}, + [336] = {.lex_state = 81, .external_lex_state = 8}, + [337] = {.lex_state = 231, .external_lex_state = 2}, + [338] = {.lex_state = 74, .external_lex_state = 8}, + [339] = {.lex_state = 90, .external_lex_state = 8}, + [340] = {.lex_state = 85, .external_lex_state = 9}, + [341] = {.lex_state = 81, .external_lex_state = 8}, + [342] = {.lex_state = 74, .external_lex_state = 8}, + [343] = {.lex_state = 85, .external_lex_state = 9}, + [344] = {.lex_state = 90, .external_lex_state = 8}, + [345] = {.lex_state = 231, .external_lex_state = 2}, + [346] = {.lex_state = 115, .external_lex_state = 12}, + [347] = {.lex_state = 111, .external_lex_state = 2}, + [348] = {.lex_state = 115, .external_lex_state = 12}, + [349] = {.lex_state = 111, .external_lex_state = 2}, + [350] = {.lex_state = 231, .external_lex_state = 2}, + [351] = {.lex_state = 111, .external_lex_state = 2}, + [352] = {.lex_state = 112, .external_lex_state = 13}, + [353] = {.lex_state = 90, .external_lex_state = 8}, + [354] = {.lex_state = 74, .external_lex_state = 8}, + [355] = {.lex_state = 231, .external_lex_state = 10}, + [356] = {.lex_state = 231, .external_lex_state = 2}, + [357] = {.lex_state = 226, .external_lex_state = 9}, + [358] = {.lex_state = 231, .external_lex_state = 2}, + [359] = {.lex_state = 231, .external_lex_state = 10}, + [360] = {.lex_state = 85, .external_lex_state = 9}, + [361] = {.lex_state = 85, .external_lex_state = 9}, + [362] = {.lex_state = 226, .external_lex_state = 9}, + [363] = {.lex_state = 228, .external_lex_state = 8}, + [364] = {.lex_state = 231, .external_lex_state = 10}, + [365] = {.lex_state = 228, .external_lex_state = 8}, + [366] = {.lex_state = 228, .external_lex_state = 8}, + [367] = {.lex_state = 89, .external_lex_state = 9}, + [368] = {.lex_state = 228, .external_lex_state = 8}, + [369] = {.lex_state = 227, .external_lex_state = 8}, + [370] = {.lex_state = 228, .external_lex_state = 8}, + [371] = {.lex_state = 228, .external_lex_state = 8}, + [372] = {.lex_state = 89, .external_lex_state = 9}, + [373] = {.lex_state = 228, .external_lex_state = 8}, + [374] = {.lex_state = 228, .external_lex_state = 8}, + [375] = {.lex_state = 85, .external_lex_state = 8}, + [376] = {.lex_state = 227, .external_lex_state = 8}, + [377] = {.lex_state = 80, .external_lex_state = 8}, + [378] = {.lex_state = 85, .external_lex_state = 8}, + [379] = {.lex_state = 231, .external_lex_state = 10}, + [380] = {.lex_state = 80, .external_lex_state = 8}, + [381] = {.lex_state = 231, .external_lex_state = 10}, + [382] = {.lex_state = 89, .external_lex_state = 9}, + [383] = {.lex_state = 228, .external_lex_state = 8}, + [384] = {.lex_state = 89, .external_lex_state = 9}, + [385] = {.lex_state = 227, .external_lex_state = 8}, + [386] = {.lex_state = 80, .external_lex_state = 8}, + [387] = {.lex_state = 228, .external_lex_state = 8}, + [388] = {.lex_state = 227, .external_lex_state = 8}, + [389] = {.lex_state = 114, .external_lex_state = 12}, + [390] = {.lex_state = 229, .external_lex_state = 9}, + [391] = {.lex_state = 89, .external_lex_state = 8}, + [392] = {.lex_state = 226, .external_lex_state = 8}, + [393] = {.lex_state = 114, .external_lex_state = 14}, + [394] = {.lex_state = 114, .external_lex_state = 12}, + [395] = {.lex_state = 226, .external_lex_state = 8}, + [396] = {.lex_state = 229, .external_lex_state = 9}, + [397] = {.lex_state = 229, .external_lex_state = 9}, + [398] = {.lex_state = 89, .external_lex_state = 8}, + [399] = {.lex_state = 229, .external_lex_state = 9}, + [400] = {.lex_state = 114, .external_lex_state = 14}, + [401] = {.lex_state = 226, .external_lex_state = 8}, + [402] = {.lex_state = 229, .external_lex_state = 9}, + [403] = {.lex_state = 229, .external_lex_state = 9}, + [404] = {.lex_state = 229, .external_lex_state = 9}, + [405] = {.lex_state = 226, .external_lex_state = 8}, + [406] = {.lex_state = 228, .external_lex_state = 8}, + [407] = {.lex_state = 229, .external_lex_state = 9}, + [408] = {.lex_state = 226, .external_lex_state = 8}, + [409] = {.lex_state = 228, .external_lex_state = 8}, + [410] = {.lex_state = 228, .external_lex_state = 8}, + [411] = {.lex_state = 226, .external_lex_state = 8}, + [412] = {.lex_state = 228, .external_lex_state = 8}, + [413] = {.lex_state = 125, .external_lex_state = 2}, + [414] = {.lex_state = 229, .external_lex_state = 8}, + [415] = {.lex_state = 231, .external_lex_state = 2}, + [416] = {.lex_state = 125, .external_lex_state = 2}, + [417] = {.lex_state = 231, .external_lex_state = 2}, + [418] = {.lex_state = 125, .external_lex_state = 2}, + [419] = {.lex_state = 226, .external_lex_state = 8}, + [420] = {.lex_state = 125, .external_lex_state = 2}, + [421] = {.lex_state = 231, .external_lex_state = 2}, + [422] = {.lex_state = 231, .external_lex_state = 2}, + [423] = {.lex_state = 112, .external_lex_state = 4}, + [424] = {.lex_state = 125, .external_lex_state = 2}, + [425] = {.lex_state = 229, .external_lex_state = 8}, + [426] = {.lex_state = 229, .external_lex_state = 8}, + [427] = {.lex_state = 112, .external_lex_state = 4}, + [428] = {.lex_state = 229, .external_lex_state = 8}, + [429] = {.lex_state = 226, .external_lex_state = 8}, + [430] = {.lex_state = 231, .external_lex_state = 2}, + [431] = {.lex_state = 231, .external_lex_state = 2}, + [432] = {.lex_state = 231, .external_lex_state = 2}, + [433] = {.lex_state = 231, .external_lex_state = 2}, + [434] = {.lex_state = 231, .external_lex_state = 2}, + [435] = {.lex_state = 231, .external_lex_state = 2}, + [436] = {.lex_state = 22, .external_lex_state = 5}, + [437] = {.lex_state = 22, .external_lex_state = 5}, + [438] = {.lex_state = 22, .external_lex_state = 11}, + [439] = {.lex_state = 94, .external_lex_state = 9}, + [440] = {.lex_state = 22, .external_lex_state = 5}, + [441] = {.lex_state = 94, .external_lex_state = 9}, + [442] = {.lex_state = 94, .external_lex_state = 9}, + [443] = {.lex_state = 22, .external_lex_state = 11}, + [444] = {.lex_state = 22, .external_lex_state = 5}, + [445] = {.lex_state = 94, .external_lex_state = 9}, + [446] = {.lex_state = 22, .external_lex_state = 5}, + [447] = {.lex_state = 84, .external_lex_state = 3}, + [448] = {.lex_state = 116, .external_lex_state = 6}, + [449] = {.lex_state = 74, .external_lex_state = 15}, + [450] = {.lex_state = 74, .external_lex_state = 15}, + [451] = {.lex_state = 84, .external_lex_state = 3}, + [452] = {.lex_state = 74, .external_lex_state = 15}, + [453] = {.lex_state = 117, .external_lex_state = 6}, + [454] = {.lex_state = 84, .external_lex_state = 3}, + [455] = {.lex_state = 74, .external_lex_state = 15}, + [456] = {.lex_state = 74, .external_lex_state = 15}, + [457] = {.lex_state = 74, .external_lex_state = 15}, + [458] = {.lex_state = 22, .external_lex_state = 5}, + [459] = {.lex_state = 84, .external_lex_state = 3}, + [460] = {.lex_state = 84, .external_lex_state = 3}, + [461] = {.lex_state = 116, .external_lex_state = 6}, + [462] = {.lex_state = 22, .external_lex_state = 5}, + [463] = {.lex_state = 22, .external_lex_state = 5}, + [464] = {.lex_state = 84, .external_lex_state = 3}, + [465] = {.lex_state = 84, .external_lex_state = 3}, + [466] = {.lex_state = 22, .external_lex_state = 5}, + [467] = {.lex_state = 22, .external_lex_state = 5}, + [468] = {.lex_state = 22, .external_lex_state = 5}, + [469] = {.lex_state = 96, .external_lex_state = 9}, + [470] = {.lex_state = 96, .external_lex_state = 9}, + [471] = {.lex_state = 74, .external_lex_state = 15}, + [472] = {.lex_state = 74, .external_lex_state = 15}, + [473] = {.lex_state = 96, .external_lex_state = 9}, + [474] = {.lex_state = 22, .external_lex_state = 5}, + [475] = {.lex_state = 22, .external_lex_state = 5}, + [476] = {.lex_state = 22, .external_lex_state = 5}, + [477] = {.lex_state = 22, .external_lex_state = 5}, + [478] = {.lex_state = 90, .external_lex_state = 3}, + [479] = {.lex_state = 84, .external_lex_state = 3}, + [480] = {.lex_state = 84, .external_lex_state = 3}, + [481] = {.lex_state = 22, .external_lex_state = 5}, + [482] = {.lex_state = 116, .external_lex_state = 6}, + [483] = {.lex_state = 96, .external_lex_state = 9}, + [484] = {.lex_state = 22, .external_lex_state = 11}, + [485] = {.lex_state = 22, .external_lex_state = 5}, + [486] = {.lex_state = 22, .external_lex_state = 5}, + [487] = {.lex_state = 22, .external_lex_state = 5}, + [488] = {.lex_state = 22, .external_lex_state = 5}, + [489] = {.lex_state = 22, .external_lex_state = 5}, + [490] = {.lex_state = 22, .external_lex_state = 5}, + [491] = {.lex_state = 22, .external_lex_state = 5}, + [492] = {.lex_state = 22, .external_lex_state = 5}, + [493] = {.lex_state = 22, .external_lex_state = 5}, + [494] = {.lex_state = 116, .external_lex_state = 6}, + [495] = {.lex_state = 84, .external_lex_state = 3}, + [496] = {.lex_state = 22, .external_lex_state = 5}, + [497] = {.lex_state = 22, .external_lex_state = 5}, + [498] = {.lex_state = 84, .external_lex_state = 3}, + [499] = {.lex_state = 22, .external_lex_state = 5}, + [500] = {.lex_state = 22, .external_lex_state = 5}, + [501] = {.lex_state = 22, .external_lex_state = 5}, + [502] = {.lex_state = 22, .external_lex_state = 5}, + [503] = {.lex_state = 22, .external_lex_state = 5}, + [504] = {.lex_state = 22, .external_lex_state = 5}, + [505] = {.lex_state = 123, .external_lex_state = 16}, + [506] = {.lex_state = 123, .external_lex_state = 16}, + [507] = {.lex_state = 123, .external_lex_state = 16}, + [508] = {.lex_state = 124, .external_lex_state = 17}, + [509] = {.lex_state = 124, .external_lex_state = 17}, + [510] = {.lex_state = 123, .external_lex_state = 16}, + [511] = {.lex_state = 123, .external_lex_state = 16}, + [512] = {.lex_state = 124, .external_lex_state = 17}, + [513] = {.lex_state = 124, .external_lex_state = 17}, + [514] = {.lex_state = 123, .external_lex_state = 16}, + [515] = {.lex_state = 123, .external_lex_state = 16}, + [516] = {.lex_state = 124, .external_lex_state = 17}, + [517] = {.lex_state = 124, .external_lex_state = 17}, + [518] = {.lex_state = 123, .external_lex_state = 16}, + [519] = {.lex_state = 123, .external_lex_state = 16}, + [520] = {.lex_state = 124, .external_lex_state = 17}, + [521] = {.lex_state = 124, .external_lex_state = 17}, + [522] = {.lex_state = 123, .external_lex_state = 16}, + [523] = {.lex_state = 123, .external_lex_state = 16}, + [524] = {.lex_state = 124, .external_lex_state = 17}, + [525] = {.lex_state = 124, .external_lex_state = 17}, + [526] = {.lex_state = 123, .external_lex_state = 16}, + [527] = {.lex_state = 123, .external_lex_state = 16}, + [528] = {.lex_state = 124, .external_lex_state = 17}, + [529] = {.lex_state = 124, .external_lex_state = 17}, + [530] = {.lex_state = 123, .external_lex_state = 16}, + [531] = {.lex_state = 123, .external_lex_state = 16}, + [532] = {.lex_state = 80, .external_lex_state = 15}, + [533] = {.lex_state = 80, .external_lex_state = 15}, + [534] = {.lex_state = 80, .external_lex_state = 15}, + [535] = {.lex_state = 80, .external_lex_state = 15}, + [536] = {.lex_state = 90, .external_lex_state = 3}, + [537] = {.lex_state = 90, .external_lex_state = 3}, + [538] = {.lex_state = 90, .external_lex_state = 3}, + [539] = {.lex_state = 124, .external_lex_state = 17}, + [540] = {.lex_state = 124, .external_lex_state = 17}, + [541] = {.lex_state = 90, .external_lex_state = 3}, + [542] = {.lex_state = 94, .external_lex_state = 15}, + [543] = {.lex_state = 74, .external_lex_state = 15}, + [544] = {.lex_state = 74, .external_lex_state = 15}, + [545] = {.lex_state = 74, .external_lex_state = 15}, + [546] = {.lex_state = 74, .external_lex_state = 15}, + [547] = {.lex_state = 74, .external_lex_state = 15}, + [548] = {.lex_state = 74, .external_lex_state = 15}, + [549] = {.lex_state = 74, .external_lex_state = 15}, + [550] = {.lex_state = 74, .external_lex_state = 15}, + [551] = {.lex_state = 74, .external_lex_state = 15}, + [552] = {.lex_state = 74, .external_lex_state = 15}, + [553] = {.lex_state = 123, .external_lex_state = 16}, + [554] = {.lex_state = 74, .external_lex_state = 15}, + [555] = {.lex_state = 74, .external_lex_state = 15}, + [556] = {.lex_state = 74, .external_lex_state = 15}, + [557] = {.lex_state = 123, .external_lex_state = 16}, + [558] = {.lex_state = 74, .external_lex_state = 15}, + [559] = {.lex_state = 74, .external_lex_state = 15}, + [560] = {.lex_state = 74, .external_lex_state = 15}, + [561] = {.lex_state = 94, .external_lex_state = 15}, + [562] = {.lex_state = 74, .external_lex_state = 15}, + [563] = {.lex_state = 94, .external_lex_state = 15}, + [564] = {.lex_state = 123, .external_lex_state = 16}, + [565] = {.lex_state = 74, .external_lex_state = 15}, + [566] = {.lex_state = 94, .external_lex_state = 15}, + [567] = {.lex_state = 124, .external_lex_state = 17}, + [568] = {.lex_state = 124, .external_lex_state = 17}, + [569] = {.lex_state = 123, .external_lex_state = 16}, + [570] = {.lex_state = 74, .external_lex_state = 15}, + [571] = {.lex_state = 74, .external_lex_state = 15}, + [572] = {.lex_state = 74, .external_lex_state = 3}, + [573] = {.lex_state = 84, .external_lex_state = 3}, + [574] = {.lex_state = 84, .external_lex_state = 3}, + [575] = {.lex_state = 84, .external_lex_state = 3}, + [576] = {.lex_state = 84, .external_lex_state = 3}, + [577] = {.lex_state = 84, .external_lex_state = 3}, + [578] = {.lex_state = 84, .external_lex_state = 3}, + [579] = {.lex_state = 84, .external_lex_state = 3}, + [580] = {.lex_state = 84, .external_lex_state = 3}, + [581] = {.lex_state = 84, .external_lex_state = 3}, + [582] = {.lex_state = 84, .external_lex_state = 3}, + [583] = {.lex_state = 123, .external_lex_state = 16}, + [584] = {.lex_state = 84, .external_lex_state = 3}, + [585] = {.lex_state = 84, .external_lex_state = 3}, + [586] = {.lex_state = 84, .external_lex_state = 3}, + [587] = {.lex_state = 124, .external_lex_state = 17}, + [588] = {.lex_state = 74, .external_lex_state = 15}, + [589] = {.lex_state = 84, .external_lex_state = 3}, + [590] = {.lex_state = 84, .external_lex_state = 3}, + [591] = {.lex_state = 84, .external_lex_state = 3}, + [592] = {.lex_state = 74, .external_lex_state = 3}, + [593] = {.lex_state = 84, .external_lex_state = 3}, + [594] = {.lex_state = 74, .external_lex_state = 9}, + [595] = {.lex_state = 74, .external_lex_state = 3}, + [596] = {.lex_state = 84, .external_lex_state = 3}, + [597] = {.lex_state = 74, .external_lex_state = 3}, + [598] = {.lex_state = 84, .external_lex_state = 3}, + [599] = {.lex_state = 124, .external_lex_state = 17}, + [600] = {.lex_state = 123, .external_lex_state = 16}, + [601] = {.lex_state = 123, .external_lex_state = 16}, + [602] = {.lex_state = 84, .external_lex_state = 3}, + [603] = {.lex_state = 228, .external_lex_state = 3}, + [604] = {.lex_state = 124, .external_lex_state = 17}, + [605] = {.lex_state = 124, .external_lex_state = 17}, + [606] = {.lex_state = 123, .external_lex_state = 16}, + [607] = {.lex_state = 230, .external_lex_state = 9}, + [608] = {.lex_state = 74, .external_lex_state = 15}, + [609] = {.lex_state = 123, .external_lex_state = 16}, + [610] = {.lex_state = 124, .external_lex_state = 17}, + [611] = {.lex_state = 84, .external_lex_state = 3}, + [612] = {.lex_state = 74, .external_lex_state = 15}, + [613] = {.lex_state = 124, .external_lex_state = 17}, + [614] = {.lex_state = 74, .external_lex_state = 15}, + [615] = {.lex_state = 123, .external_lex_state = 16}, + [616] = {.lex_state = 74, .external_lex_state = 15}, + [617] = {.lex_state = 74, .external_lex_state = 15}, + [618] = {.lex_state = 84, .external_lex_state = 8}, + [619] = {.lex_state = 123, .external_lex_state = 16}, + [620] = {.lex_state = 124, .external_lex_state = 17}, + [621] = {.lex_state = 74, .external_lex_state = 15}, + [622] = {.lex_state = 124, .external_lex_state = 17}, + [623] = {.lex_state = 74, .external_lex_state = 15}, + [624] = {.lex_state = 22, .external_lex_state = 11}, + [625] = {.lex_state = 123, .external_lex_state = 16}, + [626] = {.lex_state = 84, .external_lex_state = 3}, + [627] = {.lex_state = 84, .external_lex_state = 3}, + [628] = {.lex_state = 84, .external_lex_state = 3}, + [629] = {.lex_state = 123, .external_lex_state = 16}, + [630] = {.lex_state = 116, .external_lex_state = 6}, + [631] = {.lex_state = 116, .external_lex_state = 6}, + [632] = {.lex_state = 116, .external_lex_state = 6}, + [633] = {.lex_state = 124, .external_lex_state = 17}, + [634] = {.lex_state = 116, .external_lex_state = 6}, + [635] = {.lex_state = 116, .external_lex_state = 6}, + [636] = {.lex_state = 124, .external_lex_state = 17}, + [637] = {.lex_state = 123, .external_lex_state = 16}, + [638] = {.lex_state = 123, .external_lex_state = 16}, + [639] = {.lex_state = 124, .external_lex_state = 17}, + [640] = {.lex_state = 124, .external_lex_state = 17}, + [641] = {.lex_state = 84, .external_lex_state = 3}, + [642] = {.lex_state = 84, .external_lex_state = 3}, + [643] = {.lex_state = 123, .external_lex_state = 16}, + [644] = {.lex_state = 84, .external_lex_state = 3}, + [645] = {.lex_state = 123, .external_lex_state = 16}, + [646] = {.lex_state = 124, .external_lex_state = 17}, + [647] = {.lex_state = 84, .external_lex_state = 3}, + [648] = {.lex_state = 124, .external_lex_state = 17}, + [649] = {.lex_state = 230, .external_lex_state = 9}, + [650] = {.lex_state = 123, .external_lex_state = 16}, + [651] = {.lex_state = 123, .external_lex_state = 16}, + [652] = {.lex_state = 117, .external_lex_state = 12}, + [653] = {.lex_state = 124, .external_lex_state = 17}, + [654] = {.lex_state = 124, .external_lex_state = 17}, + [655] = {.lex_state = 123, .external_lex_state = 16}, + [656] = {.lex_state = 123, .external_lex_state = 16}, + [657] = {.lex_state = 124, .external_lex_state = 17}, + [658] = {.lex_state = 124, .external_lex_state = 17}, + [659] = {.lex_state = 123, .external_lex_state = 16}, + [660] = {.lex_state = 123, .external_lex_state = 16}, + [661] = {.lex_state = 124, .external_lex_state = 17}, + [662] = {.lex_state = 124, .external_lex_state = 17}, + [663] = {.lex_state = 123, .external_lex_state = 16}, + [664] = {.lex_state = 123, .external_lex_state = 16}, + [665] = {.lex_state = 124, .external_lex_state = 17}, + [666] = {.lex_state = 124, .external_lex_state = 17}, + [667] = {.lex_state = 123, .external_lex_state = 16}, + [668] = {.lex_state = 123, .external_lex_state = 16}, + [669] = {.lex_state = 124, .external_lex_state = 17}, + [670] = {.lex_state = 124, .external_lex_state = 17}, + [671] = {.lex_state = 124, .external_lex_state = 17}, + [672] = {.lex_state = 123, .external_lex_state = 16}, + [673] = {.lex_state = 124, .external_lex_state = 17}, + [674] = {.lex_state = 124, .external_lex_state = 17}, + [675] = {.lex_state = 123, .external_lex_state = 16}, + [676] = {.lex_state = 123, .external_lex_state = 16}, + [677] = {.lex_state = 124, .external_lex_state = 17}, + [678] = {.lex_state = 124, .external_lex_state = 17}, + [679] = {.lex_state = 123, .external_lex_state = 16}, + [680] = {.lex_state = 123, .external_lex_state = 16}, + [681] = {.lex_state = 116, .external_lex_state = 6}, + [682] = {.lex_state = 116, .external_lex_state = 6}, + [683] = {.lex_state = 116, .external_lex_state = 6}, + [684] = {.lex_state = 124, .external_lex_state = 17}, + [685] = {.lex_state = 124, .external_lex_state = 17}, + [686] = {.lex_state = 116, .external_lex_state = 6}, + [687] = {.lex_state = 116, .external_lex_state = 6}, + [688] = {.lex_state = 116, .external_lex_state = 6}, + [689] = {.lex_state = 116, .external_lex_state = 6}, + [690] = {.lex_state = 116, .external_lex_state = 6}, + [691] = {.lex_state = 123, .external_lex_state = 16}, + [692] = {.lex_state = 123, .external_lex_state = 16}, + [693] = {.lex_state = 124, .external_lex_state = 17}, + [694] = {.lex_state = 124, .external_lex_state = 17}, + [695] = {.lex_state = 230, .external_lex_state = 9}, + [696] = {.lex_state = 123, .external_lex_state = 16}, + [697] = {.lex_state = 230, .external_lex_state = 9}, + [698] = {.lex_state = 123, .external_lex_state = 16}, + [699] = {.lex_state = 124, .external_lex_state = 17}, + [700] = {.lex_state = 22, .external_lex_state = 11}, + [701] = {.lex_state = 124, .external_lex_state = 17}, + [702] = {.lex_state = 123, .external_lex_state = 16}, + [703] = {.lex_state = 123, .external_lex_state = 16}, + [704] = {.lex_state = 124, .external_lex_state = 17}, + [705] = {.lex_state = 124, .external_lex_state = 17}, + [706] = {.lex_state = 123, .external_lex_state = 16}, + [707] = {.lex_state = 123, .external_lex_state = 16}, + [708] = {.lex_state = 124, .external_lex_state = 17}, + [709] = {.lex_state = 124, .external_lex_state = 17}, + [710] = {.lex_state = 123, .external_lex_state = 16}, + [711] = {.lex_state = 123, .external_lex_state = 16}, + [712] = {.lex_state = 124, .external_lex_state = 17}, + [713] = {.lex_state = 124, .external_lex_state = 17}, + [714] = {.lex_state = 123, .external_lex_state = 16}, + [715] = {.lex_state = 123, .external_lex_state = 16}, + [716] = {.lex_state = 124, .external_lex_state = 17}, + [717] = {.lex_state = 124, .external_lex_state = 17}, + [718] = {.lex_state = 123, .external_lex_state = 16}, + [719] = {.lex_state = 123, .external_lex_state = 16}, + [720] = {.lex_state = 124, .external_lex_state = 17}, + [721] = {.lex_state = 124, .external_lex_state = 17}, + [722] = {.lex_state = 123, .external_lex_state = 16}, + [723] = {.lex_state = 123, .external_lex_state = 16}, + [724] = {.lex_state = 124, .external_lex_state = 17}, + [725] = {.lex_state = 124, .external_lex_state = 17}, + [726] = {.lex_state = 116, .external_lex_state = 6}, + [727] = {.lex_state = 123, .external_lex_state = 16}, + [728] = {.lex_state = 116, .external_lex_state = 6}, + [729] = {.lex_state = 116, .external_lex_state = 6}, + [730] = {.lex_state = 116, .external_lex_state = 6}, + [731] = {.lex_state = 116, .external_lex_state = 6}, + [732] = {.lex_state = 123, .external_lex_state = 16}, + [733] = {.lex_state = 124, .external_lex_state = 17}, + [734] = {.lex_state = 124, .external_lex_state = 17}, + [735] = {.lex_state = 123, .external_lex_state = 16}, + [736] = {.lex_state = 123, .external_lex_state = 16}, + [737] = {.lex_state = 124, .external_lex_state = 17}, + [738] = {.lex_state = 124, .external_lex_state = 17}, + [739] = {.lex_state = 123, .external_lex_state = 16}, + [740] = {.lex_state = 123, .external_lex_state = 16}, + [741] = {.lex_state = 124, .external_lex_state = 17}, + [742] = {.lex_state = 124, .external_lex_state = 17}, + [743] = {.lex_state = 123, .external_lex_state = 16}, + [744] = {.lex_state = 123, .external_lex_state = 16}, + [745] = {.lex_state = 124, .external_lex_state = 17}, + [746] = {.lex_state = 124, .external_lex_state = 17}, + [747] = {.lex_state = 123, .external_lex_state = 16}, + [748] = {.lex_state = 123, .external_lex_state = 16}, + [749] = {.lex_state = 124, .external_lex_state = 17}, + [750] = {.lex_state = 124, .external_lex_state = 17}, + [751] = {.lex_state = 123, .external_lex_state = 16}, + [752] = {.lex_state = 123, .external_lex_state = 16}, + [753] = {.lex_state = 124, .external_lex_state = 17}, + [754] = {.lex_state = 124, .external_lex_state = 17}, + [755] = {.lex_state = 116, .external_lex_state = 6}, + [756] = {.lex_state = 116, .external_lex_state = 6}, + [757] = {.lex_state = 116, .external_lex_state = 6}, + [758] = {.lex_state = 116, .external_lex_state = 6}, + [759] = {.lex_state = 123, .external_lex_state = 16}, + [760] = {.lex_state = 123, .external_lex_state = 16}, + [761] = {.lex_state = 124, .external_lex_state = 17}, + [762] = {.lex_state = 124, .external_lex_state = 17}, + [763] = {.lex_state = 123, .external_lex_state = 16}, + [764] = {.lex_state = 123, .external_lex_state = 16}, + [765] = {.lex_state = 124, .external_lex_state = 17}, + [766] = {.lex_state = 118, .external_lex_state = 6}, + [767] = {.lex_state = 124, .external_lex_state = 17}, + [768] = {.lex_state = 123, .external_lex_state = 16}, + [769] = {.lex_state = 116, .external_lex_state = 6}, + [770] = {.lex_state = 116, .external_lex_state = 6}, + [771] = {.lex_state = 116, .external_lex_state = 6}, + [772] = {.lex_state = 116, .external_lex_state = 6}, + [773] = {.lex_state = 123, .external_lex_state = 16}, + [774] = {.lex_state = 124, .external_lex_state = 17}, + [775] = {.lex_state = 124, .external_lex_state = 17}, + [776] = {.lex_state = 123, .external_lex_state = 16}, + [777] = {.lex_state = 123, .external_lex_state = 16}, + [778] = {.lex_state = 124, .external_lex_state = 17}, + [779] = {.lex_state = 124, .external_lex_state = 17}, + [780] = {.lex_state = 116, .external_lex_state = 6}, + [781] = {.lex_state = 116, .external_lex_state = 6}, + [782] = {.lex_state = 123, .external_lex_state = 16}, + [783] = {.lex_state = 123, .external_lex_state = 16}, + [784] = {.lex_state = 124, .external_lex_state = 17}, + [785] = {.lex_state = 124, .external_lex_state = 17}, + [786] = {.lex_state = 123, .external_lex_state = 16}, + [787] = {.lex_state = 123, .external_lex_state = 16}, + [788] = {.lex_state = 124, .external_lex_state = 17}, + [789] = {.lex_state = 124, .external_lex_state = 17}, + [790] = {.lex_state = 124, .external_lex_state = 17}, + [791] = {.lex_state = 123, .external_lex_state = 16}, + [792] = {.lex_state = 124, .external_lex_state = 17}, + [793] = {.lex_state = 123, .external_lex_state = 16}, + [794] = {.lex_state = 124, .external_lex_state = 17}, + [795] = {.lex_state = 124, .external_lex_state = 17}, + [796] = {.lex_state = 123, .external_lex_state = 16}, + [797] = {.lex_state = 123, .external_lex_state = 16}, + [798] = {.lex_state = 124, .external_lex_state = 17}, + [799] = {.lex_state = 123, .external_lex_state = 16}, + [800] = {.lex_state = 123, .external_lex_state = 16}, + [801] = {.lex_state = 22, .external_lex_state = 11}, + [802] = {.lex_state = 124, .external_lex_state = 17}, + [803] = {.lex_state = 124, .external_lex_state = 17}, + [804] = {.lex_state = 123, .external_lex_state = 16}, + [805] = {.lex_state = 123, .external_lex_state = 16}, + [806] = {.lex_state = 124, .external_lex_state = 17}, + [807] = {.lex_state = 84, .external_lex_state = 8}, + [808] = {.lex_state = 124, .external_lex_state = 17}, + [809] = {.lex_state = 123, .external_lex_state = 16}, + [810] = {.lex_state = 22, .external_lex_state = 11}, + [811] = {.lex_state = 123, .external_lex_state = 16}, + [812] = {.lex_state = 124, .external_lex_state = 17}, + [813] = {.lex_state = 124, .external_lex_state = 17}, + [814] = {.lex_state = 123, .external_lex_state = 16}, + [815] = {.lex_state = 123, .external_lex_state = 16}, + [816] = {.lex_state = 124, .external_lex_state = 17}, + [817] = {.lex_state = 74, .external_lex_state = 9}, + [818] = {.lex_state = 74, .external_lex_state = 3}, + [819] = {.lex_state = 74, .external_lex_state = 3}, + [820] = {.lex_state = 124, .external_lex_state = 17}, + [821] = {.lex_state = 123, .external_lex_state = 16}, + [822] = {.lex_state = 123, .external_lex_state = 16}, + [823] = {.lex_state = 124, .external_lex_state = 17}, + [824] = {.lex_state = 124, .external_lex_state = 17}, + [825] = {.lex_state = 123, .external_lex_state = 16}, + [826] = {.lex_state = 123, .external_lex_state = 16}, + [827] = {.lex_state = 124, .external_lex_state = 17}, + [828] = {.lex_state = 124, .external_lex_state = 17}, + [829] = {.lex_state = 123, .external_lex_state = 16}, + [830] = {.lex_state = 123, .external_lex_state = 16}, + [831] = {.lex_state = 80, .external_lex_state = 15}, + [832] = {.lex_state = 80, .external_lex_state = 15}, + [833] = {.lex_state = 124, .external_lex_state = 17}, + [834] = {.lex_state = 124, .external_lex_state = 17}, + [835] = {.lex_state = 123, .external_lex_state = 16}, + [836] = {.lex_state = 123, .external_lex_state = 16}, + [837] = {.lex_state = 74, .external_lex_state = 9}, + [838] = {.lex_state = 124, .external_lex_state = 17}, + [839] = {.lex_state = 124, .external_lex_state = 17}, + [840] = {.lex_state = 123, .external_lex_state = 16}, + [841] = {.lex_state = 123, .external_lex_state = 16}, + [842] = {.lex_state = 84, .external_lex_state = 8}, + [843] = {.lex_state = 124, .external_lex_state = 17}, + [844] = {.lex_state = 124, .external_lex_state = 17}, + [845] = {.lex_state = 123, .external_lex_state = 16}, + [846] = {.lex_state = 123, .external_lex_state = 16}, + [847] = {.lex_state = 94, .external_lex_state = 15}, + [848] = {.lex_state = 94, .external_lex_state = 15}, + [849] = {.lex_state = 124, .external_lex_state = 17}, + [850] = {.lex_state = 124, .external_lex_state = 17}, + [851] = {.lex_state = 123, .external_lex_state = 16}, + [852] = {.lex_state = 116, .external_lex_state = 6}, + [853] = {.lex_state = 123, .external_lex_state = 16}, + [854] = {.lex_state = 124, .external_lex_state = 17}, + [855] = {.lex_state = 124, .external_lex_state = 17}, + [856] = {.lex_state = 22, .external_lex_state = 11}, + [857] = {.lex_state = 22, .external_lex_state = 11}, + [858] = {.lex_state = 123, .external_lex_state = 16}, + [859] = {.lex_state = 123, .external_lex_state = 16}, + [860] = {.lex_state = 124, .external_lex_state = 17}, + [861] = {.lex_state = 22, .external_lex_state = 11}, + [862] = {.lex_state = 124, .external_lex_state = 17}, + [863] = {.lex_state = 123, .external_lex_state = 16}, + [864] = {.lex_state = 124, .external_lex_state = 17}, + [865] = {.lex_state = 124, .external_lex_state = 17}, + [866] = {.lex_state = 123, .external_lex_state = 16}, + [867] = {.lex_state = 123, .external_lex_state = 16}, + [868] = {.lex_state = 124, .external_lex_state = 17}, + [869] = {.lex_state = 124, .external_lex_state = 17}, + [870] = {.lex_state = 123, .external_lex_state = 16}, + [871] = {.lex_state = 123, .external_lex_state = 16}, + [872] = {.lex_state = 124, .external_lex_state = 17}, + [873] = {.lex_state = 124, .external_lex_state = 17}, + [874] = {.lex_state = 123, .external_lex_state = 16}, + [875] = {.lex_state = 119, .external_lex_state = 7}, + [876] = {.lex_state = 123, .external_lex_state = 16}, + [877] = {.lex_state = 124, .external_lex_state = 17}, + [878] = {.lex_state = 22, .external_lex_state = 11}, + [879] = {.lex_state = 124, .external_lex_state = 17}, + [880] = {.lex_state = 230, .external_lex_state = 9}, + [881] = {.lex_state = 123, .external_lex_state = 16}, + [882] = {.lex_state = 230, .external_lex_state = 9}, + [883] = {.lex_state = 123, .external_lex_state = 16}, + [884] = {.lex_state = 124, .external_lex_state = 17}, + [885] = {.lex_state = 90, .external_lex_state = 3}, + [886] = {.lex_state = 90, .external_lex_state = 3}, + [887] = {.lex_state = 124, .external_lex_state = 17}, + [888] = {.lex_state = 123, .external_lex_state = 16}, + [889] = {.lex_state = 123, .external_lex_state = 16}, + [890] = {.lex_state = 124, .external_lex_state = 17}, + [891] = {.lex_state = 124, .external_lex_state = 17}, + [892] = {.lex_state = 123, .external_lex_state = 16}, + [893] = {.lex_state = 123, .external_lex_state = 16}, + [894] = {.lex_state = 84, .external_lex_state = 8}, + [895] = {.lex_state = 124, .external_lex_state = 17}, + [896] = {.lex_state = 124, .external_lex_state = 17}, + [897] = {.lex_state = 123, .external_lex_state = 16}, + [898] = {.lex_state = 123, .external_lex_state = 16}, + [899] = {.lex_state = 123, .external_lex_state = 16}, + [900] = {.lex_state = 123, .external_lex_state = 16}, + [901] = {.lex_state = 22, .external_lex_state = 11}, + [902] = {.lex_state = 22, .external_lex_state = 11}, + [903] = {.lex_state = 22, .external_lex_state = 11}, + [904] = {.lex_state = 90, .external_lex_state = 3}, + [905] = {.lex_state = 90, .external_lex_state = 3}, + [906] = {.lex_state = 124, .external_lex_state = 17}, + [907] = {.lex_state = 124, .external_lex_state = 17}, + [908] = {.lex_state = 124, .external_lex_state = 17}, + [909] = {.lex_state = 123, .external_lex_state = 16}, + [910] = {.lex_state = 123, .external_lex_state = 16}, + [911] = {.lex_state = 124, .external_lex_state = 17}, + [912] = {.lex_state = 124, .external_lex_state = 17}, + [913] = {.lex_state = 80, .external_lex_state = 15}, + [914] = {.lex_state = 80, .external_lex_state = 15}, + [915] = {.lex_state = 124, .external_lex_state = 17}, + [916] = {.lex_state = 22, .external_lex_state = 11}, + [917] = {.lex_state = 22, .external_lex_state = 11}, + [918] = {.lex_state = 22, .external_lex_state = 11}, + [919] = {.lex_state = 228, .external_lex_state = 3}, + [920] = {.lex_state = 230, .external_lex_state = 9}, + [921] = {.lex_state = 90, .external_lex_state = 3}, + [922] = {.lex_state = 123, .external_lex_state = 16}, + [923] = {.lex_state = 123, .external_lex_state = 16}, + [924] = {.lex_state = 90, .external_lex_state = 3}, + [925] = {.lex_state = 117, .external_lex_state = 12}, + [926] = {.lex_state = 230, .external_lex_state = 9}, + [927] = {.lex_state = 90, .external_lex_state = 3}, + [928] = {.lex_state = 124, .external_lex_state = 16}, + [929] = {.lex_state = 22, .external_lex_state = 11}, + [930] = {.lex_state = 86, .external_lex_state = 18}, + [931] = {.lex_state = 22, .external_lex_state = 11}, + [932] = {.lex_state = 90, .external_lex_state = 3}, + [933] = {.lex_state = 90, .external_lex_state = 3}, + [934] = {.lex_state = 90, .external_lex_state = 3}, + [935] = {.lex_state = 90, .external_lex_state = 3}, + [936] = {.lex_state = 86, .external_lex_state = 18}, + [937] = {.lex_state = 22, .external_lex_state = 11}, + [938] = {.lex_state = 22, .external_lex_state = 11}, + [939] = {.lex_state = 90, .external_lex_state = 3}, + [940] = {.lex_state = 22, .external_lex_state = 11}, + [941] = {.lex_state = 22, .external_lex_state = 11}, + [942] = {.lex_state = 228, .external_lex_state = 3}, + [943] = {.lex_state = 90, .external_lex_state = 3}, + [944] = {.lex_state = 90, .external_lex_state = 3}, + [945] = {.lex_state = 90, .external_lex_state = 3}, + [946] = {.lex_state = 80, .external_lex_state = 15}, + [947] = {.lex_state = 228, .external_lex_state = 3}, + [948] = {.lex_state = 228, .external_lex_state = 3}, + [949] = {.lex_state = 90, .external_lex_state = 3}, + [950] = {.lex_state = 90, .external_lex_state = 3}, + [951] = {.lex_state = 90, .external_lex_state = 3}, + [952] = {.lex_state = 86, .external_lex_state = 18}, + [953] = {.lex_state = 80, .external_lex_state = 3}, + [954] = {.lex_state = 90, .external_lex_state = 3}, + [955] = {.lex_state = 80, .external_lex_state = 9}, + [956] = {.lex_state = 116, .external_lex_state = 12}, + [957] = {.lex_state = 230, .external_lex_state = 9}, + [958] = {.lex_state = 230, .external_lex_state = 9}, + [959] = {.lex_state = 80, .external_lex_state = 3}, + [960] = {.lex_state = 90, .external_lex_state = 3}, + [961] = {.lex_state = 226, .external_lex_state = 15}, + [962] = {.lex_state = 226, .external_lex_state = 15}, + [963] = {.lex_state = 80, .external_lex_state = 3}, + [964] = {.lex_state = 90, .external_lex_state = 3}, + [965] = {.lex_state = 80, .external_lex_state = 15}, + [966] = {.lex_state = 90, .external_lex_state = 3}, + [967] = {.lex_state = 80, .external_lex_state = 15}, + [968] = {.lex_state = 80, .external_lex_state = 15}, + [969] = {.lex_state = 80, .external_lex_state = 15}, + [970] = {.lex_state = 228, .external_lex_state = 3}, + [971] = {.lex_state = 80, .external_lex_state = 15}, + [972] = {.lex_state = 90, .external_lex_state = 8}, + [973] = {.lex_state = 228, .external_lex_state = 3}, + [974] = {.lex_state = 228, .external_lex_state = 3}, + [975] = {.lex_state = 228, .external_lex_state = 3}, + [976] = {.lex_state = 80, .external_lex_state = 15}, + [977] = {.lex_state = 90, .external_lex_state = 3}, + [978] = {.lex_state = 80, .external_lex_state = 15}, + [979] = {.lex_state = 90, .external_lex_state = 3}, + [980] = {.lex_state = 90, .external_lex_state = 3}, + [981] = {.lex_state = 90, .external_lex_state = 8}, + [982] = {.lex_state = 118, .external_lex_state = 6}, + [983] = {.lex_state = 90, .external_lex_state = 3}, + [984] = {.lex_state = 94, .external_lex_state = 15}, + [985] = {.lex_state = 94, .external_lex_state = 15}, + [986] = {.lex_state = 94, .external_lex_state = 15}, + [987] = {.lex_state = 94, .external_lex_state = 15}, + [988] = {.lex_state = 94, .external_lex_state = 15}, + [989] = {.lex_state = 80, .external_lex_state = 9}, + [990] = {.lex_state = 80, .external_lex_state = 3}, + [991] = {.lex_state = 80, .external_lex_state = 3}, + [992] = {.lex_state = 94, .external_lex_state = 15}, + [993] = {.lex_state = 94, .external_lex_state = 15}, + [994] = {.lex_state = 22, .external_lex_state = 11}, + [995] = {.lex_state = 94, .external_lex_state = 15}, + [996] = {.lex_state = 94, .external_lex_state = 15}, + [997] = {.lex_state = 94, .external_lex_state = 15}, + [998] = {.lex_state = 116, .external_lex_state = 12}, + [999] = {.lex_state = 80, .external_lex_state = 3}, + [1000] = {.lex_state = 94, .external_lex_state = 15}, + [1001] = {.lex_state = 94, .external_lex_state = 15}, + [1002] = {.lex_state = 94, .external_lex_state = 15}, + [1003] = {.lex_state = 90, .external_lex_state = 3}, + [1004] = {.lex_state = 80, .external_lex_state = 15}, + [1005] = {.lex_state = 80, .external_lex_state = 15}, + [1006] = {.lex_state = 90, .external_lex_state = 3}, + [1007] = {.lex_state = 94, .external_lex_state = 15}, + [1008] = {.lex_state = 94, .external_lex_state = 15}, + [1009] = {.lex_state = 228, .external_lex_state = 3}, + [1010] = {.lex_state = 94, .external_lex_state = 15}, + [1011] = {.lex_state = 90, .external_lex_state = 3}, + [1012] = {.lex_state = 96, .external_lex_state = 15}, + [1013] = {.lex_state = 90, .external_lex_state = 8}, + [1014] = {.lex_state = 90, .external_lex_state = 3}, + [1015] = {.lex_state = 90, .external_lex_state = 3}, + [1016] = {.lex_state = 94, .external_lex_state = 15}, + [1017] = {.lex_state = 80, .external_lex_state = 15}, + [1018] = {.lex_state = 96, .external_lex_state = 15}, + [1019] = {.lex_state = 124, .external_lex_state = 16}, + [1020] = {.lex_state = 124, .external_lex_state = 16}, + [1021] = {.lex_state = 124, .external_lex_state = 16}, + [1022] = {.lex_state = 124, .external_lex_state = 16}, + [1023] = {.lex_state = 94, .external_lex_state = 15}, + [1024] = {.lex_state = 226, .external_lex_state = 15}, + [1025] = {.lex_state = 226, .external_lex_state = 15}, + [1026] = {.lex_state = 90, .external_lex_state = 3}, + [1027] = {.lex_state = 90, .external_lex_state = 3}, + [1028] = {.lex_state = 94, .external_lex_state = 15}, + [1029] = {.lex_state = 124, .external_lex_state = 16}, + [1030] = {.lex_state = 124, .external_lex_state = 16}, + [1031] = {.lex_state = 94, .external_lex_state = 15}, + [1032] = {.lex_state = 84, .external_lex_state = 8}, + [1033] = {.lex_state = 124, .external_lex_state = 16}, + [1034] = {.lex_state = 124, .external_lex_state = 16}, + [1035] = {.lex_state = 124, .external_lex_state = 16}, + [1036] = {.lex_state = 124, .external_lex_state = 16}, + [1037] = {.lex_state = 124, .external_lex_state = 16}, + [1038] = {.lex_state = 124, .external_lex_state = 16}, + [1039] = {.lex_state = 124, .external_lex_state = 16}, + [1040] = {.lex_state = 124, .external_lex_state = 16}, + [1041] = {.lex_state = 80, .external_lex_state = 15}, + [1042] = {.lex_state = 124, .external_lex_state = 16}, + [1043] = {.lex_state = 124, .external_lex_state = 16}, + [1044] = {.lex_state = 124, .external_lex_state = 16}, + [1045] = {.lex_state = 124, .external_lex_state = 16}, + [1046] = {.lex_state = 124, .external_lex_state = 16}, + [1047] = {.lex_state = 124, .external_lex_state = 16}, + [1048] = {.lex_state = 124, .external_lex_state = 16}, + [1049] = {.lex_state = 74, .external_lex_state = 3}, + [1050] = {.lex_state = 124, .external_lex_state = 16}, + [1051] = {.lex_state = 124, .external_lex_state = 16}, + [1052] = {.lex_state = 90, .external_lex_state = 8}, + [1053] = {.lex_state = 74, .external_lex_state = 3}, + [1054] = {.lex_state = 230, .external_lex_state = 9}, + [1055] = {.lex_state = 124, .external_lex_state = 16}, + [1056] = {.lex_state = 230, .external_lex_state = 9}, + [1057] = {.lex_state = 74, .external_lex_state = 3}, + [1058] = {.lex_state = 74, .external_lex_state = 3}, + [1059] = {.lex_state = 74, .external_lex_state = 3}, + [1060] = {.lex_state = 74, .external_lex_state = 3}, + [1061] = {.lex_state = 124, .external_lex_state = 16}, + [1062] = {.lex_state = 124, .external_lex_state = 16}, + [1063] = {.lex_state = 124, .external_lex_state = 16}, + [1064] = {.lex_state = 124, .external_lex_state = 16}, + [1065] = {.lex_state = 124, .external_lex_state = 16}, + [1066] = {.lex_state = 124, .external_lex_state = 16}, + [1067] = {.lex_state = 74, .external_lex_state = 3}, + [1068] = {.lex_state = 124, .external_lex_state = 16}, + [1069] = {.lex_state = 124, .external_lex_state = 16}, + [1070] = {.lex_state = 124, .external_lex_state = 16}, + [1071] = {.lex_state = 124, .external_lex_state = 16}, + [1072] = {.lex_state = 124, .external_lex_state = 16}, + [1073] = {.lex_state = 124, .external_lex_state = 16}, + [1074] = {.lex_state = 124, .external_lex_state = 16}, + [1075] = {.lex_state = 124, .external_lex_state = 16}, + [1076] = {.lex_state = 124, .external_lex_state = 16}, + [1077] = {.lex_state = 124, .external_lex_state = 16}, + [1078] = {.lex_state = 124, .external_lex_state = 16}, + [1079] = {.lex_state = 124, .external_lex_state = 16}, + [1080] = {.lex_state = 124, .external_lex_state = 16}, + [1081] = {.lex_state = 124, .external_lex_state = 16}, + [1082] = {.lex_state = 74, .external_lex_state = 3}, + [1083] = {.lex_state = 124, .external_lex_state = 16}, + [1084] = {.lex_state = 124, .external_lex_state = 16}, + [1085] = {.lex_state = 74, .external_lex_state = 3}, + [1086] = {.lex_state = 74, .external_lex_state = 3}, + [1087] = {.lex_state = 74, .external_lex_state = 3}, + [1088] = {.lex_state = 74, .external_lex_state = 3}, + [1089] = {.lex_state = 74, .external_lex_state = 3}, + [1090] = {.lex_state = 228, .external_lex_state = 3}, + [1091] = {.lex_state = 118, .external_lex_state = 12}, + [1092] = {.lex_state = 124, .external_lex_state = 16}, + [1093] = {.lex_state = 96, .external_lex_state = 15}, + [1094] = {.lex_state = 94, .external_lex_state = 15}, + [1095] = {.lex_state = 80, .external_lex_state = 15}, + [1096] = {.lex_state = 74, .external_lex_state = 3}, + [1097] = {.lex_state = 119, .external_lex_state = 7}, + [1098] = {.lex_state = 74, .external_lex_state = 3}, + [1099] = {.lex_state = 74, .external_lex_state = 3}, + [1100] = {.lex_state = 119, .external_lex_state = 7}, + [1101] = {.lex_state = 80, .external_lex_state = 15}, + [1102] = {.lex_state = 80, .external_lex_state = 15}, + [1103] = {.lex_state = 124, .external_lex_state = 16}, + [1104] = {.lex_state = 124, .external_lex_state = 16}, + [1105] = {.lex_state = 124, .external_lex_state = 16}, + [1106] = {.lex_state = 124, .external_lex_state = 16}, + [1107] = {.lex_state = 74, .external_lex_state = 3}, + [1108] = {.lex_state = 119, .external_lex_state = 14}, + [1109] = {.lex_state = 124, .external_lex_state = 16}, + [1110] = {.lex_state = 94, .external_lex_state = 9}, + [1111] = {.lex_state = 124, .external_lex_state = 16}, + [1112] = {.lex_state = 124, .external_lex_state = 16}, + [1113] = {.lex_state = 124, .external_lex_state = 16}, + [1114] = {.lex_state = 124, .external_lex_state = 16}, + [1115] = {.lex_state = 80, .external_lex_state = 15}, + [1116] = {.lex_state = 74, .external_lex_state = 3}, + [1117] = {.lex_state = 80, .external_lex_state = 15}, + [1118] = {.lex_state = 228, .external_lex_state = 3}, + [1119] = {.lex_state = 119, .external_lex_state = 7}, + [1120] = {.lex_state = 80, .external_lex_state = 15}, + [1121] = {.lex_state = 80, .external_lex_state = 15}, + [1122] = {.lex_state = 74, .external_lex_state = 3}, + [1123] = {.lex_state = 74, .external_lex_state = 3}, + [1124] = {.lex_state = 80, .external_lex_state = 15}, + [1125] = {.lex_state = 228, .external_lex_state = 3}, + [1126] = {.lex_state = 124, .external_lex_state = 16}, + [1127] = {.lex_state = 80, .external_lex_state = 15}, + [1128] = {.lex_state = 124, .external_lex_state = 16}, + [1129] = {.lex_state = 80, .external_lex_state = 15}, + [1130] = {.lex_state = 230, .external_lex_state = 9}, + [1131] = {.lex_state = 80, .external_lex_state = 15}, + [1132] = {.lex_state = 80, .external_lex_state = 15}, + [1133] = {.lex_state = 124, .external_lex_state = 16}, + [1134] = {.lex_state = 80, .external_lex_state = 15}, + [1135] = {.lex_state = 80, .external_lex_state = 15}, + [1136] = {.lex_state = 80, .external_lex_state = 15}, + [1137] = {.lex_state = 80, .external_lex_state = 15}, + [1138] = {.lex_state = 124, .external_lex_state = 16}, + [1139] = {.lex_state = 96, .external_lex_state = 15}, + [1140] = {.lex_state = 124, .external_lex_state = 16}, + [1141] = {.lex_state = 94, .external_lex_state = 15}, + [1142] = {.lex_state = 74, .external_lex_state = 3}, + [1143] = {.lex_state = 94, .external_lex_state = 15}, + [1144] = {.lex_state = 94, .external_lex_state = 15}, + [1145] = {.lex_state = 94, .external_lex_state = 15}, + [1146] = {.lex_state = 94, .external_lex_state = 15}, + [1147] = {.lex_state = 74, .external_lex_state = 8}, + [1148] = {.lex_state = 94, .external_lex_state = 15}, + [1149] = {.lex_state = 94, .external_lex_state = 15}, + [1150] = {.lex_state = 74, .external_lex_state = 3}, + [1151] = {.lex_state = 74, .external_lex_state = 3}, + [1152] = {.lex_state = 124, .external_lex_state = 16}, + [1153] = {.lex_state = 124, .external_lex_state = 16}, + [1154] = {.lex_state = 74, .external_lex_state = 3}, + [1155] = {.lex_state = 74, .external_lex_state = 3}, + [1156] = {.lex_state = 74, .external_lex_state = 3}, + [1157] = {.lex_state = 226, .external_lex_state = 15}, + [1158] = {.lex_state = 74, .external_lex_state = 9}, + [1159] = {.lex_state = 230, .external_lex_state = 9}, + [1160] = {.lex_state = 226, .external_lex_state = 15}, + [1161] = {.lex_state = 74, .external_lex_state = 3}, + [1162] = {.lex_state = 116, .external_lex_state = 12}, + [1163] = {.lex_state = 74, .external_lex_state = 3}, + [1164] = {.lex_state = 226, .external_lex_state = 15}, + [1165] = {.lex_state = 226, .external_lex_state = 15}, + [1166] = {.lex_state = 228, .external_lex_state = 3}, + [1167] = {.lex_state = 124, .external_lex_state = 16}, + [1168] = {.lex_state = 124, .external_lex_state = 16}, + [1169] = {.lex_state = 228, .external_lex_state = 3}, + [1170] = {.lex_state = 124, .external_lex_state = 16}, + [1171] = {.lex_state = 124, .external_lex_state = 16}, + [1172] = {.lex_state = 124, .external_lex_state = 16}, + [1173] = {.lex_state = 226, .external_lex_state = 15}, + [1174] = {.lex_state = 124, .external_lex_state = 16}, + [1175] = {.lex_state = 124, .external_lex_state = 16}, + [1176] = {.lex_state = 124, .external_lex_state = 16}, + [1177] = {.lex_state = 124, .external_lex_state = 16}, + [1178] = {.lex_state = 124, .external_lex_state = 16}, + [1179] = {.lex_state = 124, .external_lex_state = 16}, + [1180] = {.lex_state = 124, .external_lex_state = 16}, + [1181] = {.lex_state = 119, .external_lex_state = 7}, + [1182] = {.lex_state = 124, .external_lex_state = 16}, + [1183] = {.lex_state = 124, .external_lex_state = 16}, + [1184] = {.lex_state = 124, .external_lex_state = 16}, + [1185] = {.lex_state = 124, .external_lex_state = 16}, + [1186] = {.lex_state = 124, .external_lex_state = 16}, + [1187] = {.lex_state = 124, .external_lex_state = 16}, + [1188] = {.lex_state = 124, .external_lex_state = 16}, + [1189] = {.lex_state = 124, .external_lex_state = 16}, + [1190] = {.lex_state = 119, .external_lex_state = 14}, + [1191] = {.lex_state = 124, .external_lex_state = 16}, + [1192] = {.lex_state = 124, .external_lex_state = 16}, + [1193] = {.lex_state = 226, .external_lex_state = 15}, + [1194] = {.lex_state = 226, .external_lex_state = 15}, + [1195] = {.lex_state = 84, .external_lex_state = 8}, + [1196] = {.lex_state = 124, .external_lex_state = 16}, + [1197] = {.lex_state = 124, .external_lex_state = 16}, + [1198] = {.lex_state = 124, .external_lex_state = 16}, + [1199] = {.lex_state = 124, .external_lex_state = 16}, + [1200] = {.lex_state = 124, .external_lex_state = 16}, + [1201] = {.lex_state = 226, .external_lex_state = 15}, + [1202] = {.lex_state = 124, .external_lex_state = 16}, + [1203] = {.lex_state = 124, .external_lex_state = 16}, + [1204] = {.lex_state = 124, .external_lex_state = 16}, + [1205] = {.lex_state = 124, .external_lex_state = 16}, + [1206] = {.lex_state = 124, .external_lex_state = 16}, + [1207] = {.lex_state = 124, .external_lex_state = 16}, + [1208] = {.lex_state = 124, .external_lex_state = 16}, + [1209] = {.lex_state = 124, .external_lex_state = 16}, + [1210] = {.lex_state = 124, .external_lex_state = 16}, + [1211] = {.lex_state = 124, .external_lex_state = 16}, + [1212] = {.lex_state = 124, .external_lex_state = 16}, + [1213] = {.lex_state = 124, .external_lex_state = 16}, + [1214] = {.lex_state = 94, .external_lex_state = 9}, + [1215] = {.lex_state = 124, .external_lex_state = 16}, + [1216] = {.lex_state = 124, .external_lex_state = 16}, + [1217] = {.lex_state = 228, .external_lex_state = 3}, + [1218] = {.lex_state = 124, .external_lex_state = 16}, + [1219] = {.lex_state = 124, .external_lex_state = 16}, + [1220] = {.lex_state = 124, .external_lex_state = 16}, + [1221] = {.lex_state = 124, .external_lex_state = 16}, + [1222] = {.lex_state = 228, .external_lex_state = 3}, + [1223] = {.lex_state = 124, .external_lex_state = 16}, + [1224] = {.lex_state = 124, .external_lex_state = 16}, + [1225] = {.lex_state = 124, .external_lex_state = 16}, + [1226] = {.lex_state = 124, .external_lex_state = 16}, + [1227] = {.lex_state = 124, .external_lex_state = 16}, + [1228] = {.lex_state = 124, .external_lex_state = 16}, + [1229] = {.lex_state = 117, .external_lex_state = 12}, + [1230] = {.lex_state = 124, .external_lex_state = 16}, + [1231] = {.lex_state = 124, .external_lex_state = 16}, + [1232] = {.lex_state = 124, .external_lex_state = 16}, + [1233] = {.lex_state = 124, .external_lex_state = 16}, + [1234] = {.lex_state = 124, .external_lex_state = 16}, + [1235] = {.lex_state = 124, .external_lex_state = 16}, + [1236] = {.lex_state = 124, .external_lex_state = 16}, + [1237] = {.lex_state = 124, .external_lex_state = 16}, + [1238] = {.lex_state = 124, .external_lex_state = 16}, + [1239] = {.lex_state = 124, .external_lex_state = 16}, + [1240] = {.lex_state = 124, .external_lex_state = 16}, + [1241] = {.lex_state = 124, .external_lex_state = 16}, + [1242] = {.lex_state = 124, .external_lex_state = 16}, + [1243] = {.lex_state = 124, .external_lex_state = 16}, + [1244] = {.lex_state = 124, .external_lex_state = 16}, + [1245] = {.lex_state = 124, .external_lex_state = 16}, + [1246] = {.lex_state = 124, .external_lex_state = 16}, + [1247] = {.lex_state = 124, .external_lex_state = 16}, + [1248] = {.lex_state = 124, .external_lex_state = 16}, + [1249] = {.lex_state = 124, .external_lex_state = 16}, + [1250] = {.lex_state = 124, .external_lex_state = 16}, + [1251] = {.lex_state = 124, .external_lex_state = 16}, + [1252] = {.lex_state = 124, .external_lex_state = 16}, + [1253] = {.lex_state = 124, .external_lex_state = 16}, + [1254] = {.lex_state = 124, .external_lex_state = 16}, + [1255] = {.lex_state = 74, .external_lex_state = 9}, + [1256] = {.lex_state = 230, .external_lex_state = 9}, + [1257] = {.lex_state = 124, .external_lex_state = 16}, + [1258] = {.lex_state = 84, .external_lex_state = 8}, + [1259] = {.lex_state = 124, .external_lex_state = 16}, + [1260] = {.lex_state = 22, .external_lex_state = 11}, + [1261] = {.lex_state = 124, .external_lex_state = 16}, + [1262] = {.lex_state = 124, .external_lex_state = 16}, + [1263] = {.lex_state = 124, .external_lex_state = 16}, + [1264] = {.lex_state = 124, .external_lex_state = 16}, + [1265] = {.lex_state = 124, .external_lex_state = 16}, + [1266] = {.lex_state = 124, .external_lex_state = 16}, + [1267] = {.lex_state = 124, .external_lex_state = 16}, + [1268] = {.lex_state = 124, .external_lex_state = 16}, + [1269] = {.lex_state = 124, .external_lex_state = 16}, + [1270] = {.lex_state = 124, .external_lex_state = 16}, + [1271] = {.lex_state = 124, .external_lex_state = 16}, + [1272] = {.lex_state = 116, .external_lex_state = 12}, + [1273] = {.lex_state = 124, .external_lex_state = 16}, + [1274] = {.lex_state = 116, .external_lex_state = 12}, + [1275] = {.lex_state = 124, .external_lex_state = 16}, + [1276] = {.lex_state = 124, .external_lex_state = 16}, + [1277] = {.lex_state = 124, .external_lex_state = 16}, + [1278] = {.lex_state = 124, .external_lex_state = 16}, + [1279] = {.lex_state = 124, .external_lex_state = 16}, + [1280] = {.lex_state = 116, .external_lex_state = 12}, + [1281] = {.lex_state = 124, .external_lex_state = 16}, + [1282] = {.lex_state = 124, .external_lex_state = 16}, + [1283] = {.lex_state = 124, .external_lex_state = 16}, + [1284] = {.lex_state = 124, .external_lex_state = 16}, + [1285] = {.lex_state = 124, .external_lex_state = 16}, + [1286] = {.lex_state = 124, .external_lex_state = 16}, + [1287] = {.lex_state = 124, .external_lex_state = 16}, + [1288] = {.lex_state = 124, .external_lex_state = 16}, + [1289] = {.lex_state = 124, .external_lex_state = 16}, + [1290] = {.lex_state = 124, .external_lex_state = 16}, + [1291] = {.lex_state = 124, .external_lex_state = 16}, + [1292] = {.lex_state = 124, .external_lex_state = 16}, + [1293] = {.lex_state = 124, .external_lex_state = 16}, + [1294] = {.lex_state = 124, .external_lex_state = 16}, + [1295] = {.lex_state = 124, .external_lex_state = 16}, + [1296] = {.lex_state = 124, .external_lex_state = 16}, + [1297] = {.lex_state = 124, .external_lex_state = 16}, + [1298] = {.lex_state = 124, .external_lex_state = 16}, + [1299] = {.lex_state = 124, .external_lex_state = 16}, + [1300] = {.lex_state = 96, .external_lex_state = 15}, + [1301] = {.lex_state = 96, .external_lex_state = 15}, + [1302] = {.lex_state = 124, .external_lex_state = 16}, + [1303] = {.lex_state = 90, .external_lex_state = 3}, + [1304] = {.lex_state = 124, .external_lex_state = 16}, + [1305] = {.lex_state = 124, .external_lex_state = 16}, + [1306] = {.lex_state = 124, .external_lex_state = 16}, + [1307] = {.lex_state = 124, .external_lex_state = 16}, + [1308] = {.lex_state = 124, .external_lex_state = 16}, + [1309] = {.lex_state = 124, .external_lex_state = 16}, + [1310] = {.lex_state = 124, .external_lex_state = 16}, + [1311] = {.lex_state = 124, .external_lex_state = 16}, + [1312] = {.lex_state = 124, .external_lex_state = 16}, + [1313] = {.lex_state = 124, .external_lex_state = 16}, + [1314] = {.lex_state = 74, .external_lex_state = 9}, + [1315] = {.lex_state = 124, .external_lex_state = 16}, + [1316] = {.lex_state = 124, .external_lex_state = 16}, + [1317] = {.lex_state = 124, .external_lex_state = 16}, + [1318] = {.lex_state = 124, .external_lex_state = 16}, + [1319] = {.lex_state = 124, .external_lex_state = 16}, + [1320] = {.lex_state = 124, .external_lex_state = 16}, + [1321] = {.lex_state = 124, .external_lex_state = 16}, + [1322] = {.lex_state = 74, .external_lex_state = 9}, + [1323] = {.lex_state = 124, .external_lex_state = 16}, + [1324] = {.lex_state = 124, .external_lex_state = 16}, + [1325] = {.lex_state = 124, .external_lex_state = 16}, + [1326] = {.lex_state = 124, .external_lex_state = 16}, + [1327] = {.lex_state = 124, .external_lex_state = 16}, + [1328] = {.lex_state = 124, .external_lex_state = 16}, + [1329] = {.lex_state = 124, .external_lex_state = 16}, + [1330] = {.lex_state = 124, .external_lex_state = 16}, + [1331] = {.lex_state = 124, .external_lex_state = 16}, + [1332] = {.lex_state = 124, .external_lex_state = 16}, + [1333] = {.lex_state = 124, .external_lex_state = 16}, + [1334] = {.lex_state = 124, .external_lex_state = 16}, + [1335] = {.lex_state = 124, .external_lex_state = 16}, + [1336] = {.lex_state = 124, .external_lex_state = 16}, + [1337] = {.lex_state = 124, .external_lex_state = 16}, + [1338] = {.lex_state = 124, .external_lex_state = 16}, + [1339] = {.lex_state = 124, .external_lex_state = 16}, + [1340] = {.lex_state = 124, .external_lex_state = 16}, + [1341] = {.lex_state = 124, .external_lex_state = 16}, + [1342] = {.lex_state = 124, .external_lex_state = 16}, + [1343] = {.lex_state = 124, .external_lex_state = 16}, + [1344] = {.lex_state = 124, .external_lex_state = 16}, + [1345] = {.lex_state = 228, .external_lex_state = 3}, + [1346] = {.lex_state = 80, .external_lex_state = 9}, + [1347] = {.lex_state = 124, .external_lex_state = 16}, + [1348] = {.lex_state = 124, .external_lex_state = 16}, + [1349] = {.lex_state = 124, .external_lex_state = 16}, + [1350] = {.lex_state = 124, .external_lex_state = 16}, + [1351] = {.lex_state = 124, .external_lex_state = 16}, + [1352] = {.lex_state = 124, .external_lex_state = 16}, + [1353] = {.lex_state = 124, .external_lex_state = 16}, + [1354] = {.lex_state = 124, .external_lex_state = 16}, + [1355] = {.lex_state = 124, .external_lex_state = 16}, + [1356] = {.lex_state = 124, .external_lex_state = 16}, + [1357] = {.lex_state = 124, .external_lex_state = 16}, + [1358] = {.lex_state = 124, .external_lex_state = 16}, + [1359] = {.lex_state = 124, .external_lex_state = 16}, + [1360] = {.lex_state = 124, .external_lex_state = 16}, + [1361] = {.lex_state = 124, .external_lex_state = 16}, + [1362] = {.lex_state = 124, .external_lex_state = 16}, + [1363] = {.lex_state = 124, .external_lex_state = 16}, + [1364] = {.lex_state = 124, .external_lex_state = 16}, + [1365] = {.lex_state = 124, .external_lex_state = 16}, + [1366] = {.lex_state = 124, .external_lex_state = 16}, + [1367] = {.lex_state = 124, .external_lex_state = 16}, + [1368] = {.lex_state = 124, .external_lex_state = 16}, + [1369] = {.lex_state = 124, .external_lex_state = 16}, + [1370] = {.lex_state = 124, .external_lex_state = 16}, + [1371] = {.lex_state = 124, .external_lex_state = 16}, + [1372] = {.lex_state = 124, .external_lex_state = 16}, + [1373] = {.lex_state = 124, .external_lex_state = 16}, + [1374] = {.lex_state = 124, .external_lex_state = 16}, + [1375] = {.lex_state = 124, .external_lex_state = 16}, + [1376] = {.lex_state = 124, .external_lex_state = 16}, + [1377] = {.lex_state = 124, .external_lex_state = 16}, + [1378] = {.lex_state = 124, .external_lex_state = 16}, + [1379] = {.lex_state = 124, .external_lex_state = 16}, + [1380] = {.lex_state = 228, .external_lex_state = 3}, + [1381] = {.lex_state = 124, .external_lex_state = 16}, + [1382] = {.lex_state = 124, .external_lex_state = 16}, + [1383] = {.lex_state = 124, .external_lex_state = 16}, + [1384] = {.lex_state = 228, .external_lex_state = 3}, + [1385] = {.lex_state = 124, .external_lex_state = 16}, + [1386] = {.lex_state = 124, .external_lex_state = 16}, + [1387] = {.lex_state = 228, .external_lex_state = 3}, + [1388] = {.lex_state = 124, .external_lex_state = 16}, + [1389] = {.lex_state = 124, .external_lex_state = 16}, + [1390] = {.lex_state = 124, .external_lex_state = 16}, + [1391] = {.lex_state = 124, .external_lex_state = 16}, + [1392] = {.lex_state = 124, .external_lex_state = 16}, + [1393] = {.lex_state = 124, .external_lex_state = 16}, + [1394] = {.lex_state = 124, .external_lex_state = 16}, + [1395] = {.lex_state = 124, .external_lex_state = 16}, + [1396] = {.lex_state = 74, .external_lex_state = 8}, + [1397] = {.lex_state = 124, .external_lex_state = 16}, + [1398] = {.lex_state = 124, .external_lex_state = 16}, + [1399] = {.lex_state = 124, .external_lex_state = 16}, + [1400] = {.lex_state = 124, .external_lex_state = 16}, + [1401] = {.lex_state = 124, .external_lex_state = 16}, + [1402] = {.lex_state = 124, .external_lex_state = 16}, + [1403] = {.lex_state = 124, .external_lex_state = 16}, + [1404] = {.lex_state = 124, .external_lex_state = 16}, + [1405] = {.lex_state = 116, .external_lex_state = 12}, + [1406] = {.lex_state = 124, .external_lex_state = 16}, + [1407] = {.lex_state = 124, .external_lex_state = 16}, + [1408] = {.lex_state = 124, .external_lex_state = 16}, + [1409] = {.lex_state = 124, .external_lex_state = 16}, + [1410] = {.lex_state = 124, .external_lex_state = 16}, + [1411] = {.lex_state = 124, .external_lex_state = 16}, + [1412] = {.lex_state = 124, .external_lex_state = 16}, + [1413] = {.lex_state = 124, .external_lex_state = 16}, + [1414] = {.lex_state = 124, .external_lex_state = 16}, + [1415] = {.lex_state = 124, .external_lex_state = 16}, + [1416] = {.lex_state = 124, .external_lex_state = 16}, + [1417] = {.lex_state = 124, .external_lex_state = 16}, + [1418] = {.lex_state = 84, .external_lex_state = 8}, + [1419] = {.lex_state = 230, .external_lex_state = 9}, + [1420] = {.lex_state = 124, .external_lex_state = 16}, + [1421] = {.lex_state = 118, .external_lex_state = 6}, + [1422] = {.lex_state = 124, .external_lex_state = 16}, + [1423] = {.lex_state = 124, .external_lex_state = 16}, + [1424] = {.lex_state = 118, .external_lex_state = 6}, + [1425] = {.lex_state = 228, .external_lex_state = 3}, + [1426] = {.lex_state = 124, .external_lex_state = 16}, + [1427] = {.lex_state = 124, .external_lex_state = 16}, + [1428] = {.lex_state = 124, .external_lex_state = 16}, + [1429] = {.lex_state = 124, .external_lex_state = 16}, + [1430] = {.lex_state = 124, .external_lex_state = 16}, + [1431] = {.lex_state = 118, .external_lex_state = 6}, + [1432] = {.lex_state = 124, .external_lex_state = 16}, + [1433] = {.lex_state = 124, .external_lex_state = 16}, + [1434] = {.lex_state = 124, .external_lex_state = 16}, + [1435] = {.lex_state = 124, .external_lex_state = 16}, + [1436] = {.lex_state = 124, .external_lex_state = 16}, + [1437] = {.lex_state = 124, .external_lex_state = 16}, + [1438] = {.lex_state = 124, .external_lex_state = 16}, + [1439] = {.lex_state = 124, .external_lex_state = 16}, + [1440] = {.lex_state = 124, .external_lex_state = 16}, + [1441] = {.lex_state = 124, .external_lex_state = 16}, + [1442] = {.lex_state = 124, .external_lex_state = 16}, + [1443] = {.lex_state = 124, .external_lex_state = 16}, + [1444] = {.lex_state = 124, .external_lex_state = 16}, + [1445] = {.lex_state = 124, .external_lex_state = 16}, + [1446] = {.lex_state = 124, .external_lex_state = 16}, + [1447] = {.lex_state = 124, .external_lex_state = 16}, + [1448] = {.lex_state = 124, .external_lex_state = 16}, + [1449] = {.lex_state = 124, .external_lex_state = 16}, + [1450] = {.lex_state = 124, .external_lex_state = 16}, + [1451] = {.lex_state = 124, .external_lex_state = 16}, + [1452] = {.lex_state = 124, .external_lex_state = 16}, + [1453] = {.lex_state = 124, .external_lex_state = 16}, + [1454] = {.lex_state = 124, .external_lex_state = 16}, + [1455] = {.lex_state = 124, .external_lex_state = 16}, + [1456] = {.lex_state = 124, .external_lex_state = 16}, + [1457] = {.lex_state = 124, .external_lex_state = 16}, + [1458] = {.lex_state = 124, .external_lex_state = 16}, + [1459] = {.lex_state = 226, .external_lex_state = 15}, + [1460] = {.lex_state = 124, .external_lex_state = 16}, + [1461] = {.lex_state = 124, .external_lex_state = 16}, + [1462] = {.lex_state = 226, .external_lex_state = 15}, + [1463] = {.lex_state = 124, .external_lex_state = 16}, + [1464] = {.lex_state = 118, .external_lex_state = 12}, + [1465] = {.lex_state = 124, .external_lex_state = 16}, + [1466] = {.lex_state = 124, .external_lex_state = 16}, + [1467] = {.lex_state = 124, .external_lex_state = 16}, + [1468] = {.lex_state = 124, .external_lex_state = 16}, + [1469] = {.lex_state = 226, .external_lex_state = 15}, + [1470] = {.lex_state = 124, .external_lex_state = 16}, + [1471] = {.lex_state = 124, .external_lex_state = 16}, + [1472] = {.lex_state = 124, .external_lex_state = 16}, + [1473] = {.lex_state = 124, .external_lex_state = 16}, + [1474] = {.lex_state = 124, .external_lex_state = 16}, + [1475] = {.lex_state = 124, .external_lex_state = 16}, + [1476] = {.lex_state = 124, .external_lex_state = 16}, + [1477] = {.lex_state = 124, .external_lex_state = 16}, + [1478] = {.lex_state = 124, .external_lex_state = 16}, + [1479] = {.lex_state = 124, .external_lex_state = 16}, + [1480] = {.lex_state = 124, .external_lex_state = 16}, + [1481] = {.lex_state = 124, .external_lex_state = 16}, + [1482] = {.lex_state = 124, .external_lex_state = 16}, + [1483] = {.lex_state = 124, .external_lex_state = 16}, + [1484] = {.lex_state = 124, .external_lex_state = 16}, + [1485] = {.lex_state = 124, .external_lex_state = 16}, + [1486] = {.lex_state = 124, .external_lex_state = 16}, + [1487] = {.lex_state = 124, .external_lex_state = 16}, + [1488] = {.lex_state = 124, .external_lex_state = 16}, + [1489] = {.lex_state = 124, .external_lex_state = 16}, + [1490] = {.lex_state = 124, .external_lex_state = 16}, + [1491] = {.lex_state = 124, .external_lex_state = 16}, + [1492] = {.lex_state = 124, .external_lex_state = 16}, + [1493] = {.lex_state = 226, .external_lex_state = 15}, + [1494] = {.lex_state = 124, .external_lex_state = 16}, + [1495] = {.lex_state = 124, .external_lex_state = 16}, + [1496] = {.lex_state = 124, .external_lex_state = 16}, + [1497] = {.lex_state = 124, .external_lex_state = 16}, + [1498] = {.lex_state = 124, .external_lex_state = 16}, + [1499] = {.lex_state = 124, .external_lex_state = 16}, + [1500] = {.lex_state = 124, .external_lex_state = 16}, + [1501] = {.lex_state = 124, .external_lex_state = 16}, + [1502] = {.lex_state = 124, .external_lex_state = 16}, + [1503] = {.lex_state = 124, .external_lex_state = 16}, + [1504] = {.lex_state = 124, .external_lex_state = 16}, + [1505] = {.lex_state = 124, .external_lex_state = 16}, + [1506] = {.lex_state = 124, .external_lex_state = 16}, + [1507] = {.lex_state = 124, .external_lex_state = 16}, + [1508] = {.lex_state = 124, .external_lex_state = 16}, + [1509] = {.lex_state = 124, .external_lex_state = 16}, + [1510] = {.lex_state = 124, .external_lex_state = 16}, + [1511] = {.lex_state = 124, .external_lex_state = 16}, + [1512] = {.lex_state = 124, .external_lex_state = 16}, + [1513] = {.lex_state = 124, .external_lex_state = 16}, + [1514] = {.lex_state = 124, .external_lex_state = 16}, + [1515] = {.lex_state = 124, .external_lex_state = 16}, + [1516] = {.lex_state = 124, .external_lex_state = 16}, + [1517] = {.lex_state = 124, .external_lex_state = 16}, + [1518] = {.lex_state = 124, .external_lex_state = 16}, + [1519] = {.lex_state = 124, .external_lex_state = 16}, + [1520] = {.lex_state = 124, .external_lex_state = 16}, + [1521] = {.lex_state = 124, .external_lex_state = 16}, + [1522] = {.lex_state = 124, .external_lex_state = 16}, + [1523] = {.lex_state = 124, .external_lex_state = 16}, + [1524] = {.lex_state = 124, .external_lex_state = 16}, + [1525] = {.lex_state = 124, .external_lex_state = 16}, + [1526] = {.lex_state = 124, .external_lex_state = 16}, + [1527] = {.lex_state = 124, .external_lex_state = 16}, + [1528] = {.lex_state = 124, .external_lex_state = 16}, + [1529] = {.lex_state = 124, .external_lex_state = 16}, + [1530] = {.lex_state = 124, .external_lex_state = 16}, + [1531] = {.lex_state = 124, .external_lex_state = 16}, + [1532] = {.lex_state = 124, .external_lex_state = 16}, + [1533] = {.lex_state = 124, .external_lex_state = 16}, + [1534] = {.lex_state = 124, .external_lex_state = 16}, + [1535] = {.lex_state = 124, .external_lex_state = 16}, + [1536] = {.lex_state = 124, .external_lex_state = 16}, + [1537] = {.lex_state = 124, .external_lex_state = 16}, + [1538] = {.lex_state = 124, .external_lex_state = 16}, + [1539] = {.lex_state = 124, .external_lex_state = 16}, + [1540] = {.lex_state = 124, .external_lex_state = 16}, + [1541] = {.lex_state = 124, .external_lex_state = 16}, + [1542] = {.lex_state = 124, .external_lex_state = 16}, + [1543] = {.lex_state = 124, .external_lex_state = 16}, + [1544] = {.lex_state = 124, .external_lex_state = 16}, + [1545] = {.lex_state = 124, .external_lex_state = 16}, + [1546] = {.lex_state = 124, .external_lex_state = 16}, + [1547] = {.lex_state = 124, .external_lex_state = 16}, + [1548] = {.lex_state = 124, .external_lex_state = 16}, + [1549] = {.lex_state = 124, .external_lex_state = 16}, + [1550] = {.lex_state = 124, .external_lex_state = 16}, + [1551] = {.lex_state = 124, .external_lex_state = 16}, + [1552] = {.lex_state = 124, .external_lex_state = 16}, + [1553] = {.lex_state = 124, .external_lex_state = 16}, + [1554] = {.lex_state = 124, .external_lex_state = 16}, + [1555] = {.lex_state = 124, .external_lex_state = 16}, + [1556] = {.lex_state = 124, .external_lex_state = 16}, + [1557] = {.lex_state = 124, .external_lex_state = 16}, + [1558] = {.lex_state = 22, .external_lex_state = 11}, + [1559] = {.lex_state = 124, .external_lex_state = 16}, + [1560] = {.lex_state = 124, .external_lex_state = 16}, + [1561] = {.lex_state = 124, .external_lex_state = 16}, + [1562] = {.lex_state = 124, .external_lex_state = 16}, + [1563] = {.lex_state = 124, .external_lex_state = 16}, + [1564] = {.lex_state = 124, .external_lex_state = 16}, + [1565] = {.lex_state = 124, .external_lex_state = 16}, + [1566] = {.lex_state = 124, .external_lex_state = 16}, + [1567] = {.lex_state = 124, .external_lex_state = 16}, + [1568] = {.lex_state = 124, .external_lex_state = 16}, + [1569] = {.lex_state = 124, .external_lex_state = 16}, + [1570] = {.lex_state = 22, .external_lex_state = 11}, + [1571] = {.lex_state = 124, .external_lex_state = 16}, + [1572] = {.lex_state = 124, .external_lex_state = 16}, + [1573] = {.lex_state = 124, .external_lex_state = 16}, + [1574] = {.lex_state = 124, .external_lex_state = 16}, + [1575] = {.lex_state = 124, .external_lex_state = 16}, + [1576] = {.lex_state = 124, .external_lex_state = 16}, + [1577] = {.lex_state = 124, .external_lex_state = 16}, + [1578] = {.lex_state = 124, .external_lex_state = 16}, + [1579] = {.lex_state = 124, .external_lex_state = 16}, + [1580] = {.lex_state = 124, .external_lex_state = 16}, + [1581] = {.lex_state = 124, .external_lex_state = 16}, + [1582] = {.lex_state = 124, .external_lex_state = 16}, + [1583] = {.lex_state = 124, .external_lex_state = 16}, + [1584] = {.lex_state = 124, .external_lex_state = 16}, + [1585] = {.lex_state = 124, .external_lex_state = 16}, + [1586] = {.lex_state = 124, .external_lex_state = 16}, + [1587] = {.lex_state = 124, .external_lex_state = 16}, + [1588] = {.lex_state = 124, .external_lex_state = 16}, + [1589] = {.lex_state = 124, .external_lex_state = 16}, + [1590] = {.lex_state = 124, .external_lex_state = 16}, + [1591] = {.lex_state = 124, .external_lex_state = 16}, + [1592] = {.lex_state = 124, .external_lex_state = 16}, + [1593] = {.lex_state = 124, .external_lex_state = 16}, + [1594] = {.lex_state = 124, .external_lex_state = 16}, + [1595] = {.lex_state = 124, .external_lex_state = 16}, + [1596] = {.lex_state = 124, .external_lex_state = 16}, + [1597] = {.lex_state = 124, .external_lex_state = 16}, + [1598] = {.lex_state = 124, .external_lex_state = 16}, + [1599] = {.lex_state = 124, .external_lex_state = 16}, + [1600] = {.lex_state = 124, .external_lex_state = 16}, + [1601] = {.lex_state = 124, .external_lex_state = 16}, + [1602] = {.lex_state = 124, .external_lex_state = 16}, + [1603] = {.lex_state = 124, .external_lex_state = 16}, + [1604] = {.lex_state = 124, .external_lex_state = 16}, + [1605] = {.lex_state = 124, .external_lex_state = 16}, + [1606] = {.lex_state = 124, .external_lex_state = 16}, + [1607] = {.lex_state = 124, .external_lex_state = 16}, + [1608] = {.lex_state = 124, .external_lex_state = 16}, + [1609] = {.lex_state = 124, .external_lex_state = 16}, + [1610] = {.lex_state = 124, .external_lex_state = 16}, + [1611] = {.lex_state = 124, .external_lex_state = 16}, + [1612] = {.lex_state = 124, .external_lex_state = 16}, + [1613] = {.lex_state = 124, .external_lex_state = 16}, + [1614] = {.lex_state = 124, .external_lex_state = 16}, + [1615] = {.lex_state = 124, .external_lex_state = 16}, + [1616] = {.lex_state = 124, .external_lex_state = 16}, + [1617] = {.lex_state = 124, .external_lex_state = 16}, + [1618] = {.lex_state = 124, .external_lex_state = 16}, + [1619] = {.lex_state = 124, .external_lex_state = 16}, + [1620] = {.lex_state = 124, .external_lex_state = 16}, + [1621] = {.lex_state = 124, .external_lex_state = 16}, + [1622] = {.lex_state = 124, .external_lex_state = 16}, + [1623] = {.lex_state = 124, .external_lex_state = 16}, + [1624] = {.lex_state = 96, .external_lex_state = 9}, + [1625] = {.lex_state = 226, .external_lex_state = 15}, + [1626] = {.lex_state = 228, .external_lex_state = 3}, + [1627] = {.lex_state = 228, .external_lex_state = 3}, + [1628] = {.lex_state = 228, .external_lex_state = 3}, + [1629] = {.lex_state = 228, .external_lex_state = 3}, + [1630] = {.lex_state = 228, .external_lex_state = 3}, + [1631] = {.lex_state = 228, .external_lex_state = 3}, + [1632] = {.lex_state = 228, .external_lex_state = 3}, + [1633] = {.lex_state = 228, .external_lex_state = 3}, + [1634] = {.lex_state = 228, .external_lex_state = 3}, + [1635] = {.lex_state = 80, .external_lex_state = 3}, + [1636] = {.lex_state = 228, .external_lex_state = 3}, + [1637] = {.lex_state = 80, .external_lex_state = 3}, + [1638] = {.lex_state = 126, .external_lex_state = 2}, + [1639] = {.lex_state = 228, .external_lex_state = 8}, + [1640] = {.lex_state = 80, .external_lex_state = 3}, + [1641] = {.lex_state = 80, .external_lex_state = 3}, + [1642] = {.lex_state = 80, .external_lex_state = 3}, + [1643] = {.lex_state = 228, .external_lex_state = 3}, + [1644] = {.lex_state = 228, .external_lex_state = 3}, + [1645] = {.lex_state = 80, .external_lex_state = 9}, + [1646] = {.lex_state = 80, .external_lex_state = 3}, + [1647] = {.lex_state = 228, .external_lex_state = 3}, + [1648] = {.lex_state = 226, .external_lex_state = 9}, + [1649] = {.lex_state = 80, .external_lex_state = 3}, + [1650] = {.lex_state = 226, .external_lex_state = 3}, + [1651] = {.lex_state = 226, .external_lex_state = 3}, + [1652] = {.lex_state = 228, .external_lex_state = 3}, + [1653] = {.lex_state = 228, .external_lex_state = 3}, + [1654] = {.lex_state = 228, .external_lex_state = 3}, + [1655] = {.lex_state = 228, .external_lex_state = 3}, + [1656] = {.lex_state = 228, .external_lex_state = 3}, + [1657] = {.lex_state = 90, .external_lex_state = 8}, + [1658] = {.lex_state = 228, .external_lex_state = 8}, + [1659] = {.lex_state = 90, .external_lex_state = 8}, + [1660] = {.lex_state = 226, .external_lex_state = 3}, + [1661] = {.lex_state = 226, .external_lex_state = 15}, + [1662] = {.lex_state = 226, .external_lex_state = 15}, + [1663] = {.lex_state = 226, .external_lex_state = 15}, + [1664] = {.lex_state = 126, .external_lex_state = 2}, + [1665] = {.lex_state = 226, .external_lex_state = 15}, + [1666] = {.lex_state = 228, .external_lex_state = 8}, + [1667] = {.lex_state = 226, .external_lex_state = 15}, + [1668] = {.lex_state = 226, .external_lex_state = 15}, + [1669] = {.lex_state = 226, .external_lex_state = 15}, + [1670] = {.lex_state = 226, .external_lex_state = 15}, + [1671] = {.lex_state = 226, .external_lex_state = 15}, + [1672] = {.lex_state = 226, .external_lex_state = 15}, + [1673] = {.lex_state = 226, .external_lex_state = 15}, + [1674] = {.lex_state = 226, .external_lex_state = 15}, + [1675] = {.lex_state = 230, .external_lex_state = 15}, + [1676] = {.lex_state = 226, .external_lex_state = 15}, + [1677] = {.lex_state = 230, .external_lex_state = 15}, + [1678] = {.lex_state = 228, .external_lex_state = 3}, + [1679] = {.lex_state = 226, .external_lex_state = 15}, + [1680] = {.lex_state = 228, .external_lex_state = 3}, + [1681] = {.lex_state = 80, .external_lex_state = 8}, + [1682] = {.lex_state = 226, .external_lex_state = 15}, + [1683] = {.lex_state = 226, .external_lex_state = 15}, + [1684] = {.lex_state = 228, .external_lex_state = 3}, + [1685] = {.lex_state = 226, .external_lex_state = 3}, + [1686] = {.lex_state = 228, .external_lex_state = 3}, + [1687] = {.lex_state = 228, .external_lex_state = 3}, + [1688] = {.lex_state = 226, .external_lex_state = 15}, + [1689] = {.lex_state = 226, .external_lex_state = 9}, + [1690] = {.lex_state = 96, .external_lex_state = 15}, + [1691] = {.lex_state = 226, .external_lex_state = 3}, + [1692] = {.lex_state = 226, .external_lex_state = 15}, + [1693] = {.lex_state = 228, .external_lex_state = 3}, + [1694] = {.lex_state = 228, .external_lex_state = 3}, + [1695] = {.lex_state = 226, .external_lex_state = 3}, + [1696] = {.lex_state = 228, .external_lex_state = 3}, + [1697] = {.lex_state = 228, .external_lex_state = 3}, + [1698] = {.lex_state = 226, .external_lex_state = 15}, + [1699] = {.lex_state = 226, .external_lex_state = 15}, + [1700] = {.lex_state = 118, .external_lex_state = 6}, + [1701] = {.lex_state = 118, .external_lex_state = 6}, + [1702] = {.lex_state = 118, .external_lex_state = 6}, + [1703] = {.lex_state = 118, .external_lex_state = 6}, + [1704] = {.lex_state = 118, .external_lex_state = 6}, + [1705] = {.lex_state = 118, .external_lex_state = 6}, + [1706] = {.lex_state = 118, .external_lex_state = 6}, + [1707] = {.lex_state = 118, .external_lex_state = 6}, + [1708] = {.lex_state = 118, .external_lex_state = 6}, + [1709] = {.lex_state = 118, .external_lex_state = 6}, + [1710] = {.lex_state = 90, .external_lex_state = 8}, + [1711] = {.lex_state = 118, .external_lex_state = 6}, + [1712] = {.lex_state = 96, .external_lex_state = 15}, + [1713] = {.lex_state = 118, .external_lex_state = 6}, + [1714] = {.lex_state = 118, .external_lex_state = 6}, + [1715] = {.lex_state = 226, .external_lex_state = 15}, + [1716] = {.lex_state = 118, .external_lex_state = 6}, + [1717] = {.lex_state = 226, .external_lex_state = 15}, + [1718] = {.lex_state = 118, .external_lex_state = 6}, + [1719] = {.lex_state = 118, .external_lex_state = 6}, + [1720] = {.lex_state = 118, .external_lex_state = 6}, + [1721] = {.lex_state = 226, .external_lex_state = 15}, + [1722] = {.lex_state = 226, .external_lex_state = 15}, + [1723] = {.lex_state = 226, .external_lex_state = 15}, + [1724] = {.lex_state = 124, .external_lex_state = 16}, + [1725] = {.lex_state = 230, .external_lex_state = 15}, + [1726] = {.lex_state = 228, .external_lex_state = 3}, + [1727] = {.lex_state = 118, .external_lex_state = 6}, + [1728] = {.lex_state = 230, .external_lex_state = 15}, + [1729] = {.lex_state = 118, .external_lex_state = 12}, + [1730] = {.lex_state = 118, .external_lex_state = 6}, + [1731] = {.lex_state = 226, .external_lex_state = 9}, + [1732] = {.lex_state = 80, .external_lex_state = 8}, + [1733] = {.lex_state = 228, .external_lex_state = 3}, + [1734] = {.lex_state = 226, .external_lex_state = 15}, + [1735] = {.lex_state = 230, .external_lex_state = 15}, + [1736] = {.lex_state = 90, .external_lex_state = 8}, + [1737] = {.lex_state = 226, .external_lex_state = 15}, + [1738] = {.lex_state = 118, .external_lex_state = 6}, + [1739] = {.lex_state = 118, .external_lex_state = 6}, + [1740] = {.lex_state = 228, .external_lex_state = 3}, + [1741] = {.lex_state = 228, .external_lex_state = 3}, + [1742] = {.lex_state = 118, .external_lex_state = 6}, + [1743] = {.lex_state = 228, .external_lex_state = 3}, + [1744] = {.lex_state = 96, .external_lex_state = 15}, + [1745] = {.lex_state = 118, .external_lex_state = 6}, + [1746] = {.lex_state = 118, .external_lex_state = 6}, + [1747] = {.lex_state = 118, .external_lex_state = 6}, + [1748] = {.lex_state = 118, .external_lex_state = 6}, + [1749] = {.lex_state = 118, .external_lex_state = 6}, + [1750] = {.lex_state = 118, .external_lex_state = 6}, + [1751] = {.lex_state = 126, .external_lex_state = 2}, + [1752] = {.lex_state = 228, .external_lex_state = 3}, + [1753] = {.lex_state = 228, .external_lex_state = 3}, + [1754] = {.lex_state = 228, .external_lex_state = 3}, + [1755] = {.lex_state = 228, .external_lex_state = 3}, + [1756] = {.lex_state = 228, .external_lex_state = 3}, + [1757] = {.lex_state = 96, .external_lex_state = 15}, + [1758] = {.lex_state = 228, .external_lex_state = 3}, + [1759] = {.lex_state = 230, .external_lex_state = 15}, + [1760] = {.lex_state = 119, .external_lex_state = 7}, + [1761] = {.lex_state = 96, .external_lex_state = 15}, + [1762] = {.lex_state = 119, .external_lex_state = 7}, + [1763] = {.lex_state = 119, .external_lex_state = 7}, + [1764] = {.lex_state = 119, .external_lex_state = 7}, + [1765] = {.lex_state = 119, .external_lex_state = 7}, + [1766] = {.lex_state = 228, .external_lex_state = 3}, + [1767] = {.lex_state = 228, .external_lex_state = 3}, + [1768] = {.lex_state = 228, .external_lex_state = 3}, + [1769] = {.lex_state = 96, .external_lex_state = 15}, + [1770] = {.lex_state = 228, .external_lex_state = 3}, + [1771] = {.lex_state = 80, .external_lex_state = 3}, + [1772] = {.lex_state = 96, .external_lex_state = 15}, + [1773] = {.lex_state = 80, .external_lex_state = 9}, + [1774] = {.lex_state = 119, .external_lex_state = 14}, + [1775] = {.lex_state = 94, .external_lex_state = 9}, + [1776] = {.lex_state = 119, .external_lex_state = 7}, + [1777] = {.lex_state = 119, .external_lex_state = 7}, + [1778] = {.lex_state = 119, .external_lex_state = 7}, + [1779] = {.lex_state = 119, .external_lex_state = 7}, + [1780] = {.lex_state = 119, .external_lex_state = 7}, + [1781] = {.lex_state = 228, .external_lex_state = 3}, + [1782] = {.lex_state = 119, .external_lex_state = 7}, + [1783] = {.lex_state = 119, .external_lex_state = 7}, + [1784] = {.lex_state = 119, .external_lex_state = 7}, + [1785] = {.lex_state = 228, .external_lex_state = 8}, + [1786] = {.lex_state = 119, .external_lex_state = 7}, + [1787] = {.lex_state = 119, .external_lex_state = 7}, + [1788] = {.lex_state = 119, .external_lex_state = 7}, + [1789] = {.lex_state = 119, .external_lex_state = 7}, + [1790] = {.lex_state = 119, .external_lex_state = 7}, + [1791] = {.lex_state = 80, .external_lex_state = 3}, + [1792] = {.lex_state = 80, .external_lex_state = 3}, + [1793] = {.lex_state = 80, .external_lex_state = 3}, + [1794] = {.lex_state = 119, .external_lex_state = 7}, + [1795] = {.lex_state = 80, .external_lex_state = 3}, + [1796] = {.lex_state = 119, .external_lex_state = 7}, + [1797] = {.lex_state = 80, .external_lex_state = 9}, + [1798] = {.lex_state = 80, .external_lex_state = 3}, + [1799] = {.lex_state = 119, .external_lex_state = 7}, + [1800] = {.lex_state = 80, .external_lex_state = 3}, + [1801] = {.lex_state = 228, .external_lex_state = 8}, + [1802] = {.lex_state = 80, .external_lex_state = 3}, + [1803] = {.lex_state = 96, .external_lex_state = 15}, + [1804] = {.lex_state = 228, .external_lex_state = 3}, + [1805] = {.lex_state = 119, .external_lex_state = 7}, + [1806] = {.lex_state = 228, .external_lex_state = 3}, + [1807] = {.lex_state = 228, .external_lex_state = 3}, + [1808] = {.lex_state = 80, .external_lex_state = 3}, + [1809] = {.lex_state = 80, .external_lex_state = 3}, + [1810] = {.lex_state = 119, .external_lex_state = 7}, + [1811] = {.lex_state = 230, .external_lex_state = 15}, + [1812] = {.lex_state = 80, .external_lex_state = 3}, + [1813] = {.lex_state = 228, .external_lex_state = 3}, + [1814] = {.lex_state = 119, .external_lex_state = 7}, + [1815] = {.lex_state = 74, .external_lex_state = 8}, + [1816] = {.lex_state = 80, .external_lex_state = 3}, + [1817] = {.lex_state = 228, .external_lex_state = 3}, + [1818] = {.lex_state = 80, .external_lex_state = 3}, + [1819] = {.lex_state = 228, .external_lex_state = 3}, + [1820] = {.lex_state = 119, .external_lex_state = 7}, + [1821] = {.lex_state = 80, .external_lex_state = 3}, + [1822] = {.lex_state = 119, .external_lex_state = 7}, + [1823] = {.lex_state = 230, .external_lex_state = 15}, + [1824] = {.lex_state = 80, .external_lex_state = 3}, + [1825] = {.lex_state = 80, .external_lex_state = 3}, + [1826] = {.lex_state = 80, .external_lex_state = 9}, + [1827] = {.lex_state = 80, .external_lex_state = 3}, + [1828] = {.lex_state = 228, .external_lex_state = 3}, + [1829] = {.lex_state = 230, .external_lex_state = 15}, + [1830] = {.lex_state = 80, .external_lex_state = 3}, + [1831] = {.lex_state = 80, .external_lex_state = 3}, + [1832] = {.lex_state = 230, .external_lex_state = 15}, + [1833] = {.lex_state = 80, .external_lex_state = 3}, + [1834] = {.lex_state = 228, .external_lex_state = 3}, + [1835] = {.lex_state = 228, .external_lex_state = 3}, + [1836] = {.lex_state = 80, .external_lex_state = 3}, + [1837] = {.lex_state = 96, .external_lex_state = 15}, + [1838] = {.lex_state = 96, .external_lex_state = 9}, + [1839] = {.lex_state = 96, .external_lex_state = 15}, + [1840] = {.lex_state = 96, .external_lex_state = 15}, + [1841] = {.lex_state = 96, .external_lex_state = 15}, + [1842] = {.lex_state = 94, .external_lex_state = 9}, + [1843] = {.lex_state = 94, .external_lex_state = 9}, + [1844] = {.lex_state = 96, .external_lex_state = 15}, + [1845] = {.lex_state = 96, .external_lex_state = 15}, + [1846] = {.lex_state = 96, .external_lex_state = 15}, + [1847] = {.lex_state = 96, .external_lex_state = 15}, + [1848] = {.lex_state = 226, .external_lex_state = 3}, + [1849] = {.lex_state = 96, .external_lex_state = 15}, + [1850] = {.lex_state = 96, .external_lex_state = 15}, + [1851] = {.lex_state = 119, .external_lex_state = 7}, + [1852] = {.lex_state = 96, .external_lex_state = 15}, + [1853] = {.lex_state = 96, .external_lex_state = 15}, + [1854] = {.lex_state = 96, .external_lex_state = 15}, + [1855] = {.lex_state = 119, .external_lex_state = 7}, + [1856] = {.lex_state = 96, .external_lex_state = 15}, + [1857] = {.lex_state = 96, .external_lex_state = 15}, + [1858] = {.lex_state = 96, .external_lex_state = 15}, + [1859] = {.lex_state = 226, .external_lex_state = 15}, + [1860] = {.lex_state = 96, .external_lex_state = 15}, + [1861] = {.lex_state = 96, .external_lex_state = 15}, + [1862] = {.lex_state = 226, .external_lex_state = 15}, + [1863] = {.lex_state = 226, .external_lex_state = 15}, + [1864] = {.lex_state = 96, .external_lex_state = 15}, + [1865] = {.lex_state = 230, .external_lex_state = 15}, + [1866] = {.lex_state = 230, .external_lex_state = 15}, + [1867] = {.lex_state = 96, .external_lex_state = 15}, + [1868] = {.lex_state = 226, .external_lex_state = 15}, + [1869] = {.lex_state = 226, .external_lex_state = 15}, + [1870] = {.lex_state = 116, .external_lex_state = 12}, + [1871] = {.lex_state = 226, .external_lex_state = 9}, + [1872] = {.lex_state = 226, .external_lex_state = 15}, + [1873] = {.lex_state = 228, .external_lex_state = 8}, + [1874] = {.lex_state = 226, .external_lex_state = 3}, + [1875] = {.lex_state = 226, .external_lex_state = 15}, + [1876] = {.lex_state = 226, .external_lex_state = 15}, + [1877] = {.lex_state = 228, .external_lex_state = 8}, + [1878] = {.lex_state = 226, .external_lex_state = 15}, + [1879] = {.lex_state = 226, .external_lex_state = 15}, + [1880] = {.lex_state = 226, .external_lex_state = 15}, + [1881] = {.lex_state = 226, .external_lex_state = 15}, + [1882] = {.lex_state = 226, .external_lex_state = 15}, + [1883] = {.lex_state = 228, .external_lex_state = 3}, + [1884] = {.lex_state = 228, .external_lex_state = 3}, + [1885] = {.lex_state = 126, .external_lex_state = 2}, + [1886] = {.lex_state = 228, .external_lex_state = 8}, + [1887] = {.lex_state = 226, .external_lex_state = 15}, + [1888] = {.lex_state = 226, .external_lex_state = 15}, + [1889] = {.lex_state = 94, .external_lex_state = 9}, + [1890] = {.lex_state = 226, .external_lex_state = 15}, + [1891] = {.lex_state = 226, .external_lex_state = 15}, + [1892] = {.lex_state = 226, .external_lex_state = 9}, + [1893] = {.lex_state = 226, .external_lex_state = 15}, + [1894] = {.lex_state = 226, .external_lex_state = 3}, + [1895] = {.lex_state = 226, .external_lex_state = 15}, + [1896] = {.lex_state = 226, .external_lex_state = 15}, + [1897] = {.lex_state = 226, .external_lex_state = 3}, + [1898] = {.lex_state = 226, .external_lex_state = 15}, + [1899] = {.lex_state = 126, .external_lex_state = 2}, + [1900] = {.lex_state = 226, .external_lex_state = 15}, + [1901] = {.lex_state = 226, .external_lex_state = 15}, + [1902] = {.lex_state = 226, .external_lex_state = 15}, + [1903] = {.lex_state = 226, .external_lex_state = 15}, + [1904] = {.lex_state = 226, .external_lex_state = 15}, + [1905] = {.lex_state = 228, .external_lex_state = 3}, + [1906] = {.lex_state = 228, .external_lex_state = 3}, + [1907] = {.lex_state = 226, .external_lex_state = 15}, + [1908] = {.lex_state = 226, .external_lex_state = 15}, + [1909] = {.lex_state = 226, .external_lex_state = 9}, + [1910] = {.lex_state = 226, .external_lex_state = 3}, + [1911] = {.lex_state = 226, .external_lex_state = 3}, + [1912] = {.lex_state = 116, .external_lex_state = 12}, + [1913] = {.lex_state = 118, .external_lex_state = 12}, + [1914] = {.lex_state = 226, .external_lex_state = 8}, + [1915] = {.lex_state = 116, .external_lex_state = 12}, + [1916] = {.lex_state = 116, .external_lex_state = 12}, + [1917] = {.lex_state = 119, .external_lex_state = 14}, + [1918] = {.lex_state = 116, .external_lex_state = 12}, + [1919] = {.lex_state = 116, .external_lex_state = 12}, + [1920] = {.lex_state = 116, .external_lex_state = 12}, + [1921] = {.lex_state = 116, .external_lex_state = 12}, + [1922] = {.lex_state = 226, .external_lex_state = 3}, + [1923] = {.lex_state = 226, .external_lex_state = 3}, + [1924] = {.lex_state = 226, .external_lex_state = 3}, + [1925] = {.lex_state = 226, .external_lex_state = 3}, + [1926] = {.lex_state = 226, .external_lex_state = 3}, + [1927] = {.lex_state = 226, .external_lex_state = 9}, + [1928] = {.lex_state = 118, .external_lex_state = 12}, + [1929] = {.lex_state = 116, .external_lex_state = 12}, + [1930] = {.lex_state = 119, .external_lex_state = 14}, + [1931] = {.lex_state = 116, .external_lex_state = 12}, + [1932] = {.lex_state = 116, .external_lex_state = 12}, + [1933] = {.lex_state = 226, .external_lex_state = 3}, + [1934] = {.lex_state = 226, .external_lex_state = 3}, + [1935] = {.lex_state = 116, .external_lex_state = 12}, + [1936] = {.lex_state = 226, .external_lex_state = 3}, + [1937] = {.lex_state = 226, .external_lex_state = 3}, + [1938] = {.lex_state = 228, .external_lex_state = 8}, + [1939] = {.lex_state = 226, .external_lex_state = 3}, + [1940] = {.lex_state = 228, .external_lex_state = 8}, + [1941] = {.lex_state = 226, .external_lex_state = 3}, + [1942] = {.lex_state = 116, .external_lex_state = 12}, + [1943] = {.lex_state = 226, .external_lex_state = 3}, + [1944] = {.lex_state = 226, .external_lex_state = 9}, + [1945] = {.lex_state = 116, .external_lex_state = 12}, + [1946] = {.lex_state = 116, .external_lex_state = 12}, + [1947] = {.lex_state = 226, .external_lex_state = 3}, + [1948] = {.lex_state = 118, .external_lex_state = 12}, + [1949] = {.lex_state = 116, .external_lex_state = 12}, + [1950] = {.lex_state = 226, .external_lex_state = 3}, + [1951] = {.lex_state = 226, .external_lex_state = 3}, + [1952] = {.lex_state = 226, .external_lex_state = 9}, + [1953] = {.lex_state = 119, .external_lex_state = 14}, + [1954] = {.lex_state = 226, .external_lex_state = 3}, + [1955] = {.lex_state = 116, .external_lex_state = 12}, + [1956] = {.lex_state = 116, .external_lex_state = 12}, + [1957] = {.lex_state = 226, .external_lex_state = 3}, + [1958] = {.lex_state = 228, .external_lex_state = 8}, + [1959] = {.lex_state = 230, .external_lex_state = 9}, + [1960] = {.lex_state = 119, .external_lex_state = 14}, + [1961] = {.lex_state = 116, .external_lex_state = 12}, + [1962] = {.lex_state = 119, .external_lex_state = 14}, + [1963] = {.lex_state = 226, .external_lex_state = 9}, + [1964] = {.lex_state = 226, .external_lex_state = 3}, + [1965] = {.lex_state = 226, .external_lex_state = 3}, + [1966] = {.lex_state = 226, .external_lex_state = 3}, + [1967] = {.lex_state = 226, .external_lex_state = 3}, + [1968] = {.lex_state = 226, .external_lex_state = 3}, + [1969] = {.lex_state = 226, .external_lex_state = 3}, + [1970] = {.lex_state = 119, .external_lex_state = 14}, + [1971] = {.lex_state = 226, .external_lex_state = 3}, + [1972] = {.lex_state = 226, .external_lex_state = 3}, + [1973] = {.lex_state = 226, .external_lex_state = 3}, + [1974] = {.lex_state = 226, .external_lex_state = 3}, + [1975] = {.lex_state = 116, .external_lex_state = 12}, + [1976] = {.lex_state = 226, .external_lex_state = 8}, + [1977] = {.lex_state = 116, .external_lex_state = 12}, + [1978] = {.lex_state = 116, .external_lex_state = 12}, + [1979] = {.lex_state = 116, .external_lex_state = 12}, + [1980] = {.lex_state = 116, .external_lex_state = 12}, + [1981] = {.lex_state = 96, .external_lex_state = 9}, + [1982] = {.lex_state = 116, .external_lex_state = 12}, + [1983] = {.lex_state = 116, .external_lex_state = 12}, + [1984] = {.lex_state = 230, .external_lex_state = 15}, + [1985] = {.lex_state = 116, .external_lex_state = 12}, + [1986] = {.lex_state = 230, .external_lex_state = 15}, + [1987] = {.lex_state = 116, .external_lex_state = 12}, + [1988] = {.lex_state = 230, .external_lex_state = 15}, + [1989] = {.lex_state = 230, .external_lex_state = 15}, + [1990] = {.lex_state = 230, .external_lex_state = 15}, + [1991] = {.lex_state = 230, .external_lex_state = 15}, + [1992] = {.lex_state = 96, .external_lex_state = 9}, + [1993] = {.lex_state = 230, .external_lex_state = 15}, + [1994] = {.lex_state = 116, .external_lex_state = 12}, + [1995] = {.lex_state = 116, .external_lex_state = 12}, + [1996] = {.lex_state = 96, .external_lex_state = 9}, + [1997] = {.lex_state = 230, .external_lex_state = 15}, + [1998] = {.lex_state = 230, .external_lex_state = 15}, + [1999] = {.lex_state = 118, .external_lex_state = 12}, + [2000] = {.lex_state = 230, .external_lex_state = 15}, + [2001] = {.lex_state = 228, .external_lex_state = 8}, + [2002] = {.lex_state = 230, .external_lex_state = 15}, + [2003] = {.lex_state = 230, .external_lex_state = 9}, + [2004] = {.lex_state = 230, .external_lex_state = 15}, + [2005] = {.lex_state = 230, .external_lex_state = 15}, + [2006] = {.lex_state = 230, .external_lex_state = 15}, + [2007] = {.lex_state = 230, .external_lex_state = 15}, + [2008] = {.lex_state = 230, .external_lex_state = 15}, + [2009] = {.lex_state = 230, .external_lex_state = 15}, + [2010] = {.lex_state = 230, .external_lex_state = 15}, + [2011] = {.lex_state = 116, .external_lex_state = 12}, + [2012] = {.lex_state = 96, .external_lex_state = 9}, + [2013] = {.lex_state = 230, .external_lex_state = 15}, + [2014] = {.lex_state = 230, .external_lex_state = 15}, + [2015] = {.lex_state = 230, .external_lex_state = 15}, + [2016] = {.lex_state = 226, .external_lex_state = 9}, + [2017] = {.lex_state = 230, .external_lex_state = 15}, + [2018] = {.lex_state = 230, .external_lex_state = 15}, + [2019] = {.lex_state = 230, .external_lex_state = 15}, + [2020] = {.lex_state = 230, .external_lex_state = 15}, + [2021] = {.lex_state = 116, .external_lex_state = 12}, + [2022] = {.lex_state = 226, .external_lex_state = 9}, + [2023] = {.lex_state = 116, .external_lex_state = 12}, + [2024] = {.lex_state = 230, .external_lex_state = 15}, + [2025] = {.lex_state = 230, .external_lex_state = 15}, + [2026] = {.lex_state = 116, .external_lex_state = 12}, + [2027] = {.lex_state = 116, .external_lex_state = 12}, + [2028] = {.lex_state = 116, .external_lex_state = 12}, + [2029] = {.lex_state = 230, .external_lex_state = 15}, + [2030] = {.lex_state = 230, .external_lex_state = 15}, + [2031] = {.lex_state = 230, .external_lex_state = 15}, + [2032] = {.lex_state = 230, .external_lex_state = 15}, + [2033] = {.lex_state = 230, .external_lex_state = 15}, + [2034] = {.lex_state = 228, .external_lex_state = 8}, + [2035] = {.lex_state = 230, .external_lex_state = 15}, + [2036] = {.lex_state = 230, .external_lex_state = 15}, + [2037] = {.lex_state = 230, .external_lex_state = 15}, + [2038] = {.lex_state = 230, .external_lex_state = 15}, + [2039] = {.lex_state = 230, .external_lex_state = 9}, + [2040] = {.lex_state = 230, .external_lex_state = 15}, + [2041] = {.lex_state = 230, .external_lex_state = 15}, + [2042] = {.lex_state = 230, .external_lex_state = 15}, + [2043] = {.lex_state = 230, .external_lex_state = 15}, + [2044] = {.lex_state = 230, .external_lex_state = 15}, + [2045] = {.lex_state = 230, .external_lex_state = 15}, + [2046] = {.lex_state = 230, .external_lex_state = 15}, + [2047] = {.lex_state = 230, .external_lex_state = 15}, + [2048] = {.lex_state = 230, .external_lex_state = 15}, + [2049] = {.lex_state = 230, .external_lex_state = 15}, + [2050] = {.lex_state = 230, .external_lex_state = 15}, + [2051] = {.lex_state = 116, .external_lex_state = 12}, + [2052] = {.lex_state = 230, .external_lex_state = 15}, + [2053] = {.lex_state = 116, .external_lex_state = 12}, + [2054] = {.lex_state = 116, .external_lex_state = 12}, + [2055] = {.lex_state = 116, .external_lex_state = 12}, + [2056] = {.lex_state = 116, .external_lex_state = 12}, + [2057] = {.lex_state = 118, .external_lex_state = 12}, + [2058] = {.lex_state = 118, .external_lex_state = 12}, + [2059] = {.lex_state = 118, .external_lex_state = 12}, + [2060] = {.lex_state = 116, .external_lex_state = 12}, + [2061] = {.lex_state = 230, .external_lex_state = 15}, + [2062] = {.lex_state = 230, .external_lex_state = 15}, + [2063] = {.lex_state = 230, .external_lex_state = 15}, + [2064] = {.lex_state = 116, .external_lex_state = 12}, + [2065] = {.lex_state = 118, .external_lex_state = 12}, + [2066] = {.lex_state = 118, .external_lex_state = 12}, + [2067] = {.lex_state = 230, .external_lex_state = 15}, + [2068] = {.lex_state = 116, .external_lex_state = 12}, + [2069] = {.lex_state = 226, .external_lex_state = 9}, + [2070] = {.lex_state = 80, .external_lex_state = 8}, + [2071] = {.lex_state = 230, .external_lex_state = 15}, + [2072] = {.lex_state = 230, .external_lex_state = 15}, + [2073] = {.lex_state = 116, .external_lex_state = 12}, + [2074] = {.lex_state = 116, .external_lex_state = 12}, + [2075] = {.lex_state = 116, .external_lex_state = 12}, + [2076] = {.lex_state = 116, .external_lex_state = 12}, + [2077] = {.lex_state = 118, .external_lex_state = 12}, + [2078] = {.lex_state = 119, .external_lex_state = 14}, + [2079] = {.lex_state = 116, .external_lex_state = 12}, + [2080] = {.lex_state = 226, .external_lex_state = 3}, + [2081] = {.lex_state = 116, .external_lex_state = 12}, + [2082] = {.lex_state = 226, .external_lex_state = 3}, + [2083] = {.lex_state = 226, .external_lex_state = 9}, + [2084] = {.lex_state = 226, .external_lex_state = 3}, + [2085] = {.lex_state = 226, .external_lex_state = 3}, + [2086] = {.lex_state = 226, .external_lex_state = 3}, + [2087] = {.lex_state = 116, .external_lex_state = 12}, + [2088] = {.lex_state = 116, .external_lex_state = 12}, + [2089] = {.lex_state = 116, .external_lex_state = 12}, + [2090] = {.lex_state = 116, .external_lex_state = 12}, + [2091] = {.lex_state = 116, .external_lex_state = 12}, + [2092] = {.lex_state = 116, .external_lex_state = 12}, + [2093] = {.lex_state = 118, .external_lex_state = 12}, + [2094] = {.lex_state = 116, .external_lex_state = 12}, + [2095] = {.lex_state = 116, .external_lex_state = 12}, + [2096] = {.lex_state = 226, .external_lex_state = 3}, + [2097] = {.lex_state = 230, .external_lex_state = 9}, + [2098] = {.lex_state = 116, .external_lex_state = 12}, + [2099] = {.lex_state = 226, .external_lex_state = 3}, + [2100] = {.lex_state = 118, .external_lex_state = 12}, + [2101] = {.lex_state = 226, .external_lex_state = 3}, + [2102] = {.lex_state = 116, .external_lex_state = 12}, + [2103] = {.lex_state = 228, .external_lex_state = 8}, + [2104] = {.lex_state = 226, .external_lex_state = 3}, + [2105] = {.lex_state = 226, .external_lex_state = 3}, + [2106] = {.lex_state = 228, .external_lex_state = 8}, + [2107] = {.lex_state = 226, .external_lex_state = 3}, + [2108] = {.lex_state = 116, .external_lex_state = 12}, + [2109] = {.lex_state = 226, .external_lex_state = 8}, + [2110] = {.lex_state = 226, .external_lex_state = 3}, + [2111] = {.lex_state = 116, .external_lex_state = 12}, + [2112] = {.lex_state = 226, .external_lex_state = 3}, + [2113] = {.lex_state = 226, .external_lex_state = 8}, + [2114] = {.lex_state = 226, .external_lex_state = 3}, + [2115] = {.lex_state = 226, .external_lex_state = 3}, + [2116] = {.lex_state = 226, .external_lex_state = 3}, + [2117] = {.lex_state = 226, .external_lex_state = 3}, + [2118] = {.lex_state = 226, .external_lex_state = 3}, + [2119] = {.lex_state = 116, .external_lex_state = 12}, + [2120] = {.lex_state = 119, .external_lex_state = 14}, + [2121] = {.lex_state = 116, .external_lex_state = 12}, + [2122] = {.lex_state = 226, .external_lex_state = 3}, + [2123] = {.lex_state = 226, .external_lex_state = 3}, + [2124] = {.lex_state = 226, .external_lex_state = 3}, + [2125] = {.lex_state = 226, .external_lex_state = 3}, + [2126] = {.lex_state = 116, .external_lex_state = 12}, + [2127] = {.lex_state = 226, .external_lex_state = 3}, + [2128] = {.lex_state = 226, .external_lex_state = 3}, + [2129] = {.lex_state = 226, .external_lex_state = 3}, + [2130] = {.lex_state = 228, .external_lex_state = 8}, + [2131] = {.lex_state = 226, .external_lex_state = 3}, + [2132] = {.lex_state = 226, .external_lex_state = 3}, + [2133] = {.lex_state = 226, .external_lex_state = 3}, + [2134] = {.lex_state = 226, .external_lex_state = 3}, + [2135] = {.lex_state = 230, .external_lex_state = 15}, + [2136] = {.lex_state = 116, .external_lex_state = 12}, + [2137] = {.lex_state = 116, .external_lex_state = 12}, + [2138] = {.lex_state = 119, .external_lex_state = 14}, + [2139] = {.lex_state = 119, .external_lex_state = 14}, + [2140] = {.lex_state = 119, .external_lex_state = 14}, + [2141] = {.lex_state = 230, .external_lex_state = 15}, + [2142] = {.lex_state = 230, .external_lex_state = 9}, + [2143] = {.lex_state = 230, .external_lex_state = 9}, + [2144] = {.lex_state = 226, .external_lex_state = 8}, + [2145] = {.lex_state = 86, .external_lex_state = 19}, + [2146] = {.lex_state = 46, .external_lex_state = 8}, + [2147] = {.lex_state = 86, .external_lex_state = 19}, + [2148] = {.lex_state = 230, .external_lex_state = 9}, + [2149] = {.lex_state = 46, .external_lex_state = 8}, + [2150] = {.lex_state = 230, .external_lex_state = 9}, + [2151] = {.lex_state = 230, .external_lex_state = 9}, + [2152] = {.lex_state = 86, .external_lex_state = 19}, + [2153] = {.lex_state = 86, .external_lex_state = 19}, + [2154] = {.lex_state = 226, .external_lex_state = 8}, + [2155] = {.lex_state = 230, .external_lex_state = 9}, + [2156] = {.lex_state = 86, .external_lex_state = 19}, + [2157] = {.lex_state = 106, .external_lex_state = 16}, + [2158] = {.lex_state = 86, .external_lex_state = 19}, + [2159] = {.lex_state = 86, .external_lex_state = 19}, + [2160] = {.lex_state = 106, .external_lex_state = 16}, + [2161] = {.lex_state = 230, .external_lex_state = 9}, + [2162] = {.lex_state = 230, .external_lex_state = 9}, + [2163] = {.lex_state = 86, .external_lex_state = 19}, + [2164] = {.lex_state = 86, .external_lex_state = 19}, + [2165] = {.lex_state = 47, .external_lex_state = 8}, + [2166] = {.lex_state = 107, .external_lex_state = 2}, + [2167] = {.lex_state = 107, .external_lex_state = 2}, + [2168] = {.lex_state = 220, .external_lex_state = 8}, + [2169] = {.lex_state = 47, .external_lex_state = 8}, + [2170] = {.lex_state = 220, .external_lex_state = 8}, + [2171] = {.lex_state = 220, .external_lex_state = 8}, + [2172] = {.lex_state = 220, .external_lex_state = 8}, + [2173] = {.lex_state = 113, .external_lex_state = 20}, + [2174] = {.lex_state = 113}, + [2175] = {.lex_state = 113}, + [2176] = {.lex_state = 113}, + [2177] = {.lex_state = 113}, + [2178] = {.lex_state = 113}, + [2179] = {.lex_state = 113}, + [2180] = {.lex_state = 113, .external_lex_state = 20}, + [2181] = {.lex_state = 113}, + [2182] = {.lex_state = 113}, + [2183] = {.lex_state = 113}, + [2184] = {.lex_state = 113}, + [2185] = {.lex_state = 113, .external_lex_state = 20}, + [2186] = {.lex_state = 113}, + [2187] = {.lex_state = 113}, + [2188] = {.lex_state = 113}, + [2189] = {.lex_state = 113, .external_lex_state = 20}, + [2190] = {.lex_state = 113}, + [2191] = {.lex_state = 113}, + [2192] = {.lex_state = 113, .external_lex_state = 20}, + [2193] = {.lex_state = 113}, + [2194] = {.lex_state = 113}, + [2195] = {.lex_state = 113, .external_lex_state = 20}, + [2196] = {.lex_state = 113}, + [2197] = {.lex_state = 113}, + [2198] = {.lex_state = 98, .external_lex_state = 19}, + [2199] = {.lex_state = 113}, + [2200] = {.lex_state = 113}, + [2201] = {.lex_state = 113}, + [2202] = {.lex_state = 113}, + [2203] = {.lex_state = 113}, + [2204] = {.lex_state = 98, .external_lex_state = 19}, + [2205] = {.lex_state = 98, .external_lex_state = 19}, + [2206] = {.lex_state = 113}, + [2207] = {.lex_state = 98, .external_lex_state = 19}, + [2208] = {.lex_state = 98, .external_lex_state = 19}, + [2209] = {.lex_state = 113}, + [2210] = {.lex_state = 113}, + [2211] = {.lex_state = 113}, + [2212] = {.lex_state = 113}, + [2213] = {.lex_state = 113}, + [2214] = {.lex_state = 113}, + [2215] = {.lex_state = 113}, + [2216] = {.lex_state = 113}, + [2217] = {.lex_state = 98, .external_lex_state = 19}, + [2218] = {.lex_state = 113}, + [2219] = {.lex_state = 113}, + [2220] = {.lex_state = 113}, + [2221] = {.lex_state = 113}, + [2222] = {.lex_state = 113}, + [2223] = {.lex_state = 113}, + [2224] = {.lex_state = 113}, + [2225] = {.lex_state = 113}, + [2226] = {.lex_state = 113}, + [2227] = {.lex_state = 113}, + [2228] = {.lex_state = 98, .external_lex_state = 19}, + [2229] = {.lex_state = 98, .external_lex_state = 19}, + [2230] = {.lex_state = 113}, + [2231] = {.lex_state = 113}, + [2232] = {.lex_state = 113}, + [2233] = {.lex_state = 98, .external_lex_state = 19}, + [2234] = {.lex_state = 113}, + [2235] = {.lex_state = 113}, + [2236] = {.lex_state = 98, .external_lex_state = 19}, + [2237] = {.lex_state = 113}, + [2238] = {.lex_state = 113}, + [2239] = {.lex_state = 113}, + [2240] = {.lex_state = 113}, + [2241] = {.lex_state = 113}, + [2242] = {.lex_state = 113}, + [2243] = {.lex_state = 113}, + [2244] = {.lex_state = 113}, + [2245] = {.lex_state = 113}, + [2246] = {.lex_state = 113}, + [2247] = {.lex_state = 113}, + [2248] = {.lex_state = 113}, + [2249] = {.lex_state = 98, .external_lex_state = 19}, + [2250] = {.lex_state = 113}, + [2251] = {.lex_state = 98, .external_lex_state = 19}, + [2252] = {.lex_state = 124, .external_lex_state = 21}, + [2253] = {.lex_state = 123, .external_lex_state = 21}, + [2254] = {.lex_state = 123, .external_lex_state = 21}, + [2255] = {.lex_state = 124, .external_lex_state = 21}, + [2256] = {.lex_state = 124, .external_lex_state = 21}, + [2257] = {.lex_state = 124, .external_lex_state = 21}, + [2258] = {.lex_state = 123, .external_lex_state = 21}, + [2259] = {.lex_state = 124, .external_lex_state = 21}, + [2260] = {.lex_state = 123, .external_lex_state = 21}, + [2261] = {.lex_state = 124, .external_lex_state = 21}, + [2262] = {.lex_state = 124, .external_lex_state = 21}, + [2263] = {.lex_state = 123, .external_lex_state = 16}, + [2264] = {.lex_state = 124, .external_lex_state = 21}, + [2265] = {.lex_state = 124, .external_lex_state = 21}, + [2266] = {.lex_state = 124, .external_lex_state = 21}, + [2267] = {.lex_state = 124, .external_lex_state = 21}, + [2268] = {.lex_state = 124, .external_lex_state = 21}, + [2269] = {.lex_state = 124, .external_lex_state = 21}, + [2270] = {.lex_state = 124, .external_lex_state = 21}, + [2271] = {.lex_state = 124, .external_lex_state = 21}, + [2272] = {.lex_state = 124, .external_lex_state = 21}, + [2273] = {.lex_state = 124, .external_lex_state = 21}, + [2274] = {.lex_state = 124, .external_lex_state = 21}, + [2275] = {.lex_state = 124, .external_lex_state = 21}, + [2276] = {.lex_state = 124, .external_lex_state = 21}, + [2277] = {.lex_state = 124, .external_lex_state = 21}, + [2278] = {.lex_state = 123, .external_lex_state = 16}, + [2279] = {.lex_state = 124, .external_lex_state = 21}, + [2280] = {.lex_state = 124, .external_lex_state = 21}, + [2281] = {.lex_state = 124, .external_lex_state = 21}, + [2282] = {.lex_state = 124, .external_lex_state = 21}, + [2283] = {.lex_state = 124, .external_lex_state = 21}, + [2284] = {.lex_state = 124, .external_lex_state = 21}, + [2285] = {.lex_state = 124, .external_lex_state = 16}, + [2286] = {.lex_state = 124, .external_lex_state = 21}, + [2287] = {.lex_state = 124, .external_lex_state = 21}, + [2288] = {.lex_state = 124, .external_lex_state = 21}, + [2289] = {.lex_state = 124, .external_lex_state = 16}, + [2290] = {.lex_state = 124, .external_lex_state = 21}, + [2291] = {.lex_state = 124, .external_lex_state = 21}, + [2292] = {.lex_state = 124, .external_lex_state = 21}, + [2293] = {.lex_state = 124, .external_lex_state = 21}, + [2294] = {.lex_state = 123, .external_lex_state = 16}, + [2295] = {.lex_state = 123, .external_lex_state = 16}, + [2296] = {.lex_state = 99, .external_lex_state = 19}, + [2297] = {.lex_state = 50, .external_lex_state = 8}, + [2298] = {.lex_state = 124, .external_lex_state = 16}, + [2299] = {.lex_state = 50, .external_lex_state = 8}, + [2300] = {.lex_state = 124, .external_lex_state = 16}, + [2301] = {.lex_state = 127}, + [2302] = {.lex_state = 127}, + [2303] = {.lex_state = 127}, + [2304] = {.lex_state = 99, .external_lex_state = 19}, + [2305] = {.lex_state = 50, .external_lex_state = 8}, + [2306] = {.lex_state = 127}, + [2307] = {.lex_state = 124, .external_lex_state = 16}, + [2308] = {.lex_state = 50, .external_lex_state = 8}, + [2309] = {.lex_state = 127}, + [2310] = {.lex_state = 99, .external_lex_state = 19}, + [2311] = {.lex_state = 127}, + [2312] = {.lex_state = 127}, + [2313] = {.lex_state = 127}, + [2314] = {.lex_state = 127}, + [2315] = {.lex_state = 99, .external_lex_state = 19}, + [2316] = {.lex_state = 50, .external_lex_state = 8}, + [2317] = {.lex_state = 127}, + [2318] = {.lex_state = 127}, + [2319] = {.lex_state = 127}, + [2320] = {.lex_state = 95, .external_lex_state = 19}, + [2321] = {.lex_state = 126, .external_lex_state = 2}, + [2322] = {.lex_state = 50, .external_lex_state = 8}, + [2323] = {.lex_state = 95, .external_lex_state = 19}, + [2324] = {.lex_state = 126, .external_lex_state = 22}, + [2325] = {.lex_state = 129, .external_lex_state = 23}, + [2326] = {.lex_state = 126}, + [2327] = {.lex_state = 126}, + [2328] = {.lex_state = 50, .external_lex_state = 8}, + [2329] = {.lex_state = 50, .external_lex_state = 8}, + [2330] = {.lex_state = 221, .external_lex_state = 8}, + [2331] = {.lex_state = 126, .external_lex_state = 22}, + [2332] = {.lex_state = 126}, + [2333] = {.lex_state = 221, .external_lex_state = 8}, + [2334] = {.lex_state = 129, .external_lex_state = 23}, + [2335] = {.lex_state = 126}, + [2336] = {.lex_state = 126}, + [2337] = {.lex_state = 126}, + [2338] = {.lex_state = 126}, + [2339] = {.lex_state = 126, .external_lex_state = 22}, + [2340] = {.lex_state = 129, .external_lex_state = 23}, + [2341] = {.lex_state = 126}, + [2342] = {.lex_state = 126, .external_lex_state = 22}, + [2343] = {.lex_state = 129, .external_lex_state = 23}, + [2344] = {.lex_state = 129, .external_lex_state = 23}, + [2345] = {.lex_state = 50, .external_lex_state = 8}, + [2346] = {.lex_state = 129, .external_lex_state = 23}, + [2347] = {.lex_state = 126}, + [2348] = {.lex_state = 126}, + [2349] = {.lex_state = 50, .external_lex_state = 8}, + [2350] = {.lex_state = 50, .external_lex_state = 8}, + [2351] = {.lex_state = 50, .external_lex_state = 8}, + [2352] = {.lex_state = 129, .external_lex_state = 23}, + [2353] = {.lex_state = 221, .external_lex_state = 8}, + [2354] = {.lex_state = 126, .external_lex_state = 22}, + [2355] = {.lex_state = 126}, + [2356] = {.lex_state = 126}, + [2357] = {.lex_state = 129, .external_lex_state = 23}, + [2358] = {.lex_state = 126, .external_lex_state = 22}, + [2359] = {.lex_state = 126}, + [2360] = {.lex_state = 129, .external_lex_state = 23}, + [2361] = {.lex_state = 129, .external_lex_state = 23}, + [2362] = {.lex_state = 126}, + [2363] = {.lex_state = 126}, + [2364] = {.lex_state = 126, .external_lex_state = 22}, + [2365] = {.lex_state = 126, .external_lex_state = 22}, + [2366] = {.lex_state = 50, .external_lex_state = 3}, + [2367] = {.lex_state = 126}, + [2368] = {.lex_state = 126}, + [2369] = {.lex_state = 126}, + [2370] = {.lex_state = 50, .external_lex_state = 8}, + [2371] = {.lex_state = 126, .external_lex_state = 22}, + [2372] = {.lex_state = 221, .external_lex_state = 8}, + [2373] = {.lex_state = 221, .external_lex_state = 8}, + [2374] = {.lex_state = 126, .external_lex_state = 22}, + [2375] = {.lex_state = 50, .external_lex_state = 3}, + [2376] = {.lex_state = 126, .external_lex_state = 2}, + [2377] = {.lex_state = 50, .external_lex_state = 8}, + [2378] = {.lex_state = 126, .external_lex_state = 22}, + [2379] = {.lex_state = 126, .external_lex_state = 22}, + [2380] = {.lex_state = 126, .external_lex_state = 22}, + [2381] = {.lex_state = 50, .external_lex_state = 3}, + [2382] = {.lex_state = 126, .external_lex_state = 22}, + [2383] = {.lex_state = 126, .external_lex_state = 22}, + [2384] = {.lex_state = 50, .external_lex_state = 3}, + [2385] = {.lex_state = 50, .external_lex_state = 3}, + [2386] = {.lex_state = 50, .external_lex_state = 8}, + [2387] = {.lex_state = 50, .external_lex_state = 3}, + [2388] = {.lex_state = 126, .external_lex_state = 22}, + [2389] = {.lex_state = 221, .external_lex_state = 8}, + [2390] = {.lex_state = 50, .external_lex_state = 3}, + [2391] = {.lex_state = 126, .external_lex_state = 22}, + [2392] = {.lex_state = 221, .external_lex_state = 8}, + [2393] = {.lex_state = 126, .external_lex_state = 22}, + [2394] = {.lex_state = 126, .external_lex_state = 2}, + [2395] = {.lex_state = 126, .external_lex_state = 22}, + [2396] = {.lex_state = 221, .external_lex_state = 8}, + [2397] = {.lex_state = 221, .external_lex_state = 8}, + [2398] = {.lex_state = 126, .external_lex_state = 22}, + [2399] = {.lex_state = 126, .external_lex_state = 22}, + [2400] = {.lex_state = 126, .external_lex_state = 22}, + [2401] = {.lex_state = 126, .external_lex_state = 22}, + [2402] = {.lex_state = 126, .external_lex_state = 22}, + [2403] = {.lex_state = 126, .external_lex_state = 2}, + [2404] = {.lex_state = 126, .external_lex_state = 22}, + [2405] = {.lex_state = 126, .external_lex_state = 22}, + [2406] = {.lex_state = 50, .external_lex_state = 3}, + [2407] = {.lex_state = 50, .external_lex_state = 3}, + [2408] = {.lex_state = 126, .external_lex_state = 22}, + [2409] = {.lex_state = 126, .external_lex_state = 22}, + [2410] = {.lex_state = 221, .external_lex_state = 8}, + [2411] = {.lex_state = 126, .external_lex_state = 22}, + [2412] = {.lex_state = 126, .external_lex_state = 22}, + [2413] = {.lex_state = 50, .external_lex_state = 3}, + [2414] = {.lex_state = 126, .external_lex_state = 22}, + [2415] = {.lex_state = 126, .external_lex_state = 22}, + [2416] = {.lex_state = 50, .external_lex_state = 8}, + [2417] = {.lex_state = 221, .external_lex_state = 8}, + [2418] = {.lex_state = 126, .external_lex_state = 22}, + [2419] = {.lex_state = 126}, + [2420] = {.lex_state = 126, .external_lex_state = 22}, + [2421] = {.lex_state = 50, .external_lex_state = 3}, + [2422] = {.lex_state = 126, .external_lex_state = 22}, + [2423] = {.lex_state = 221, .external_lex_state = 8}, + [2424] = {.lex_state = 221, .external_lex_state = 3}, + [2425] = {.lex_state = 50, .external_lex_state = 3}, + [2426] = {.lex_state = 221, .external_lex_state = 8}, + [2427] = {.lex_state = 50, .external_lex_state = 8}, + [2428] = {.lex_state = 126, .external_lex_state = 22}, + [2429] = {.lex_state = 126, .external_lex_state = 22}, + [2430] = {.lex_state = 126, .external_lex_state = 22}, + [2431] = {.lex_state = 221, .external_lex_state = 8}, + [2432] = {.lex_state = 221, .external_lex_state = 8}, + [2433] = {.lex_state = 50, .external_lex_state = 3}, + [2434] = {.lex_state = 126, .external_lex_state = 2}, + [2435] = {.lex_state = 126, .external_lex_state = 2}, + [2436] = {.lex_state = 126}, + [2437] = {.lex_state = 126, .external_lex_state = 2}, + [2438] = {.lex_state = 126}, + [2439] = {.lex_state = 126, .external_lex_state = 2}, + [2440] = {.lex_state = 126, .external_lex_state = 2}, + [2441] = {.lex_state = 221, .external_lex_state = 8}, + [2442] = {.lex_state = 221, .external_lex_state = 8}, + [2443] = {.lex_state = 126}, + [2444] = {.lex_state = 221, .external_lex_state = 8}, + [2445] = {.lex_state = 126}, + [2446] = {.lex_state = 126}, + [2447] = {.lex_state = 221, .external_lex_state = 3}, + [2448] = {.lex_state = 126}, + [2449] = {.lex_state = 126, .external_lex_state = 2}, + [2450] = {.lex_state = 50, .external_lex_state = 3}, + [2451] = {.lex_state = 126, .external_lex_state = 2}, + [2452] = {.lex_state = 50, .external_lex_state = 3}, + [2453] = {.lex_state = 221, .external_lex_state = 3}, + [2454] = {.lex_state = 50, .external_lex_state = 3}, + [2455] = {.lex_state = 50, .external_lex_state = 3}, + [2456] = {.lex_state = 126, .external_lex_state = 2}, + [2457] = {.lex_state = 126, .external_lex_state = 2}, + [2458] = {.lex_state = 126, .external_lex_state = 2}, + [2459] = {.lex_state = 126}, + [2460] = {.lex_state = 126}, + [2461] = {.lex_state = 126}, + [2462] = {.lex_state = 126, .external_lex_state = 2}, + [2463] = {.lex_state = 221, .external_lex_state = 3}, + [2464] = {.lex_state = 126, .external_lex_state = 2}, + [2465] = {.lex_state = 221, .external_lex_state = 3}, + [2466] = {.lex_state = 50, .external_lex_state = 3}, + [2467] = {.lex_state = 126, .external_lex_state = 2}, + [2468] = {.lex_state = 126}, + [2469] = {.lex_state = 50, .external_lex_state = 3}, + [2470] = {.lex_state = 221, .external_lex_state = 3}, + [2471] = {.lex_state = 50, .external_lex_state = 3}, + [2472] = {.lex_state = 126, .external_lex_state = 2}, + [2473] = {.lex_state = 126}, + [2474] = {.lex_state = 126, .external_lex_state = 2}, + [2475] = {.lex_state = 126, .external_lex_state = 2}, + [2476] = {.lex_state = 50, .external_lex_state = 3}, + [2477] = {.lex_state = 126, .external_lex_state = 2}, + [2478] = {.lex_state = 126}, + [2479] = {.lex_state = 50, .external_lex_state = 3}, + [2480] = {.lex_state = 126}, + [2481] = {.lex_state = 50, .external_lex_state = 3}, + [2482] = {.lex_state = 126, .external_lex_state = 2}, + [2483] = {.lex_state = 221, .external_lex_state = 8}, + [2484] = {.lex_state = 126}, + [2485] = {.lex_state = 126, .external_lex_state = 2}, + [2486] = {.lex_state = 126}, + [2487] = {.lex_state = 126}, + [2488] = {.lex_state = 221, .external_lex_state = 3}, + [2489] = {.lex_state = 126, .external_lex_state = 2}, + [2490] = {.lex_state = 126}, + [2491] = {.lex_state = 126, .external_lex_state = 2}, + [2492] = {.lex_state = 126, .external_lex_state = 2}, + [2493] = {.lex_state = 126, .external_lex_state = 2}, + [2494] = {.lex_state = 126, .external_lex_state = 2}, + [2495] = {.lex_state = 221, .external_lex_state = 3}, + [2496] = {.lex_state = 126}, + [2497] = {.lex_state = 126, .external_lex_state = 2}, + [2498] = {.lex_state = 221, .external_lex_state = 8}, + [2499] = {.lex_state = 126, .external_lex_state = 2}, + [2500] = {.lex_state = 50, .external_lex_state = 3}, + [2501] = {.lex_state = 221, .external_lex_state = 8}, + [2502] = {.lex_state = 50, .external_lex_state = 3}, + [2503] = {.lex_state = 107}, + [2504] = {.lex_state = 50, .external_lex_state = 3}, + [2505] = {.lex_state = 50, .external_lex_state = 3}, + [2506] = {.lex_state = 126, .external_lex_state = 2}, + [2507] = {.lex_state = 107}, + [2508] = {.lex_state = 221, .external_lex_state = 8}, + [2509] = {.lex_state = 50, .external_lex_state = 3}, + [2510] = {.lex_state = 50, .external_lex_state = 3}, + [2511] = {.lex_state = 126, .external_lex_state = 2}, + [2512] = {.lex_state = 50, .external_lex_state = 3}, + [2513] = {.lex_state = 126, .external_lex_state = 2}, + [2514] = {.lex_state = 50, .external_lex_state = 8}, + [2515] = {.lex_state = 126, .external_lex_state = 2}, + [2516] = {.lex_state = 221, .external_lex_state = 3}, + [2517] = {.lex_state = 126, .external_lex_state = 2}, + [2518] = {.lex_state = 50, .external_lex_state = 3}, + [2519] = {.lex_state = 221, .external_lex_state = 8}, + [2520] = {.lex_state = 126, .external_lex_state = 2}, + [2521] = {.lex_state = 126, .external_lex_state = 2}, + [2522] = {.lex_state = 50, .external_lex_state = 3}, + [2523] = {.lex_state = 50, .external_lex_state = 3}, + [2524] = {.lex_state = 50, .external_lex_state = 3}, + [2525] = {.lex_state = 221, .external_lex_state = 3}, + [2526] = {.lex_state = 126}, + [2527] = {.lex_state = 126}, + [2528] = {.lex_state = 50, .external_lex_state = 3}, + [2529] = {.lex_state = 50, .external_lex_state = 3}, + [2530] = {.lex_state = 126, .external_lex_state = 2}, + [2531] = {.lex_state = 221, .external_lex_state = 3}, + [2532] = {.lex_state = 221, .external_lex_state = 8}, + [2533] = {.lex_state = 50, .external_lex_state = 3}, + [2534] = {.lex_state = 126, .external_lex_state = 2}, + [2535] = {.lex_state = 50, .external_lex_state = 3}, + [2536] = {.lex_state = 126, .external_lex_state = 2}, + [2537] = {.lex_state = 126}, + [2538] = {.lex_state = 50, .external_lex_state = 3}, + [2539] = {.lex_state = 50, .external_lex_state = 3}, + [2540] = {.lex_state = 50, .external_lex_state = 3}, + [2541] = {.lex_state = 50, .external_lex_state = 3}, + [2542] = {.lex_state = 50, .external_lex_state = 3}, + [2543] = {.lex_state = 221, .external_lex_state = 3}, + [2544] = {.lex_state = 126}, + [2545] = {.lex_state = 50, .external_lex_state = 3}, + [2546] = {.lex_state = 50, .external_lex_state = 3}, + [2547] = {.lex_state = 50, .external_lex_state = 3}, + [2548] = {.lex_state = 50, .external_lex_state = 3}, + [2549] = {.lex_state = 50, .external_lex_state = 3}, + [2550] = {.lex_state = 50, .external_lex_state = 3}, + [2551] = {.lex_state = 221, .external_lex_state = 3}, + [2552] = {.lex_state = 126, .external_lex_state = 2}, + [2553] = {.lex_state = 126, .external_lex_state = 2}, + [2554] = {.lex_state = 50, .external_lex_state = 3}, + [2555] = {.lex_state = 50, .external_lex_state = 3}, + [2556] = {.lex_state = 50, .external_lex_state = 8}, + [2557] = {.lex_state = 128, .external_lex_state = 16}, + [2558] = {.lex_state = 128, .external_lex_state = 16}, + [2559] = {.lex_state = 50, .external_lex_state = 8}, + [2560] = {.lex_state = 50, .external_lex_state = 8}, + [2561] = {.lex_state = 128, .external_lex_state = 16}, + [2562] = {.lex_state = 128, .external_lex_state = 16}, + [2563] = {.lex_state = 128, .external_lex_state = 16}, + [2564] = {.lex_state = 128, .external_lex_state = 16}, + [2565] = {.lex_state = 128, .external_lex_state = 16}, + [2566] = {.lex_state = 128, .external_lex_state = 16}, + [2567] = {.lex_state = 128, .external_lex_state = 16}, + [2568] = {.lex_state = 128, .external_lex_state = 16}, + [2569] = {.lex_state = 50, .external_lex_state = 8}, + [2570] = {.lex_state = 50, .external_lex_state = 8}, + [2571] = {.lex_state = 50, .external_lex_state = 8}, + [2572] = {.lex_state = 50, .external_lex_state = 8}, + [2573] = {.lex_state = 128, .external_lex_state = 16}, + [2574] = {.lex_state = 50, .external_lex_state = 8}, + [2575] = {.lex_state = 50, .external_lex_state = 8}, + [2576] = {.lex_state = 50, .external_lex_state = 8}, + [2577] = {.lex_state = 128, .external_lex_state = 16}, + [2578] = {.lex_state = 128, .external_lex_state = 16}, + [2579] = {.lex_state = 221, .external_lex_state = 3}, + [2580] = {.lex_state = 50, .external_lex_state = 8}, + [2581] = {.lex_state = 128, .external_lex_state = 16}, + [2582] = {.lex_state = 126, .external_lex_state = 2}, + [2583] = {.lex_state = 128, .external_lex_state = 16}, + [2584] = {.lex_state = 128, .external_lex_state = 16}, + [2585] = {.lex_state = 128, .external_lex_state = 16}, + [2586] = {.lex_state = 221, .external_lex_state = 3}, + [2587] = {.lex_state = 128, .external_lex_state = 16}, + [2588] = {.lex_state = 221, .external_lex_state = 8}, + [2589] = {.lex_state = 221, .external_lex_state = 3}, + [2590] = {.lex_state = 128, .external_lex_state = 16}, + [2591] = {.lex_state = 221, .external_lex_state = 3}, + [2592] = {.lex_state = 50, .external_lex_state = 8}, + [2593] = {.lex_state = 221, .external_lex_state = 3}, + [2594] = {.lex_state = 128, .external_lex_state = 16}, + [2595] = {.lex_state = 221, .external_lex_state = 3}, + [2596] = {.lex_state = 50, .external_lex_state = 8}, + [2597] = {.lex_state = 221, .external_lex_state = 3}, + [2598] = {.lex_state = 221, .external_lex_state = 3}, + [2599] = {.lex_state = 128, .external_lex_state = 16}, + [2600] = {.lex_state = 128, .external_lex_state = 16}, + [2601] = {.lex_state = 50, .external_lex_state = 8}, + [2602] = {.lex_state = 128, .external_lex_state = 16}, + [2603] = {.lex_state = 221, .external_lex_state = 3}, + [2604] = {.lex_state = 221, .external_lex_state = 8}, + [2605] = {.lex_state = 221, .external_lex_state = 3}, + [2606] = {.lex_state = 221, .external_lex_state = 8}, + [2607] = {.lex_state = 128, .external_lex_state = 16}, + [2608] = {.lex_state = 221, .external_lex_state = 8}, + [2609] = {.lex_state = 128, .external_lex_state = 16}, + [2610] = {.lex_state = 50, .external_lex_state = 8}, + [2611] = {.lex_state = 50, .external_lex_state = 8}, + [2612] = {.lex_state = 126, .external_lex_state = 20}, + [2613] = {.lex_state = 221, .external_lex_state = 3}, + [2614] = {.lex_state = 221, .external_lex_state = 3}, + [2615] = {.lex_state = 50, .external_lex_state = 8}, + [2616] = {.lex_state = 128, .external_lex_state = 16}, + [2617] = {.lex_state = 128, .external_lex_state = 16}, + [2618] = {.lex_state = 126, .external_lex_state = 20}, + [2619] = {.lex_state = 221, .external_lex_state = 3}, + [2620] = {.lex_state = 50, .external_lex_state = 8}, + [2621] = {.lex_state = 50, .external_lex_state = 8}, + [2622] = {.lex_state = 128, .external_lex_state = 16}, + [2623] = {.lex_state = 128, .external_lex_state = 16}, + [2624] = {.lex_state = 50, .external_lex_state = 8}, + [2625] = {.lex_state = 50, .external_lex_state = 8}, + [2626] = {.lex_state = 50, .external_lex_state = 8}, + [2627] = {.lex_state = 221, .external_lex_state = 3}, + [2628] = {.lex_state = 128, .external_lex_state = 16}, + [2629] = {.lex_state = 50, .external_lex_state = 8}, + [2630] = {.lex_state = 50, .external_lex_state = 8}, + [2631] = {.lex_state = 128, .external_lex_state = 16}, + [2632] = {.lex_state = 128, .external_lex_state = 16}, + [2633] = {.lex_state = 50, .external_lex_state = 8}, + [2634] = {.lex_state = 50, .external_lex_state = 8}, + [2635] = {.lex_state = 128, .external_lex_state = 16}, + [2636] = {.lex_state = 128, .external_lex_state = 16}, + [2637] = {.lex_state = 128, .external_lex_state = 16}, + [2638] = {.lex_state = 221, .external_lex_state = 3}, + [2639] = {.lex_state = 50, .external_lex_state = 8}, + [2640] = {.lex_state = 50, .external_lex_state = 8}, + [2641] = {.lex_state = 50, .external_lex_state = 8}, + [2642] = {.lex_state = 50, .external_lex_state = 8}, + [2643] = {.lex_state = 128, .external_lex_state = 16}, + [2644] = {.lex_state = 50, .external_lex_state = 8}, + [2645] = {.lex_state = 126}, + [2646] = {.lex_state = 50, .external_lex_state = 8}, + [2647] = {.lex_state = 126}, + [2648] = {.lex_state = 50, .external_lex_state = 8}, + [2649] = {.lex_state = 128, .external_lex_state = 16}, + [2650] = {.lex_state = 128, .external_lex_state = 16}, + [2651] = {.lex_state = 128, .external_lex_state = 16}, + [2652] = {.lex_state = 50, .external_lex_state = 8}, + [2653] = {.lex_state = 50, .external_lex_state = 8}, + [2654] = {.lex_state = 128, .external_lex_state = 16}, + [2655] = {.lex_state = 128, .external_lex_state = 16}, + [2656] = {.lex_state = 128, .external_lex_state = 16}, + [2657] = {.lex_state = 221, .external_lex_state = 3}, + [2658] = {.lex_state = 128, .external_lex_state = 16}, + [2659] = {.lex_state = 221, .external_lex_state = 3}, + [2660] = {.lex_state = 50, .external_lex_state = 8}, + [2661] = {.lex_state = 221, .external_lex_state = 3}, + [2662] = {.lex_state = 221, .external_lex_state = 8}, + [2663] = {.lex_state = 128, .external_lex_state = 16}, + [2664] = {.lex_state = 221, .external_lex_state = 3}, + [2665] = {.lex_state = 128, .external_lex_state = 16}, + [2666] = {.lex_state = 128, .external_lex_state = 16}, + [2667] = {.lex_state = 126, .external_lex_state = 20}, + [2668] = {.lex_state = 128, .external_lex_state = 16}, + [2669] = {.lex_state = 128, .external_lex_state = 16}, + [2670] = {.lex_state = 50, .external_lex_state = 8}, + [2671] = {.lex_state = 128, .external_lex_state = 16}, + [2672] = {.lex_state = 221, .external_lex_state = 3}, + [2673] = {.lex_state = 50, .external_lex_state = 8}, + [2674] = {.lex_state = 126}, + [2675] = {.lex_state = 50, .external_lex_state = 8}, + [2676] = {.lex_state = 50, .external_lex_state = 8}, + [2677] = {.lex_state = 128, .external_lex_state = 16}, + [2678] = {.lex_state = 221, .external_lex_state = 3}, + [2679] = {.lex_state = 128, .external_lex_state = 16}, + [2680] = {.lex_state = 128, .external_lex_state = 16}, + [2681] = {.lex_state = 221, .external_lex_state = 3}, + [2682] = {.lex_state = 221, .external_lex_state = 3}, + [2683] = {.lex_state = 128, .external_lex_state = 16}, + [2684] = {.lex_state = 221, .external_lex_state = 3}, + [2685] = {.lex_state = 221, .external_lex_state = 3}, + [2686] = {.lex_state = 128, .external_lex_state = 16}, + [2687] = {.lex_state = 128, .external_lex_state = 16}, + [2688] = {.lex_state = 50, .external_lex_state = 8}, + [2689] = {.lex_state = 50, .external_lex_state = 8}, + [2690] = {.lex_state = 126, .external_lex_state = 2}, + [2691] = {.lex_state = 126, .external_lex_state = 2}, + [2692] = {.lex_state = 128, .external_lex_state = 16}, + [2693] = {.lex_state = 221, .external_lex_state = 3}, + [2694] = {.lex_state = 128, .external_lex_state = 16}, + [2695] = {.lex_state = 50, .external_lex_state = 8}, + [2696] = {.lex_state = 221, .external_lex_state = 3}, + [2697] = {.lex_state = 128, .external_lex_state = 16}, + [2698] = {.lex_state = 221, .external_lex_state = 3}, + [2699] = {.lex_state = 128, .external_lex_state = 16}, + [2700] = {.lex_state = 128, .external_lex_state = 16}, + [2701] = {.lex_state = 221, .external_lex_state = 8}, + [2702] = {.lex_state = 221, .external_lex_state = 3}, + [2703] = {.lex_state = 128, .external_lex_state = 16}, + [2704] = {.lex_state = 221, .external_lex_state = 3}, + [2705] = {.lex_state = 128, .external_lex_state = 16}, + [2706] = {.lex_state = 50, .external_lex_state = 8}, + [2707] = {.lex_state = 126, .external_lex_state = 20}, + [2708] = {.lex_state = 50, .external_lex_state = 8}, + [2709] = {.lex_state = 50, .external_lex_state = 8}, + [2710] = {.lex_state = 221, .external_lex_state = 3}, + [2711] = {.lex_state = 221, .external_lex_state = 3}, + [2712] = {.lex_state = 221, .external_lex_state = 3}, + [2713] = {.lex_state = 221, .external_lex_state = 3}, + [2714] = {.lex_state = 128, .external_lex_state = 16}, + [2715] = {.lex_state = 50, .external_lex_state = 8}, + [2716] = {.lex_state = 221, .external_lex_state = 3}, + [2717] = {.lex_state = 50, .external_lex_state = 8}, + [2718] = {.lex_state = 221, .external_lex_state = 3}, + [2719] = {.lex_state = 128, .external_lex_state = 16}, + [2720] = {.lex_state = 128, .external_lex_state = 16}, + [2721] = {.lex_state = 128, .external_lex_state = 16}, + [2722] = {.lex_state = 128, .external_lex_state = 16}, + [2723] = {.lex_state = 221, .external_lex_state = 3}, + [2724] = {.lex_state = 221, .external_lex_state = 3}, + [2725] = {.lex_state = 50, .external_lex_state = 8}, + [2726] = {.lex_state = 221, .external_lex_state = 3}, + [2727] = {.lex_state = 128, .external_lex_state = 16}, + [2728] = {.lex_state = 126}, + [2729] = {.lex_state = 126}, + [2730] = {.lex_state = 221, .external_lex_state = 8}, + [2731] = {.lex_state = 126}, + [2732] = {.lex_state = 221, .external_lex_state = 3}, + [2733] = {.lex_state = 221, .external_lex_state = 8}, + [2734] = {.lex_state = 126}, + [2735] = {.lex_state = 221, .external_lex_state = 3}, + [2736] = {.lex_state = 126}, + [2737] = {.lex_state = 221, .external_lex_state = 3}, + [2738] = {.lex_state = 221, .external_lex_state = 8}, + [2739] = {.lex_state = 130, .external_lex_state = 24}, + [2740] = {.lex_state = 221, .external_lex_state = 3}, + [2741] = {.lex_state = 221, .external_lex_state = 3}, + [2742] = {.lex_state = 221, .external_lex_state = 3}, + [2743] = {.lex_state = 126}, + [2744] = {.lex_state = 221, .external_lex_state = 3}, + [2745] = {.lex_state = 130, .external_lex_state = 24}, + [2746] = {.lex_state = 221, .external_lex_state = 3}, + [2747] = {.lex_state = 221, .external_lex_state = 8}, + [2748] = {.lex_state = 126}, + [2749] = {.lex_state = 221, .external_lex_state = 3}, + [2750] = {.lex_state = 221, .external_lex_state = 3}, + [2751] = {.lex_state = 221, .external_lex_state = 3}, + [2752] = {.lex_state = 126}, + [2753] = {.lex_state = 221, .external_lex_state = 3}, + [2754] = {.lex_state = 221, .external_lex_state = 3}, + [2755] = {.lex_state = 126}, + [2756] = {.lex_state = 221, .external_lex_state = 3}, + [2757] = {.lex_state = 221, .external_lex_state = 3}, + [2758] = {.lex_state = 221, .external_lex_state = 3}, + [2759] = {.lex_state = 221, .external_lex_state = 3}, + [2760] = {.lex_state = 126}, + [2761] = {.lex_state = 221, .external_lex_state = 8}, + [2762] = {.lex_state = 126}, + [2763] = {.lex_state = 130, .external_lex_state = 24}, + [2764] = {.lex_state = 126}, + [2765] = {.lex_state = 221, .external_lex_state = 3}, + [2766] = {.lex_state = 221, .external_lex_state = 3}, + [2767] = {.lex_state = 126}, + [2768] = {.lex_state = 221, .external_lex_state = 8}, + [2769] = {.lex_state = 221, .external_lex_state = 3}, + [2770] = {.lex_state = 221, .external_lex_state = 3}, + [2771] = {.lex_state = 221, .external_lex_state = 8}, + [2772] = {.lex_state = 221, .external_lex_state = 3}, + [2773] = {.lex_state = 221, .external_lex_state = 3}, + [2774] = {.lex_state = 221, .external_lex_state = 8}, + [2775] = {.lex_state = 221, .external_lex_state = 8}, + [2776] = {.lex_state = 221, .external_lex_state = 8}, + [2777] = {.lex_state = 221, .external_lex_state = 8}, + [2778] = {.lex_state = 221, .external_lex_state = 8}, + [2779] = {.lex_state = 126}, + [2780] = {.lex_state = 221, .external_lex_state = 3}, + [2781] = {.lex_state = 221, .external_lex_state = 3}, + [2782] = {.lex_state = 221, .external_lex_state = 8}, + [2783] = {.lex_state = 221, .external_lex_state = 3}, + [2784] = {.lex_state = 221, .external_lex_state = 3}, + [2785] = {.lex_state = 126}, + [2786] = {.lex_state = 221, .external_lex_state = 3}, + [2787] = {.lex_state = 221, .external_lex_state = 8}, + [2788] = {.lex_state = 221, .external_lex_state = 8}, + [2789] = {.lex_state = 126}, + [2790] = {.lex_state = 221, .external_lex_state = 8}, + [2791] = {.lex_state = 221, .external_lex_state = 8}, + [2792] = {.lex_state = 221, .external_lex_state = 8}, + [2793] = {.lex_state = 221, .external_lex_state = 8}, + [2794] = {.lex_state = 130, .external_lex_state = 24}, + [2795] = {.lex_state = 221, .external_lex_state = 8}, + [2796] = {.lex_state = 221, .external_lex_state = 8}, + [2797] = {.lex_state = 221, .external_lex_state = 8}, + [2798] = {.lex_state = 221, .external_lex_state = 8}, + [2799] = {.lex_state = 221, .external_lex_state = 8}, + [2800] = {.lex_state = 221, .external_lex_state = 8}, + [2801] = {.lex_state = 221, .external_lex_state = 8}, + [2802] = {.lex_state = 221, .external_lex_state = 8}, + [2803] = {.lex_state = 221, .external_lex_state = 8}, + [2804] = {.lex_state = 221, .external_lex_state = 8}, + [2805] = {.lex_state = 221, .external_lex_state = 8}, + [2806] = {.lex_state = 126}, + [2807] = {.lex_state = 221, .external_lex_state = 8}, + [2808] = {.lex_state = 221, .external_lex_state = 8}, + [2809] = {.lex_state = 221, .external_lex_state = 8}, + [2810] = {.lex_state = 221, .external_lex_state = 8}, + [2811] = {.lex_state = 221, .external_lex_state = 8}, + [2812] = {.lex_state = 126}, + [2813] = {.lex_state = 221, .external_lex_state = 8}, + [2814] = {.lex_state = 221, .external_lex_state = 8}, + [2815] = {.lex_state = 221, .external_lex_state = 8}, + [2816] = {.lex_state = 221, .external_lex_state = 8}, + [2817] = {.lex_state = 221, .external_lex_state = 8}, + [2818] = {.lex_state = 221, .external_lex_state = 8}, + [2819] = {.lex_state = 221, .external_lex_state = 8}, + [2820] = {.lex_state = 221, .external_lex_state = 8}, + [2821] = {.lex_state = 126}, + [2822] = {.lex_state = 126}, + [2823] = {.lex_state = 221, .external_lex_state = 8}, + [2824] = {.lex_state = 221, .external_lex_state = 8}, + [2825] = {.lex_state = 126}, + [2826] = {.lex_state = 221, .external_lex_state = 8}, + [2827] = {.lex_state = 221, .external_lex_state = 8}, + [2828] = {.lex_state = 221, .external_lex_state = 8}, + [2829] = {.lex_state = 221, .external_lex_state = 8}, + [2830] = {.lex_state = 126}, + [2831] = {.lex_state = 221, .external_lex_state = 8}, + [2832] = {.lex_state = 126}, + [2833] = {.lex_state = 126}, + [2834] = {.lex_state = 126}, + [2835] = {.lex_state = 126}, + [2836] = {.lex_state = 221, .external_lex_state = 8}, + [2837] = {.lex_state = 221, .external_lex_state = 8}, + [2838] = {.lex_state = 129}, + [2839] = {.lex_state = 129}, + [2840] = {.lex_state = 129}, + [2841] = {.lex_state = 129}, + [2842] = {.lex_state = 129}, + [2843] = {.lex_state = 129}, + [2844] = {.lex_state = 129}, + [2845] = {.lex_state = 129}, + [2846] = {.lex_state = 129}, + [2847] = {.lex_state = 221, .external_lex_state = 8}, + [2848] = {.lex_state = 129}, + [2849] = {.lex_state = 221, .external_lex_state = 8}, + [2850] = {.lex_state = 129}, + [2851] = {.lex_state = 221, .external_lex_state = 8}, + [2852] = {.lex_state = 221, .external_lex_state = 8}, + [2853] = {.lex_state = 221, .external_lex_state = 8}, + [2854] = {.lex_state = 221, .external_lex_state = 8}, + [2855] = {.lex_state = 129}, + [2856] = {.lex_state = 129}, + [2857] = {.lex_state = 129}, + [2858] = {.lex_state = 221, .external_lex_state = 8}, + [2859] = {.lex_state = 221, .external_lex_state = 8}, + [2860] = {.lex_state = 221, .external_lex_state = 8}, + [2861] = {.lex_state = 129}, + [2862] = {.lex_state = 129}, + [2863] = {.lex_state = 221, .external_lex_state = 8}, + [2864] = {.lex_state = 129}, + [2865] = {.lex_state = 129}, + [2866] = {.lex_state = 129}, + [2867] = {.lex_state = 129}, + [2868] = {.lex_state = 129}, + [2869] = {.lex_state = 129}, + [2870] = {.lex_state = 221, .external_lex_state = 8}, + [2871] = {.lex_state = 129}, + [2872] = {.lex_state = 129}, + [2873] = {.lex_state = 129}, + [2874] = {.lex_state = 129}, + [2875] = {.lex_state = 129}, + [2876] = {.lex_state = 221, .external_lex_state = 8}, + [2877] = {.lex_state = 129}, + [2878] = {.lex_state = 129}, + [2879] = {.lex_state = 129}, + [2880] = {.lex_state = 129}, + [2881] = {.lex_state = 221, .external_lex_state = 8}, + [2882] = {.lex_state = 129}, + [2883] = {.lex_state = 221, .external_lex_state = 8}, + [2884] = {.lex_state = 129}, + [2885] = {.lex_state = 129}, + [2886] = {.lex_state = 221, .external_lex_state = 8}, + [2887] = {.lex_state = 129}, + [2888] = {.lex_state = 221, .external_lex_state = 8}, + [2889] = {.lex_state = 221, .external_lex_state = 8}, + [2890] = {.lex_state = 129}, + [2891] = {.lex_state = 221, .external_lex_state = 8}, + [2892] = {.lex_state = 221, .external_lex_state = 8}, + [2893] = {.lex_state = 221, .external_lex_state = 8}, + [2894] = {.lex_state = 129}, + [2895] = {.lex_state = 221, .external_lex_state = 8}, + [2896] = {.lex_state = 129}, + [2897] = {.lex_state = 129}, + [2898] = {.lex_state = 129}, + [2899] = {.lex_state = 221, .external_lex_state = 8}, + [2900] = {.lex_state = 129}, + [2901] = {.lex_state = 129}, + [2902] = {.lex_state = 129}, + [2903] = {.lex_state = 129}, + [2904] = {.lex_state = 129}, + [2905] = {.lex_state = 129}, + [2906] = {.lex_state = 129}, + [2907] = {.lex_state = 129}, + [2908] = {.lex_state = 129}, + [2909] = {.lex_state = 129}, + [2910] = {.lex_state = 129}, + [2911] = {.lex_state = 129}, + [2912] = {.lex_state = 129}, + [2913] = {.lex_state = 129}, + [2914] = {.lex_state = 129}, + [2915] = {.lex_state = 129}, + [2916] = {.lex_state = 221, .external_lex_state = 8}, + [2917] = {.lex_state = 221, .external_lex_state = 8}, + [2918] = {.lex_state = 221, .external_lex_state = 8}, + [2919] = {.lex_state = 221, .external_lex_state = 8}, + [2920] = {.lex_state = 221, .external_lex_state = 8}, + [2921] = {.lex_state = 129}, + [2922] = {.lex_state = 221, .external_lex_state = 8}, + [2923] = {.lex_state = 221, .external_lex_state = 8}, + [2924] = {.lex_state = 129}, + [2925] = {.lex_state = 129}, + [2926] = {.lex_state = 129}, + [2927] = {.lex_state = 129}, + [2928] = {.lex_state = 129}, + [2929] = {.lex_state = 129}, + [2930] = {.lex_state = 221, .external_lex_state = 8}, + [2931] = {.lex_state = 129}, + [2932] = {.lex_state = 129}, + [2933] = {.lex_state = 221, .external_lex_state = 8}, + [2934] = {.lex_state = 129}, + [2935] = {.lex_state = 221, .external_lex_state = 8}, + [2936] = {.lex_state = 221, .external_lex_state = 8}, + [2937] = {.lex_state = 221, .external_lex_state = 8}, + [2938] = {.lex_state = 129}, + [2939] = {.lex_state = 129}, + [2940] = {.lex_state = 221, .external_lex_state = 8}, + [2941] = {.lex_state = 221, .external_lex_state = 8}, + [2942] = {.lex_state = 129}, + [2943] = {.lex_state = 129}, + [2944] = {.lex_state = 129}, + [2945] = {.lex_state = 221, .external_lex_state = 8}, + [2946] = {.lex_state = 129}, + [2947] = {.lex_state = 129}, + [2948] = {.lex_state = 129}, + [2949] = {.lex_state = 129}, + [2950] = {.lex_state = 129}, + [2951] = {.lex_state = 129}, + [2952] = {.lex_state = 221, .external_lex_state = 8}, + [2953] = {.lex_state = 129}, + [2954] = {.lex_state = 129}, + [2955] = {.lex_state = 129}, + [2956] = {.lex_state = 129}, + [2957] = {.lex_state = 129}, + [2958] = {.lex_state = 129}, + [2959] = {.lex_state = 221, .external_lex_state = 8}, + [2960] = {.lex_state = 129}, + [2961] = {.lex_state = 129}, + [2962] = {.lex_state = 221, .external_lex_state = 8}, + [2963] = {.lex_state = 129}, + [2964] = {.lex_state = 221, .external_lex_state = 8}, + [2965] = {.lex_state = 129}, + [2966] = {.lex_state = 129}, + [2967] = {.lex_state = 129}, + [2968] = {.lex_state = 129}, + [2969] = {.lex_state = 129}, + [2970] = {.lex_state = 221, .external_lex_state = 8}, + [2971] = {.lex_state = 129}, + [2972] = {.lex_state = 129}, + [2973] = {.lex_state = 221, .external_lex_state = 8}, + [2974] = {.lex_state = 129}, + [2975] = {.lex_state = 129}, + [2976] = {.lex_state = 221, .external_lex_state = 8}, + [2977] = {.lex_state = 129}, + [2978] = {.lex_state = 129}, + [2979] = {.lex_state = 221, .external_lex_state = 8}, + [2980] = {.lex_state = 129}, + [2981] = {.lex_state = 129}, + [2982] = {.lex_state = 221, .external_lex_state = 8}, + [2983] = {.lex_state = 129}, + [2984] = {.lex_state = 221, .external_lex_state = 8}, + [2985] = {.lex_state = 129}, + [2986] = {.lex_state = 129}, + [2987] = {.lex_state = 99, .external_lex_state = 25}, + [2988] = {.lex_state = 99, .external_lex_state = 25}, + [2989] = {.lex_state = 99, .external_lex_state = 25}, + [2990] = {.lex_state = 99, .external_lex_state = 25}, + [2991] = {.lex_state = 99, .external_lex_state = 25}, + [2992] = {.lex_state = 99, .external_lex_state = 25}, + [2993] = {.lex_state = 99, .external_lex_state = 25}, + [2994] = {.lex_state = 99, .external_lex_state = 25}, + [2995] = {.lex_state = 99, .external_lex_state = 19}, + [2996] = {.lex_state = 99, .external_lex_state = 25}, + [2997] = {.lex_state = 99, .external_lex_state = 25}, + [2998] = {.lex_state = 99, .external_lex_state = 25}, + [2999] = {.lex_state = 99, .external_lex_state = 25}, + [3000] = {.lex_state = 99, .external_lex_state = 25}, + [3001] = {.lex_state = 99, .external_lex_state = 25}, + [3002] = {.lex_state = 99, .external_lex_state = 25}, + [3003] = {.lex_state = 99, .external_lex_state = 25}, + [3004] = {.lex_state = 99, .external_lex_state = 25}, + [3005] = {.lex_state = 99, .external_lex_state = 25}, + [3006] = {.lex_state = 99, .external_lex_state = 19}, + [3007] = {.lex_state = 99, .external_lex_state = 25}, + [3008] = {.lex_state = 99, .external_lex_state = 25}, + [3009] = {.lex_state = 99, .external_lex_state = 25}, + [3010] = {.lex_state = 99, .external_lex_state = 25}, + [3011] = {.lex_state = 99, .external_lex_state = 25}, + [3012] = {.lex_state = 99, .external_lex_state = 25}, + [3013] = {.lex_state = 99, .external_lex_state = 25}, + [3014] = {.lex_state = 99, .external_lex_state = 25}, + [3015] = {.lex_state = 99, .external_lex_state = 25}, + [3016] = {.lex_state = 99, .external_lex_state = 25}, + [3017] = {.lex_state = 99, .external_lex_state = 25}, + [3018] = {.lex_state = 99, .external_lex_state = 25}, + [3019] = {.lex_state = 99, .external_lex_state = 25}, + [3020] = {.lex_state = 99, .external_lex_state = 25}, + [3021] = {.lex_state = 99, .external_lex_state = 25}, + [3022] = {.lex_state = 99, .external_lex_state = 25}, + [3023] = {.lex_state = 48, .external_lex_state = 19}, + [3024] = {.lex_state = 48, .external_lex_state = 19}, + [3025] = {.lex_state = 126, .external_lex_state = 26}, + [3026] = {.lex_state = 99, .external_lex_state = 19}, + [3027] = {.lex_state = 126, .external_lex_state = 26}, + [3028] = {.lex_state = 126, .external_lex_state = 26}, + [3029] = {.lex_state = 126, .external_lex_state = 26}, + [3030] = {.lex_state = 126, .external_lex_state = 26}, + [3031] = {.lex_state = 126, .external_lex_state = 26}, + [3032] = {.lex_state = 126, .external_lex_state = 26}, + [3033] = {.lex_state = 126, .external_lex_state = 26}, + [3034] = {.lex_state = 126, .external_lex_state = 26}, + [3035] = {.lex_state = 126, .external_lex_state = 26}, + [3036] = {.lex_state = 126}, + [3037] = {.lex_state = 126, .external_lex_state = 26}, + [3038] = {.lex_state = 126, .external_lex_state = 26}, + [3039] = {.lex_state = 126, .external_lex_state = 26}, + [3040] = {.lex_state = 126, .external_lex_state = 26}, + [3041] = {.lex_state = 126, .external_lex_state = 26}, + [3042] = {.lex_state = 126, .external_lex_state = 26}, + [3043] = {.lex_state = 126, .external_lex_state = 26}, + [3044] = {.lex_state = 126, .external_lex_state = 26}, + [3045] = {.lex_state = 126, .external_lex_state = 26}, + [3046] = {.lex_state = 126, .external_lex_state = 26}, + [3047] = {.lex_state = 126, .external_lex_state = 26}, + [3048] = {.lex_state = 49, .external_lex_state = 19}, + [3049] = {.lex_state = 126, .external_lex_state = 26}, + [3050] = {.lex_state = 126, .external_lex_state = 26}, + [3051] = {.lex_state = 126, .external_lex_state = 26}, + [3052] = {.lex_state = 126, .external_lex_state = 26}, + [3053] = {.lex_state = 126, .external_lex_state = 26}, + [3054] = {.lex_state = 126, .external_lex_state = 26}, + [3055] = {.lex_state = 126, .external_lex_state = 26}, + [3056] = {.lex_state = 126, .external_lex_state = 26}, + [3057] = {.lex_state = 126, .external_lex_state = 26}, + [3058] = {.lex_state = 126, .external_lex_state = 26}, + [3059] = {.lex_state = 126, .external_lex_state = 26}, + [3060] = {.lex_state = 126, .external_lex_state = 26}, + [3061] = {.lex_state = 49, .external_lex_state = 19}, + [3062] = {.lex_state = 126, .external_lex_state = 26}, + [3063] = {.lex_state = 127}, + [3064] = {.lex_state = 127}, + [3065] = {.lex_state = 127}, + [3066] = {.lex_state = 127}, + [3067] = {.lex_state = 127}, + [3068] = {.lex_state = 127}, + [3069] = {.lex_state = 127}, + [3070] = {.lex_state = 127}, + [3071] = {.lex_state = 126}, + [3072] = {.lex_state = 127}, + [3073] = {.lex_state = 127}, + [3074] = {.lex_state = 127}, + [3075] = {.lex_state = 127}, + [3076] = {.lex_state = 127}, + [3077] = {.lex_state = 127}, + [3078] = {.lex_state = 126}, + [3079] = {.lex_state = 127}, + [3080] = {.lex_state = 127}, + [3081] = {.lex_state = 127}, + [3082] = {.lex_state = 127}, + [3083] = {.lex_state = 127}, + [3084] = {.lex_state = 127}, + [3085] = {.lex_state = 127}, + [3086] = {.lex_state = 127}, + [3087] = {.lex_state = 127}, + [3088] = {.lex_state = 127}, + [3089] = {.lex_state = 126}, + [3090] = {.lex_state = 120, .external_lex_state = 27}, + [3091] = {.lex_state = 120, .external_lex_state = 27}, + [3092] = {.lex_state = 120, .external_lex_state = 27}, + [3093] = {.lex_state = 120, .external_lex_state = 27}, + [3094] = {.lex_state = 120, .external_lex_state = 27}, + [3095] = {.lex_state = 120, .external_lex_state = 27}, + [3096] = {.lex_state = 120, .external_lex_state = 28}, + [3097] = {.lex_state = 120, .external_lex_state = 27}, + [3098] = {.lex_state = 126}, + [3099] = {.lex_state = 120, .external_lex_state = 27}, + [3100] = {.lex_state = 126}, + [3101] = {.lex_state = 120, .external_lex_state = 28}, + [3102] = {.lex_state = 120, .external_lex_state = 27}, + [3103] = {.lex_state = 126}, + [3104] = {.lex_state = 126}, + [3105] = {.lex_state = 120, .external_lex_state = 27}, + [3106] = {.lex_state = 120, .external_lex_state = 27}, + [3107] = {.lex_state = 126}, + [3108] = {.lex_state = 120, .external_lex_state = 27}, + [3109] = {.lex_state = 126}, + [3110] = {.lex_state = 120, .external_lex_state = 27}, + [3111] = {.lex_state = 120, .external_lex_state = 27}, + [3112] = {.lex_state = 120, .external_lex_state = 27}, + [3113] = {.lex_state = 120, .external_lex_state = 27}, + [3114] = {.lex_state = 120, .external_lex_state = 27}, + [3115] = {.lex_state = 120, .external_lex_state = 27}, + [3116] = {.lex_state = 120, .external_lex_state = 27}, + [3117] = {.lex_state = 120, .external_lex_state = 27}, + [3118] = {.lex_state = 120, .external_lex_state = 27}, + [3119] = {.lex_state = 120, .external_lex_state = 27}, + [3120] = {.lex_state = 120, .external_lex_state = 27}, + [3121] = {.lex_state = 126}, + [3122] = {.lex_state = 120, .external_lex_state = 27}, + [3123] = {.lex_state = 120, .external_lex_state = 27}, + [3124] = {.lex_state = 120, .external_lex_state = 27}, + [3125] = {.lex_state = 126}, + [3126] = {.lex_state = 120, .external_lex_state = 27}, + [3127] = {.lex_state = 120, .external_lex_state = 27}, + [3128] = {.lex_state = 120, .external_lex_state = 27}, + [3129] = {.lex_state = 126}, + [3130] = {.lex_state = 126}, + [3131] = {.lex_state = 126}, + [3132] = {.lex_state = 120, .external_lex_state = 27}, + [3133] = {.lex_state = 120, .external_lex_state = 27}, + [3134] = {.lex_state = 126}, + [3135] = {.lex_state = 126}, + [3136] = {.lex_state = 126}, + [3137] = {.lex_state = 126}, + [3138] = {.lex_state = 126}, + [3139] = {.lex_state = 120, .external_lex_state = 27}, + [3140] = {.lex_state = 126}, + [3141] = {.lex_state = 126}, + [3142] = {.lex_state = 120, .external_lex_state = 27}, + [3143] = {.lex_state = 120, .external_lex_state = 27}, + [3144] = {.lex_state = 120, .external_lex_state = 27}, + [3145] = {.lex_state = 126}, + [3146] = {.lex_state = 120, .external_lex_state = 27}, + [3147] = {.lex_state = 120, .external_lex_state = 27}, + [3148] = {.lex_state = 120, .external_lex_state = 27}, + [3149] = {.lex_state = 120, .external_lex_state = 27}, + [3150] = {.lex_state = 120, .external_lex_state = 27}, + [3151] = {.lex_state = 120, .external_lex_state = 27}, + [3152] = {.lex_state = 120}, + [3153] = {.lex_state = 120, .external_lex_state = 27}, + [3154] = {.lex_state = 126}, + [3155] = {.lex_state = 126}, + [3156] = {.lex_state = 120, .external_lex_state = 27}, + [3157] = {.lex_state = 120, .external_lex_state = 27}, + [3158] = {.lex_state = 120, .external_lex_state = 27}, + [3159] = {.lex_state = 120}, + [3160] = {.lex_state = 120, .external_lex_state = 27}, + [3161] = {.lex_state = 126}, + [3162] = {.lex_state = 126}, + [3163] = {.lex_state = 126}, + [3164] = {.lex_state = 126}, + [3165] = {.lex_state = 120, .external_lex_state = 27}, + [3166] = {.lex_state = 126}, + [3167] = {.lex_state = 120, .external_lex_state = 27}, + [3168] = {.lex_state = 120, .external_lex_state = 27}, + [3169] = {.lex_state = 126}, + [3170] = {.lex_state = 126}, + [3171] = {.lex_state = 126}, + [3172] = {.lex_state = 126}, + [3173] = {.lex_state = 126}, + [3174] = {.lex_state = 120, .external_lex_state = 27}, + [3175] = {.lex_state = 126}, + [3176] = {.lex_state = 126}, + [3177] = {.lex_state = 126}, + [3178] = {.lex_state = 120, .external_lex_state = 27}, + [3179] = {.lex_state = 126}, + [3180] = {.lex_state = 126}, + [3181] = {.lex_state = 120, .external_lex_state = 27}, + [3182] = {.lex_state = 126}, + [3183] = {.lex_state = 126}, + [3184] = {.lex_state = 126}, + [3185] = {.lex_state = 126}, + [3186] = {.lex_state = 126}, + [3187] = {.lex_state = 120, .external_lex_state = 27}, + [3188] = {.lex_state = 126}, + [3189] = {.lex_state = 126}, + [3190] = {.lex_state = 120, .external_lex_state = 27}, + [3191] = {.lex_state = 126}, + [3192] = {.lex_state = 120, .external_lex_state = 27}, + [3193] = {.lex_state = 120, .external_lex_state = 27}, + [3194] = {.lex_state = 126}, + [3195] = {.lex_state = 126}, + [3196] = {.lex_state = 126}, + [3197] = {.lex_state = 120, .external_lex_state = 27}, + [3198] = {.lex_state = 126}, + [3199] = {.lex_state = 126}, + [3200] = {.lex_state = 126}, + [3201] = {.lex_state = 120, .external_lex_state = 27}, + [3202] = {.lex_state = 126}, + [3203] = {.lex_state = 126}, + [3204] = {.lex_state = 120, .external_lex_state = 27}, + [3205] = {.lex_state = 126}, + [3206] = {.lex_state = 126}, + [3207] = {.lex_state = 120, .external_lex_state = 27}, + [3208] = {.lex_state = 120, .external_lex_state = 27}, + [3209] = {.lex_state = 126}, + [3210] = {.lex_state = 126}, + [3211] = {.lex_state = 126}, + [3212] = {.lex_state = 126}, + [3213] = {.lex_state = 126}, + [3214] = {.lex_state = 120, .external_lex_state = 27}, + [3215] = {.lex_state = 120, .external_lex_state = 27}, + [3216] = {.lex_state = 120, .external_lex_state = 27}, + [3217] = {.lex_state = 126}, + [3218] = {.lex_state = 120, .external_lex_state = 27}, + [3219] = {.lex_state = 126}, + [3220] = {.lex_state = 126}, + [3221] = {.lex_state = 120, .external_lex_state = 27}, + [3222] = {.lex_state = 120, .external_lex_state = 27}, + [3223] = {.lex_state = 120, .external_lex_state = 27}, + [3224] = {.lex_state = 126}, + [3225] = {.lex_state = 120, .external_lex_state = 16}, + [3226] = {.lex_state = 120, .external_lex_state = 27}, + [3227] = {.lex_state = 120, .external_lex_state = 16}, + [3228] = {.lex_state = 121}, + [3229] = {.lex_state = 121}, + [3230] = {.lex_state = 121}, + [3231] = {.lex_state = 121}, + [3232] = {.lex_state = 120}, + [3233] = {.lex_state = 120}, + [3234] = {.lex_state = 120}, + [3235] = {.lex_state = 121}, + [3236] = {.lex_state = 120}, + [3237] = {.lex_state = 121}, + [3238] = {.lex_state = 121}, + [3239] = {.lex_state = 121}, + [3240] = {.lex_state = 120}, + [3241] = {.lex_state = 120}, + [3242] = {.lex_state = 121}, + [3243] = {.lex_state = 120}, + [3244] = {.lex_state = 121}, + [3245] = {.lex_state = 121}, + [3246] = {.lex_state = 121}, + [3247] = {.lex_state = 121}, + [3248] = {.lex_state = 121}, + [3249] = {.lex_state = 121}, + [3250] = {.lex_state = 121}, + [3251] = {.lex_state = 121}, + [3252] = {.lex_state = 121}, + [3253] = {.lex_state = 121}, + [3254] = {.lex_state = 120}, + [3255] = {.lex_state = 120}, + [3256] = {.lex_state = 121}, + [3257] = {.lex_state = 120}, + [3258] = {.lex_state = 120}, + [3259] = {.lex_state = 120}, + [3260] = {.lex_state = 121}, + [3261] = {.lex_state = 121}, + [3262] = {.lex_state = 120}, + [3263] = {.lex_state = 121}, + [3264] = {.lex_state = 121}, + [3265] = {.lex_state = 121}, + [3266] = {.lex_state = 121}, + [3267] = {.lex_state = 120}, + [3268] = {.lex_state = 121}, + [3269] = {.lex_state = 120}, + [3270] = {.lex_state = 121}, + [3271] = {.lex_state = 121}, + [3272] = {.lex_state = 121}, + [3273] = {.lex_state = 121}, + [3274] = {.lex_state = 121}, + [3275] = {.lex_state = 120}, + [3276] = {.lex_state = 121}, + [3277] = {.lex_state = 121}, + [3278] = {.lex_state = 120}, + [3279] = {.lex_state = 120}, + [3280] = {.lex_state = 121}, + [3281] = {.lex_state = 120}, + [3282] = {.lex_state = 121}, + [3283] = {.lex_state = 121}, + [3284] = {.lex_state = 121}, + [3285] = {.lex_state = 120}, + [3286] = {.lex_state = 121}, + [3287] = {.lex_state = 121}, + [3288] = {.lex_state = 121}, + [3289] = {.lex_state = 121}, + [3290] = {.lex_state = 121}, + [3291] = {.lex_state = 121}, + [3292] = {.lex_state = 120}, + [3293] = {.lex_state = 120}, + [3294] = {.lex_state = 120}, + [3295] = {.lex_state = 121}, + [3296] = {.lex_state = 121}, + [3297] = {.lex_state = 121}, + [3298] = {.lex_state = 120}, + [3299] = {.lex_state = 120}, + [3300] = {.lex_state = 121}, + [3301] = {.lex_state = 121}, + [3302] = {.lex_state = 120}, + [3303] = {.lex_state = 121}, + [3304] = {.lex_state = 121}, + [3305] = {.lex_state = 121}, + [3306] = {.lex_state = 120}, + [3307] = {.lex_state = 120}, + [3308] = {.lex_state = 121}, + [3309] = {.lex_state = 120}, + [3310] = {.lex_state = 121}, + [3311] = {.lex_state = 120}, + [3312] = {.lex_state = 121}, + [3313] = {.lex_state = 120}, + [3314] = {.lex_state = 121}, + [3315] = {.lex_state = 121}, + [3316] = {.lex_state = 121}, + [3317] = {.lex_state = 121}, + [3318] = {.lex_state = 121}, + [3319] = {.lex_state = 121}, + [3320] = {.lex_state = 121}, + [3321] = {.lex_state = 120}, + [3322] = {.lex_state = 121}, + [3323] = {.lex_state = 121}, + [3324] = {.lex_state = 131}, + [3325] = {.lex_state = 131}, + [3326] = {.lex_state = 122}, + [3327] = {.lex_state = 133, .external_lex_state = 29}, + [3328] = {.lex_state = 131}, + [3329] = {.lex_state = 131}, + [3330] = {.lex_state = 131}, + [3331] = {.lex_state = 131}, + [3332] = {.lex_state = 131}, + [3333] = {.lex_state = 131}, + [3334] = {.lex_state = 133, .external_lex_state = 29}, + [3335] = {.lex_state = 131}, + [3336] = {.lex_state = 131}, + [3337] = {.lex_state = 131}, + [3338] = {.lex_state = 131}, + [3339] = {.lex_state = 131}, + [3340] = {.lex_state = 131}, + [3341] = {.lex_state = 131}, + [3342] = {.lex_state = 131}, + [3343] = {.lex_state = 131}, + [3344] = {.lex_state = 131}, + [3345] = {.lex_state = 131}, + [3346] = {.lex_state = 131}, + [3347] = {.lex_state = 131}, + [3348] = {.lex_state = 131}, + [3349] = {.lex_state = 131}, + [3350] = {.lex_state = 131}, + [3351] = {.lex_state = 131}, + [3352] = {.lex_state = 131}, + [3353] = {.lex_state = 131}, + [3354] = {.lex_state = 131}, + [3355] = {.lex_state = 131}, + [3356] = {.lex_state = 131}, + [3357] = {.lex_state = 131}, + [3358] = {.lex_state = 131}, + [3359] = {.lex_state = 131}, + [3360] = {.lex_state = 131}, + [3361] = {.lex_state = 131}, + [3362] = {.lex_state = 131}, + [3363] = {.lex_state = 131}, + [3364] = {.lex_state = 131}, + [3365] = {.lex_state = 131}, + [3366] = {.lex_state = 131}, + [3367] = {.lex_state = 131}, + [3368] = {.lex_state = 131}, + [3369] = {.lex_state = 131}, + [3370] = {.lex_state = 131}, + [3371] = {.lex_state = 131}, + [3372] = {.lex_state = 131}, + [3373] = {.lex_state = 131}, + [3374] = {.lex_state = 133, .external_lex_state = 29}, + [3375] = {.lex_state = 131}, + [3376] = {.lex_state = 131}, + [3377] = {.lex_state = 131}, + [3378] = {.lex_state = 131}, + [3379] = {.lex_state = 131}, + [3380] = {.lex_state = 131}, + [3381] = {.lex_state = 131}, + [3382] = {.lex_state = 131}, + [3383] = {.lex_state = 131}, + [3384] = {.lex_state = 131}, + [3385] = {.lex_state = 131}, + [3386] = {.lex_state = 133, .external_lex_state = 29}, + [3387] = {.lex_state = 131}, + [3388] = {.lex_state = 131}, + [3389] = {.lex_state = 131}, + [3390] = {.lex_state = 131}, + [3391] = {.lex_state = 131}, + [3392] = {.lex_state = 131}, + [3393] = {.lex_state = 131}, + [3394] = {.lex_state = 120}, + [3395] = {.lex_state = 116, .external_lex_state = 30}, + [3396] = {.lex_state = 116, .external_lex_state = 30}, + [3397] = {.lex_state = 116, .external_lex_state = 30}, + [3398] = {.lex_state = 116, .external_lex_state = 30}, + [3399] = {.lex_state = 116, .external_lex_state = 30}, + [3400] = {.lex_state = 116, .external_lex_state = 30}, + [3401] = {.lex_state = 116, .external_lex_state = 30}, + [3402] = {.lex_state = 132}, + [3403] = {.lex_state = 231}, + [3404] = {.lex_state = 231}, + [3405] = {.lex_state = 231}, + [3406] = {.lex_state = 222, .external_lex_state = 25}, + [3407] = {.lex_state = 231}, + [3408] = {.lex_state = 231}, + [3409] = {.lex_state = 231}, + [3410] = {.lex_state = 231}, + [3411] = {.lex_state = 231}, + [3412] = {.lex_state = 231}, + [3413] = {.lex_state = 131, .external_lex_state = 26}, + [3414] = {.lex_state = 131, .external_lex_state = 26}, + [3415] = {.lex_state = 131, .external_lex_state = 26}, + [3416] = {.lex_state = 222, .external_lex_state = 19}, + [3417] = {.lex_state = 222, .external_lex_state = 19}, + [3418] = {.lex_state = 51, .external_lex_state = 19}, + [3419] = {.lex_state = 222, .external_lex_state = 25}, + [3420] = {.lex_state = 131, .external_lex_state = 26}, + [3421] = {.lex_state = 131, .external_lex_state = 26}, + [3422] = {.lex_state = 131, .external_lex_state = 26}, + [3423] = {.lex_state = 131, .external_lex_state = 26}, + [3424] = {.lex_state = 131, .external_lex_state = 26}, + [3425] = {.lex_state = 131, .external_lex_state = 26}, + [3426] = {.lex_state = 222, .external_lex_state = 25}, + [3427] = {.lex_state = 131, .external_lex_state = 26}, + [3428] = {.lex_state = 51, .external_lex_state = 19}, + [3429] = {.lex_state = 222, .external_lex_state = 25}, + [3430] = {.lex_state = 222, .external_lex_state = 19}, + [3431] = {.lex_state = 131, .external_lex_state = 26}, + [3432] = {.lex_state = 222, .external_lex_state = 25}, + [3433] = {.lex_state = 131, .external_lex_state = 26}, + [3434] = {.lex_state = 131, .external_lex_state = 26}, + [3435] = {.lex_state = 222, .external_lex_state = 25}, + [3436] = {.lex_state = 131, .external_lex_state = 26}, + [3437] = {.lex_state = 131, .external_lex_state = 26}, + [3438] = {.lex_state = 222, .external_lex_state = 25}, + [3439] = {.lex_state = 131, .external_lex_state = 26}, + [3440] = {.lex_state = 222, .external_lex_state = 25}, + [3441] = {.lex_state = 222, .external_lex_state = 25}, + [3442] = {.lex_state = 222, .external_lex_state = 25}, + [3443] = {.lex_state = 51, .external_lex_state = 19}, + [3444] = {.lex_state = 51, .external_lex_state = 19}, + [3445] = {.lex_state = 131, .external_lex_state = 26}, + [3446] = {.lex_state = 131, .external_lex_state = 26}, + [3447] = {.lex_state = 222, .external_lex_state = 19}, + [3448] = {.lex_state = 51, .external_lex_state = 19}, + [3449] = {.lex_state = 131, .external_lex_state = 26}, + [3450] = {.lex_state = 222, .external_lex_state = 25}, + [3451] = {.lex_state = 131, .external_lex_state = 26}, + [3452] = {.lex_state = 131, .external_lex_state = 26}, + [3453] = {.lex_state = 131, .external_lex_state = 26}, + [3454] = {.lex_state = 131, .external_lex_state = 26}, + [3455] = {.lex_state = 222, .external_lex_state = 25}, + [3456] = {.lex_state = 116, .external_lex_state = 30}, + [3457] = {.lex_state = 222, .external_lex_state = 25}, + [3458] = {.lex_state = 222, .external_lex_state = 25}, + [3459] = {.lex_state = 222, .external_lex_state = 25}, + [3460] = {.lex_state = 133}, + [3461] = {.lex_state = 222, .external_lex_state = 25}, + [3462] = {.lex_state = 222, .external_lex_state = 25}, + [3463] = {.lex_state = 222, .external_lex_state = 25}, + [3464] = {.lex_state = 51, .external_lex_state = 19}, + [3465] = {.lex_state = 222, .external_lex_state = 19}, + [3466] = {.lex_state = 222, .external_lex_state = 19}, + [3467] = {.lex_state = 116, .external_lex_state = 30}, + [3468] = {.lex_state = 116, .external_lex_state = 30}, + [3469] = {.lex_state = 116, .external_lex_state = 30}, + [3470] = {.lex_state = 222, .external_lex_state = 25}, + [3471] = {.lex_state = 116, .external_lex_state = 30}, + [3472] = {.lex_state = 222, .external_lex_state = 25}, + [3473] = {.lex_state = 133}, + [3474] = {.lex_state = 116, .external_lex_state = 30}, + [3475] = {.lex_state = 222, .external_lex_state = 25}, + [3476] = {.lex_state = 116, .external_lex_state = 30}, + [3477] = {.lex_state = 222, .external_lex_state = 25}, + [3478] = {.lex_state = 222, .external_lex_state = 25}, + [3479] = {.lex_state = 222, .external_lex_state = 25}, + [3480] = {.lex_state = 222, .external_lex_state = 25}, + [3481] = {.lex_state = 116, .external_lex_state = 30}, + [3482] = {.lex_state = 222, .external_lex_state = 25}, + [3483] = {.lex_state = 51, .external_lex_state = 19}, + [3484] = {.lex_state = 222, .external_lex_state = 25}, + [3485] = {.lex_state = 116, .external_lex_state = 30}, + [3486] = {.lex_state = 222, .external_lex_state = 25}, + [3487] = {.lex_state = 222, .external_lex_state = 19}, + [3488] = {.lex_state = 222, .external_lex_state = 25}, + [3489] = {.lex_state = 222, .external_lex_state = 25}, + [3490] = {.lex_state = 222, .external_lex_state = 25}, + [3491] = {.lex_state = 222, .external_lex_state = 25}, + [3492] = {.lex_state = 116, .external_lex_state = 30}, + [3493] = {.lex_state = 222, .external_lex_state = 19}, + [3494] = {.lex_state = 133}, + [3495] = {.lex_state = 116, .external_lex_state = 30}, + [3496] = {.lex_state = 222, .external_lex_state = 25}, + [3497] = {.lex_state = 133}, + [3498] = {.lex_state = 222, .external_lex_state = 25}, + [3499] = {.lex_state = 133}, + [3500] = {.lex_state = 222, .external_lex_state = 25}, + [3501] = {.lex_state = 116, .external_lex_state = 30}, + [3502] = {.lex_state = 116, .external_lex_state = 30}, + [3503] = {.lex_state = 116, .external_lex_state = 30}, + [3504] = {.lex_state = 222, .external_lex_state = 25}, + [3505] = {.lex_state = 222, .external_lex_state = 25}, + [3506] = {.lex_state = 116, .external_lex_state = 30}, + [3507] = {.lex_state = 116, .external_lex_state = 30}, + [3508] = {.lex_state = 222, .external_lex_state = 25}, + [3509] = {.lex_state = 222, .external_lex_state = 25}, + [3510] = {.lex_state = 222, .external_lex_state = 25}, + [3511] = {.lex_state = 116, .external_lex_state = 30}, + [3512] = {.lex_state = 222, .external_lex_state = 25}, + [3513] = {.lex_state = 222, .external_lex_state = 19}, + [3514] = {.lex_state = 222, .external_lex_state = 25}, + [3515] = {.lex_state = 116, .external_lex_state = 30}, + [3516] = {.lex_state = 133}, + [3517] = {.lex_state = 131}, + [3518] = {.lex_state = 222, .external_lex_state = 25}, + [3519] = {.lex_state = 116, .external_lex_state = 30}, + [3520] = {.lex_state = 131}, + [3521] = {.lex_state = 116, .external_lex_state = 30}, + [3522] = {.lex_state = 222, .external_lex_state = 19}, + [3523] = {.lex_state = 222, .external_lex_state = 19}, + [3524] = {.lex_state = 133}, + [3525] = {.lex_state = 133}, + [3526] = {.lex_state = 222, .external_lex_state = 19}, + [3527] = {.lex_state = 133}, + [3528] = {.lex_state = 133}, + [3529] = {.lex_state = 222, .external_lex_state = 19}, + [3530] = {.lex_state = 133}, + [3531] = {.lex_state = 133}, + [3532] = {.lex_state = 231, .external_lex_state = 26}, + [3533] = {.lex_state = 231, .external_lex_state = 26}, + [3534] = {.lex_state = 133}, + [3535] = {.lex_state = 222, .external_lex_state = 19}, + [3536] = {.lex_state = 126}, + [3537] = {.lex_state = 133}, + [3538] = {.lex_state = 222, .external_lex_state = 19}, + [3539] = {.lex_state = 231, .external_lex_state = 26}, + [3540] = {.lex_state = 133}, + [3541] = {.lex_state = 222, .external_lex_state = 19}, + [3542] = {.lex_state = 231, .external_lex_state = 26}, + [3543] = {.lex_state = 222, .external_lex_state = 19}, + [3544] = {.lex_state = 231, .external_lex_state = 26}, + [3545] = {.lex_state = 231, .external_lex_state = 26}, + [3546] = {.lex_state = 133}, + [3547] = {.lex_state = 133}, + [3548] = {.lex_state = 222, .external_lex_state = 19}, + [3549] = {.lex_state = 126, .external_lex_state = 26}, + [3550] = {.lex_state = 133}, + [3551] = {.lex_state = 133}, + [3552] = {.lex_state = 133}, + [3553] = {.lex_state = 133}, + [3554] = {.lex_state = 133}, + [3555] = {.lex_state = 222, .external_lex_state = 19}, + [3556] = {.lex_state = 126}, + [3557] = {.lex_state = 133}, + [3558] = {.lex_state = 222, .external_lex_state = 19}, + [3559] = {.lex_state = 222, .external_lex_state = 19}, + [3560] = {.lex_state = 222, .external_lex_state = 19}, + [3561] = {.lex_state = 222, .external_lex_state = 19}, + [3562] = {.lex_state = 133}, + [3563] = {.lex_state = 231, .external_lex_state = 26}, + [3564] = {.lex_state = 133}, + [3565] = {.lex_state = 133}, + [3566] = {.lex_state = 133}, + [3567] = {.lex_state = 133}, + [3568] = {.lex_state = 133}, + [3569] = {.lex_state = 133}, + [3570] = {.lex_state = 133}, + [3571] = {.lex_state = 126}, + [3572] = {.lex_state = 222, .external_lex_state = 19}, + [3573] = {.lex_state = 231, .external_lex_state = 26}, + [3574] = {.lex_state = 126}, + [3575] = {.lex_state = 116}, + [3576] = {.lex_state = 116}, + [3577] = {.lex_state = 126}, + [3578] = {.lex_state = 231, .external_lex_state = 26}, + [3579] = {.lex_state = 231, .external_lex_state = 26}, + [3580] = {.lex_state = 133}, + [3581] = {.lex_state = 222, .external_lex_state = 19}, + [3582] = {.lex_state = 133}, + [3583] = {.lex_state = 133}, + [3584] = {.lex_state = 133}, + [3585] = {.lex_state = 116}, + [3586] = {.lex_state = 133}, + [3587] = {.lex_state = 133}, + [3588] = {.lex_state = 133}, + [3589] = {.lex_state = 116}, + [3590] = {.lex_state = 222, .external_lex_state = 19}, + [3591] = {.lex_state = 116}, + [3592] = {.lex_state = 133}, + [3593] = {.lex_state = 133}, + [3594] = {.lex_state = 116}, + [3595] = {.lex_state = 133}, + [3596] = {.lex_state = 222, .external_lex_state = 19}, + [3597] = {.lex_state = 133}, + [3598] = {.lex_state = 133}, + [3599] = {.lex_state = 222, .external_lex_state = 19}, + [3600] = {.lex_state = 222, .external_lex_state = 19}, + [3601] = {.lex_state = 133}, + [3602] = {.lex_state = 116}, + [3603] = {.lex_state = 116}, + [3604] = {.lex_state = 133}, + [3605] = {.lex_state = 133}, + [3606] = {.lex_state = 231, .external_lex_state = 26}, + [3607] = {.lex_state = 133}, + [3608] = {.lex_state = 133}, + [3609] = {.lex_state = 231, .external_lex_state = 26}, + [3610] = {.lex_state = 105, .external_lex_state = 28}, + [3611] = {.lex_state = 116}, + [3612] = {.lex_state = 116}, + [3613] = {.lex_state = 128, .external_lex_state = 21}, + [3614] = {.lex_state = 105, .external_lex_state = 28}, + [3615] = {.lex_state = 222, .external_lex_state = 19}, + [3616] = {.lex_state = 133}, + [3617] = {.lex_state = 133}, + [3618] = {.lex_state = 222, .external_lex_state = 19}, + [3619] = {.lex_state = 133}, + [3620] = {.lex_state = 116}, + [3621] = {.lex_state = 105, .external_lex_state = 28}, + [3622] = {.lex_state = 105, .external_lex_state = 28}, + [3623] = {.lex_state = 133}, + [3624] = {.lex_state = 133}, + [3625] = {.lex_state = 222, .external_lex_state = 19}, + [3626] = {.lex_state = 133}, + [3627] = {.lex_state = 222, .external_lex_state = 19}, + [3628] = {.lex_state = 133}, + [3629] = {.lex_state = 116}, + [3630] = {.lex_state = 112, .external_lex_state = 21}, + [3631] = {.lex_state = 112, .external_lex_state = 21}, + [3632] = {.lex_state = 231}, + [3633] = {.lex_state = 112, .external_lex_state = 21}, + [3634] = {.lex_state = 112, .external_lex_state = 21}, + [3635] = {.lex_state = 112, .external_lex_state = 21}, + [3636] = {.lex_state = 112, .external_lex_state = 21}, + [3637] = {.lex_state = 128, .external_lex_state = 16}, + [3638] = {.lex_state = 132}, + [3639] = {.lex_state = 112, .external_lex_state = 21}, + [3640] = {.lex_state = 128, .external_lex_state = 16}, + [3641] = {.lex_state = 128, .external_lex_state = 16}, + [3642] = {.lex_state = 231}, + [3643] = {.lex_state = 112, .external_lex_state = 21}, + [3644] = {.lex_state = 112, .external_lex_state = 21}, + [3645] = {.lex_state = 231}, + [3646] = {.lex_state = 231}, + [3647] = {.lex_state = 128, .external_lex_state = 16}, + [3648] = {.lex_state = 231}, + [3649] = {.lex_state = 112, .external_lex_state = 21}, + [3650] = {.lex_state = 112, .external_lex_state = 21}, + [3651] = {.lex_state = 231}, + [3652] = {.lex_state = 231}, + [3653] = {.lex_state = 112, .external_lex_state = 21}, + [3654] = {.lex_state = 112, .external_lex_state = 21}, + [3655] = {.lex_state = 132}, + [3656] = {.lex_state = 128, .external_lex_state = 16}, + [3657] = {.lex_state = 112, .external_lex_state = 21}, + [3658] = {.lex_state = 112, .external_lex_state = 21}, + [3659] = {.lex_state = 112, .external_lex_state = 21}, + [3660] = {.lex_state = 132, .external_lex_state = 26}, + [3661] = {.lex_state = 128, .external_lex_state = 16}, + [3662] = {.lex_state = 112, .external_lex_state = 21}, + [3663] = {.lex_state = 112, .external_lex_state = 21}, + [3664] = {.lex_state = 112, .external_lex_state = 21}, + [3665] = {.lex_state = 128, .external_lex_state = 16}, + [3666] = {.lex_state = 128, .external_lex_state = 16}, + [3667] = {.lex_state = 112, .external_lex_state = 21}, + [3668] = {.lex_state = 112, .external_lex_state = 21}, + [3669] = {.lex_state = 112, .external_lex_state = 21}, + [3670] = {.lex_state = 112, .external_lex_state = 21}, + [3671] = {.lex_state = 128, .external_lex_state = 16}, + [3672] = {.lex_state = 231}, + [3673] = {.lex_state = 128, .external_lex_state = 16}, + [3674] = {.lex_state = 112, .external_lex_state = 21}, + [3675] = {.lex_state = 128, .external_lex_state = 16}, + [3676] = {.lex_state = 112, .external_lex_state = 21}, + [3677] = {.lex_state = 112, .external_lex_state = 21}, + [3678] = {.lex_state = 112, .external_lex_state = 21}, + [3679] = {.lex_state = 231}, + [3680] = {.lex_state = 128, .external_lex_state = 16}, + [3681] = {.lex_state = 112, .external_lex_state = 21}, + [3682] = {.lex_state = 112, .external_lex_state = 21}, + [3683] = {.lex_state = 112, .external_lex_state = 21}, + [3684] = {.lex_state = 128, .external_lex_state = 16}, + [3685] = {.lex_state = 112, .external_lex_state = 21}, + [3686] = {.lex_state = 112, .external_lex_state = 21}, + [3687] = {.lex_state = 112, .external_lex_state = 21}, + [3688] = {.lex_state = 112, .external_lex_state = 21}, + [3689] = {.lex_state = 112, .external_lex_state = 21}, + [3690] = {.lex_state = 132, .external_lex_state = 26}, + [3691] = {.lex_state = 112, .external_lex_state = 21}, + [3692] = {.lex_state = 128, .external_lex_state = 16}, + [3693] = {.lex_state = 105, .external_lex_state = 28}, + [3694] = {.lex_state = 112, .external_lex_state = 21}, + [3695] = {.lex_state = 132}, + [3696] = {.lex_state = 128, .external_lex_state = 16}, + [3697] = {.lex_state = 128, .external_lex_state = 16}, + [3698] = {.lex_state = 128, .external_lex_state = 16}, + [3699] = {.lex_state = 128, .external_lex_state = 16}, + [3700] = {.lex_state = 112, .external_lex_state = 21}, + [3701] = {.lex_state = 112, .external_lex_state = 21}, + [3702] = {.lex_state = 231}, + [3703] = {.lex_state = 112, .external_lex_state = 21}, + [3704] = {.lex_state = 128, .external_lex_state = 16}, + [3705] = {.lex_state = 132}, + [3706] = {.lex_state = 112, .external_lex_state = 21}, + [3707] = {.lex_state = 112, .external_lex_state = 21}, + [3708] = {.lex_state = 112, .external_lex_state = 21}, + [3709] = {.lex_state = 112, .external_lex_state = 21}, + [3710] = {.lex_state = 128, .external_lex_state = 16}, + [3711] = {.lex_state = 128, .external_lex_state = 16}, + [3712] = {.lex_state = 231}, + [3713] = {.lex_state = 231}, + [3714] = {.lex_state = 231}, + [3715] = {.lex_state = 112, .external_lex_state = 21}, + [3716] = {.lex_state = 231}, + [3717] = {.lex_state = 231}, + [3718] = {.lex_state = 112, .external_lex_state = 21}, + [3719] = {.lex_state = 128, .external_lex_state = 16}, + [3720] = {.lex_state = 128, .external_lex_state = 16}, + [3721] = {.lex_state = 112, .external_lex_state = 21}, + [3722] = {.lex_state = 112, .external_lex_state = 21}, + [3723] = {.lex_state = 112, .external_lex_state = 21}, + [3724] = {.lex_state = 112, .external_lex_state = 21}, + [3725] = {.lex_state = 128, .external_lex_state = 16}, + [3726] = {.lex_state = 112, .external_lex_state = 21}, + [3727] = {.lex_state = 128, .external_lex_state = 16}, + [3728] = {.lex_state = 112, .external_lex_state = 21}, + [3729] = {.lex_state = 112, .external_lex_state = 21}, + [3730] = {.lex_state = 112, .external_lex_state = 21}, + [3731] = {.lex_state = 112, .external_lex_state = 21}, + [3732] = {.lex_state = 231}, + [3733] = {.lex_state = 112, .external_lex_state = 21}, + [3734] = {.lex_state = 105, .external_lex_state = 28}, + [3735] = {.lex_state = 128, .external_lex_state = 16}, + [3736] = {.lex_state = 128, .external_lex_state = 16}, + [3737] = {.lex_state = 112, .external_lex_state = 21}, + [3738] = {.lex_state = 112, .external_lex_state = 21}, + [3739] = {.lex_state = 112, .external_lex_state = 21}, + [3740] = {.lex_state = 128, .external_lex_state = 16}, + [3741] = {.lex_state = 112, .external_lex_state = 21}, + [3742] = {.lex_state = 105, .external_lex_state = 28}, + [3743] = {.lex_state = 128, .external_lex_state = 16}, + [3744] = {.lex_state = 112, .external_lex_state = 21}, + [3745] = {.lex_state = 112, .external_lex_state = 21}, + [3746] = {.lex_state = 112, .external_lex_state = 21}, + [3747] = {.lex_state = 112, .external_lex_state = 21}, + [3748] = {.lex_state = 128, .external_lex_state = 16}, + [3749] = {.lex_state = 105, .external_lex_state = 28}, + [3750] = {.lex_state = 128, .external_lex_state = 16}, + [3751] = {.lex_state = 112, .external_lex_state = 21}, + [3752] = {.lex_state = 132, .external_lex_state = 26}, + [3753] = {.lex_state = 112, .external_lex_state = 21}, + [3754] = {.lex_state = 112, .external_lex_state = 21}, + [3755] = {.lex_state = 231}, + [3756] = {.lex_state = 128, .external_lex_state = 16}, + [3757] = {.lex_state = 231}, + [3758] = {.lex_state = 128, .external_lex_state = 16}, + [3759] = {.lex_state = 132}, + [3760] = {.lex_state = 128, .external_lex_state = 16}, + [3761] = {.lex_state = 112, .external_lex_state = 21}, + [3762] = {.lex_state = 112, .external_lex_state = 21}, + [3763] = {.lex_state = 112, .external_lex_state = 21}, + [3764] = {.lex_state = 132, .external_lex_state = 26}, + [3765] = {.lex_state = 112, .external_lex_state = 21}, + [3766] = {.lex_state = 128, .external_lex_state = 16}, + [3767] = {.lex_state = 112, .external_lex_state = 21}, + [3768] = {.lex_state = 112, .external_lex_state = 21}, + [3769] = {.lex_state = 128, .external_lex_state = 16}, + [3770] = {.lex_state = 128, .external_lex_state = 16}, + [3771] = {.lex_state = 112, .external_lex_state = 21}, + [3772] = {.lex_state = 112, .external_lex_state = 21}, + [3773] = {.lex_state = 112, .external_lex_state = 21}, + [3774] = {.lex_state = 112, .external_lex_state = 21}, + [3775] = {.lex_state = 231}, + [3776] = {.lex_state = 128, .external_lex_state = 16}, + [3777] = {.lex_state = 128, .external_lex_state = 16}, + [3778] = {.lex_state = 112, .external_lex_state = 21}, + [3779] = {.lex_state = 112, .external_lex_state = 21}, + [3780] = {.lex_state = 112, .external_lex_state = 21}, + [3781] = {.lex_state = 105, .external_lex_state = 28}, + [3782] = {.lex_state = 112, .external_lex_state = 21}, + [3783] = {.lex_state = 128, .external_lex_state = 16}, + [3784] = {.lex_state = 112, .external_lex_state = 21}, + [3785] = {.lex_state = 112, .external_lex_state = 21}, + [3786] = {.lex_state = 128, .external_lex_state = 16}, + [3787] = {.lex_state = 112, .external_lex_state = 21}, + [3788] = {.lex_state = 128, .external_lex_state = 16}, + [3789] = {.lex_state = 231}, + [3790] = {.lex_state = 128, .external_lex_state = 16}, + [3791] = {.lex_state = 128, .external_lex_state = 16}, + [3792] = {.lex_state = 112, .external_lex_state = 21}, + [3793] = {.lex_state = 112, .external_lex_state = 21}, + [3794] = {.lex_state = 231}, + [3795] = {.lex_state = 112, .external_lex_state = 21}, + [3796] = {.lex_state = 132}, + [3797] = {.lex_state = 231}, + [3798] = {.lex_state = 112, .external_lex_state = 21}, + [3799] = {.lex_state = 112, .external_lex_state = 21}, + [3800] = {.lex_state = 128, .external_lex_state = 16}, + [3801] = {.lex_state = 128, .external_lex_state = 16}, + [3802] = {.lex_state = 231}, + [3803] = {.lex_state = 128, .external_lex_state = 16}, + [3804] = {.lex_state = 112, .external_lex_state = 21}, + [3805] = {.lex_state = 112, .external_lex_state = 21}, + [3806] = {.lex_state = 112, .external_lex_state = 21}, + [3807] = {.lex_state = 231}, + [3808] = {.lex_state = 128, .external_lex_state = 16}, + [3809] = {.lex_state = 231}, + [3810] = {.lex_state = 231}, + [3811] = {.lex_state = 112, .external_lex_state = 21}, + [3812] = {.lex_state = 112, .external_lex_state = 21}, + [3813] = {.lex_state = 112, .external_lex_state = 21}, + [3814] = {.lex_state = 112, .external_lex_state = 21}, + [3815] = {.lex_state = 128, .external_lex_state = 16}, + [3816] = {.lex_state = 112, .external_lex_state = 21}, + [3817] = {.lex_state = 112, .external_lex_state = 21}, + [3818] = {.lex_state = 132}, + [3819] = {.lex_state = 128, .external_lex_state = 16}, + [3820] = {.lex_state = 112, .external_lex_state = 21}, + [3821] = {.lex_state = 231}, + [3822] = {.lex_state = 112, .external_lex_state = 21}, + [3823] = {.lex_state = 128, .external_lex_state = 16}, + [3824] = {.lex_state = 112, .external_lex_state = 21}, + [3825] = {.lex_state = 128, .external_lex_state = 16}, + [3826] = {.lex_state = 112, .external_lex_state = 21}, + [3827] = {.lex_state = 112, .external_lex_state = 21}, + [3828] = {.lex_state = 231}, + [3829] = {.lex_state = 231}, + [3830] = {.lex_state = 128, .external_lex_state = 16}, + [3831] = {.lex_state = 112, .external_lex_state = 21}, + [3832] = {.lex_state = 112, .external_lex_state = 21}, + [3833] = {.lex_state = 128, .external_lex_state = 16}, + [3834] = {.lex_state = 112, .external_lex_state = 21}, + [3835] = {.lex_state = 112, .external_lex_state = 21}, + [3836] = {.lex_state = 231}, + [3837] = {.lex_state = 231}, + [3838] = {.lex_state = 132}, + [3839] = {.lex_state = 112, .external_lex_state = 21}, + [3840] = {.lex_state = 112, .external_lex_state = 21}, + [3841] = {.lex_state = 112, .external_lex_state = 21}, + [3842] = {.lex_state = 112, .external_lex_state = 21}, + [3843] = {.lex_state = 112, .external_lex_state = 21}, + [3844] = {.lex_state = 112, .external_lex_state = 21}, + [3845] = {.lex_state = 128, .external_lex_state = 16}, + [3846] = {.lex_state = 128, .external_lex_state = 16}, + [3847] = {.lex_state = 112, .external_lex_state = 21}, + [3848] = {.lex_state = 128, .external_lex_state = 16}, + [3849] = {.lex_state = 112, .external_lex_state = 21}, + [3850] = {.lex_state = 112, .external_lex_state = 21}, + [3851] = {.lex_state = 112, .external_lex_state = 21}, + [3852] = {.lex_state = 128, .external_lex_state = 16}, + [3853] = {.lex_state = 128, .external_lex_state = 16}, + [3854] = {.lex_state = 128, .external_lex_state = 16}, + [3855] = {.lex_state = 112, .external_lex_state = 21}, + [3856] = {.lex_state = 112, .external_lex_state = 21}, + [3857] = {.lex_state = 112, .external_lex_state = 21}, + [3858] = {.lex_state = 112, .external_lex_state = 21}, + [3859] = {.lex_state = 112, .external_lex_state = 21}, + [3860] = {.lex_state = 128, .external_lex_state = 16}, + [3861] = {.lex_state = 112, .external_lex_state = 21}, + [3862] = {.lex_state = 231}, + [3863] = {.lex_state = 132}, + [3864] = {.lex_state = 112, .external_lex_state = 21}, + [3865] = {.lex_state = 132}, + [3866] = {.lex_state = 112, .external_lex_state = 21}, + [3867] = {.lex_state = 128, .external_lex_state = 16}, + [3868] = {.lex_state = 112, .external_lex_state = 21}, + [3869] = {.lex_state = 128, .external_lex_state = 16}, + [3870] = {.lex_state = 112, .external_lex_state = 21}, + [3871] = {.lex_state = 128, .external_lex_state = 16}, + [3872] = {.lex_state = 112, .external_lex_state = 21}, + [3873] = {.lex_state = 112, .external_lex_state = 21}, + [3874] = {.lex_state = 112, .external_lex_state = 21}, + [3875] = {.lex_state = 231}, + [3876] = {.lex_state = 128, .external_lex_state = 16}, + [3877] = {.lex_state = 105, .external_lex_state = 28}, + [3878] = {.lex_state = 112, .external_lex_state = 21}, + [3879] = {.lex_state = 112, .external_lex_state = 21}, + [3880] = {.lex_state = 112, .external_lex_state = 21}, + [3881] = {.lex_state = 112, .external_lex_state = 21}, + [3882] = {.lex_state = 112, .external_lex_state = 21}, + [3883] = {.lex_state = 112, .external_lex_state = 21}, + [3884] = {.lex_state = 128, .external_lex_state = 16}, + [3885] = {.lex_state = 128, .external_lex_state = 16}, + [3886] = {.lex_state = 105, .external_lex_state = 28}, + [3887] = {.lex_state = 112, .external_lex_state = 21}, + [3888] = {.lex_state = 105, .external_lex_state = 28}, + [3889] = {.lex_state = 128, .external_lex_state = 16}, + [3890] = {.lex_state = 112, .external_lex_state = 21}, + [3891] = {.lex_state = 112, .external_lex_state = 21}, + [3892] = {.lex_state = 128, .external_lex_state = 16}, + [3893] = {.lex_state = 105, .external_lex_state = 28}, + [3894] = {.lex_state = 132}, + [3895] = {.lex_state = 132}, + [3896] = {.lex_state = 105, .external_lex_state = 28}, + [3897] = {.lex_state = 112, .external_lex_state = 21}, + [3898] = {.lex_state = 112, .external_lex_state = 21}, + [3899] = {.lex_state = 105, .external_lex_state = 28}, + [3900] = {.lex_state = 105, .external_lex_state = 28}, + [3901] = {.lex_state = 112, .external_lex_state = 21}, + [3902] = {.lex_state = 105, .external_lex_state = 28}, + [3903] = {.lex_state = 132}, + [3904] = {.lex_state = 132}, + [3905] = {.lex_state = 105, .external_lex_state = 28}, + [3906] = {.lex_state = 132}, + [3907] = {.lex_state = 105, .external_lex_state = 28}, + [3908] = {.lex_state = 132}, + [3909] = {.lex_state = 112, .external_lex_state = 21}, + [3910] = {.lex_state = 133}, + [3911] = {.lex_state = 132}, + [3912] = {.lex_state = 132}, + [3913] = {.lex_state = 132}, + [3914] = {.lex_state = 105, .external_lex_state = 28}, + [3915] = {.lex_state = 132}, + [3916] = {.lex_state = 132}, + [3917] = {.lex_state = 132}, + [3918] = {.lex_state = 132}, + [3919] = {.lex_state = 112, .external_lex_state = 21}, + [3920] = {.lex_state = 132}, + [3921] = {.lex_state = 112, .external_lex_state = 21}, + [3922] = {.lex_state = 132}, + [3923] = {.lex_state = 105, .external_lex_state = 28}, + [3924] = {.lex_state = 105, .external_lex_state = 28}, + [3925] = {.lex_state = 132}, + [3926] = {.lex_state = 132}, + [3927] = {.lex_state = 112, .external_lex_state = 21}, + [3928] = {.lex_state = 112, .external_lex_state = 21}, + [3929] = {.lex_state = 231}, + [3930] = {.lex_state = 117}, + [3931] = {.lex_state = 132}, + [3932] = {.lex_state = 112, .external_lex_state = 21}, + [3933] = {.lex_state = 132}, + [3934] = {.lex_state = 132}, + [3935] = {.lex_state = 132}, + [3936] = {.lex_state = 112, .external_lex_state = 21}, + [3937] = {.lex_state = 112, .external_lex_state = 21}, + [3938] = {.lex_state = 132}, + [3939] = {.lex_state = 132}, + [3940] = {.lex_state = 132}, + [3941] = {.lex_state = 132}, + [3942] = {.lex_state = 105, .external_lex_state = 28}, + [3943] = {.lex_state = 133}, + [3944] = {.lex_state = 132}, + [3945] = {.lex_state = 105, .external_lex_state = 28}, + [3946] = {.lex_state = 132}, + [3947] = {.lex_state = 133}, + [3948] = {.lex_state = 132}, + [3949] = {.lex_state = 132}, + [3950] = {.lex_state = 132}, + [3951] = {.lex_state = 132}, + [3952] = {.lex_state = 132}, + [3953] = {.lex_state = 132}, + [3954] = {.lex_state = 105, .external_lex_state = 28}, + [3955] = {.lex_state = 132}, + [3956] = {.lex_state = 132}, + [3957] = {.lex_state = 112, .external_lex_state = 21}, + [3958] = {.lex_state = 105, .external_lex_state = 28}, + [3959] = {.lex_state = 132}, + [3960] = {.lex_state = 112, .external_lex_state = 21}, + [3961] = {.lex_state = 132}, + [3962] = {.lex_state = 132}, + [3963] = {.lex_state = 132}, + [3964] = {.lex_state = 105, .external_lex_state = 28}, + [3965] = {.lex_state = 132}, + [3966] = {.lex_state = 112, .external_lex_state = 21}, + [3967] = {.lex_state = 132}, + [3968] = {.lex_state = 105, .external_lex_state = 28}, + [3969] = {.lex_state = 133}, + [3970] = {.lex_state = 105, .external_lex_state = 28}, + [3971] = {.lex_state = 112, .external_lex_state = 21}, + [3972] = {.lex_state = 112, .external_lex_state = 21}, + [3973] = {.lex_state = 105, .external_lex_state = 28}, + [3974] = {.lex_state = 105, .external_lex_state = 28}, + [3975] = {.lex_state = 132}, + [3976] = {.lex_state = 132}, + [3977] = {.lex_state = 132}, + [3978] = {.lex_state = 112, .external_lex_state = 21}, + [3979] = {.lex_state = 112, .external_lex_state = 21}, + [3980] = {.lex_state = 132}, + [3981] = {.lex_state = 132}, + [3982] = {.lex_state = 132}, + [3983] = {.lex_state = 105, .external_lex_state = 28}, + [3984] = {.lex_state = 112, .external_lex_state = 21}, + [3985] = {.lex_state = 132}, + [3986] = {.lex_state = 132}, + [3987] = {.lex_state = 132}, + [3988] = {.lex_state = 132}, + [3989] = {.lex_state = 105, .external_lex_state = 28}, + [3990] = {.lex_state = 105, .external_lex_state = 28}, + [3991] = {.lex_state = 132}, + [3992] = {.lex_state = 132}, + [3993] = {.lex_state = 132}, + [3994] = {.lex_state = 133}, + [3995] = {.lex_state = 133}, + [3996] = {.lex_state = 132}, + [3997] = {.lex_state = 105, .external_lex_state = 28}, + [3998] = {.lex_state = 132}, + [3999] = {.lex_state = 112, .external_lex_state = 21}, + [4000] = {.lex_state = 112, .external_lex_state = 21}, + [4001] = {.lex_state = 112, .external_lex_state = 21}, + [4002] = {.lex_state = 132}, + [4003] = {.lex_state = 132}, + [4004] = {.lex_state = 132}, + [4005] = {.lex_state = 132}, + [4006] = {.lex_state = 132}, + [4007] = {.lex_state = 112, .external_lex_state = 21}, + [4008] = {.lex_state = 128, .external_lex_state = 16}, + [4009] = {.lex_state = 132}, + [4010] = {.lex_state = 132}, + [4011] = {.lex_state = 133}, + [4012] = {.lex_state = 112, .external_lex_state = 21}, + [4013] = {.lex_state = 132}, + [4014] = {.lex_state = 132}, + [4015] = {.lex_state = 132}, + [4016] = {.lex_state = 112, .external_lex_state = 21}, + [4017] = {.lex_state = 105, .external_lex_state = 28}, + [4018] = {.lex_state = 132}, + [4019] = {.lex_state = 132}, + [4020] = {.lex_state = 132}, + [4021] = {.lex_state = 105, .external_lex_state = 28}, + [4022] = {.lex_state = 133}, + [4023] = {.lex_state = 132}, + [4024] = {.lex_state = 132}, + [4025] = {.lex_state = 105, .external_lex_state = 28}, + [4026] = {.lex_state = 132}, + [4027] = {.lex_state = 132}, + [4028] = {.lex_state = 112, .external_lex_state = 21}, + [4029] = {.lex_state = 132}, + [4030] = {.lex_state = 112, .external_lex_state = 21}, + [4031] = {.lex_state = 132}, + [4032] = {.lex_state = 112, .external_lex_state = 21}, + [4033] = {.lex_state = 132}, + [4034] = {.lex_state = 133}, + [4035] = {.lex_state = 105, .external_lex_state = 28}, + [4036] = {.lex_state = 132}, + [4037] = {.lex_state = 133}, + [4038] = {.lex_state = 105, .external_lex_state = 28}, + [4039] = {.lex_state = 132}, + [4040] = {.lex_state = 132}, + [4041] = {.lex_state = 132}, + [4042] = {.lex_state = 132}, + [4043] = {.lex_state = 117}, + [4044] = {.lex_state = 117}, + [4045] = {.lex_state = 132}, + [4046] = {.lex_state = 105, .external_lex_state = 28}, + [4047] = {.lex_state = 105, .external_lex_state = 28}, + [4048] = {.lex_state = 231}, + [4049] = {.lex_state = 116}, + [4050] = {.lex_state = 231}, + [4051] = {.lex_state = 116}, + [4052] = {.lex_state = 231}, + [4053] = {.lex_state = 116}, + [4054] = {.lex_state = 231}, + [4055] = {.lex_state = 112, .external_lex_state = 16}, + [4056] = {.lex_state = 116}, + [4057] = {.lex_state = 116}, + [4058] = {.lex_state = 116}, + [4059] = {.lex_state = 112, .external_lex_state = 16}, + [4060] = {.lex_state = 231}, + [4061] = {.lex_state = 133}, + [4062] = {.lex_state = 116}, + [4063] = {.lex_state = 112, .external_lex_state = 16}, + [4064] = {.lex_state = 133}, + [4065] = {.lex_state = 116}, + [4066] = {.lex_state = 133}, + [4067] = {.lex_state = 231}, + [4068] = {.lex_state = 231}, + [4069] = {.lex_state = 231}, + [4070] = {.lex_state = 112, .external_lex_state = 16}, + [4071] = {.lex_state = 112, .external_lex_state = 16}, + [4072] = {.lex_state = 231}, + [4073] = {.lex_state = 231}, + [4074] = {.lex_state = 231}, + [4075] = {.lex_state = 112, .external_lex_state = 16}, + [4076] = {.lex_state = 116}, + [4077] = {.lex_state = 116}, + [4078] = {.lex_state = 112, .external_lex_state = 16}, + [4079] = {.lex_state = 231}, + [4080] = {.lex_state = 133}, + [4081] = {.lex_state = 112, .external_lex_state = 16}, + [4082] = {.lex_state = 231}, + [4083] = {.lex_state = 231}, + [4084] = {.lex_state = 231}, + [4085] = {.lex_state = 133}, + [4086] = {.lex_state = 112, .external_lex_state = 16}, + [4087] = {.lex_state = 116}, + [4088] = {.lex_state = 112, .external_lex_state = 16}, + [4089] = {.lex_state = 112, .external_lex_state = 16}, + [4090] = {.lex_state = 231}, + [4091] = {.lex_state = 116}, + [4092] = {.lex_state = 116}, + [4093] = {.lex_state = 231}, + [4094] = {.lex_state = 133}, + [4095] = {.lex_state = 231}, + [4096] = {.lex_state = 112, .external_lex_state = 16}, + [4097] = {.lex_state = 112, .external_lex_state = 16}, + [4098] = {.lex_state = 112, .external_lex_state = 16}, + [4099] = {.lex_state = 231}, + [4100] = {.lex_state = 231}, + [4101] = {.lex_state = 231}, + [4102] = {.lex_state = 231}, + [4103] = {.lex_state = 112, .external_lex_state = 16}, + [4104] = {.lex_state = 112, .external_lex_state = 16}, + [4105] = {.lex_state = 231}, + [4106] = {.lex_state = 231}, + [4107] = {.lex_state = 231}, + [4108] = {.lex_state = 116}, + [4109] = {.lex_state = 112, .external_lex_state = 16}, + [4110] = {.lex_state = 112, .external_lex_state = 16}, + [4111] = {.lex_state = 231, .external_lex_state = 31}, + [4112] = {.lex_state = 231}, + [4113] = {.lex_state = 112, .external_lex_state = 16}, + [4114] = {.lex_state = 112, .external_lex_state = 16}, + [4115] = {.lex_state = 231}, + [4116] = {.lex_state = 231}, + [4117] = {.lex_state = 231}, + [4118] = {.lex_state = 116}, + [4119] = {.lex_state = 116}, + [4120] = {.lex_state = 133}, + [4121] = {.lex_state = 231}, + [4122] = {.lex_state = 112, .external_lex_state = 16}, + [4123] = {.lex_state = 116}, + [4124] = {.lex_state = 112, .external_lex_state = 16}, + [4125] = {.lex_state = 231, .external_lex_state = 31}, + [4126] = {.lex_state = 112, .external_lex_state = 16}, + [4127] = {.lex_state = 112, .external_lex_state = 16}, + [4128] = {.lex_state = 112, .external_lex_state = 16}, + [4129] = {.lex_state = 231, .external_lex_state = 31}, + [4130] = {.lex_state = 231}, + [4131] = {.lex_state = 231}, + [4132] = {.lex_state = 231}, + [4133] = {.lex_state = 231}, + [4134] = {.lex_state = 231}, + [4135] = {.lex_state = 231}, + [4136] = {.lex_state = 231}, + [4137] = {.lex_state = 112, .external_lex_state = 16}, + [4138] = {.lex_state = 112, .external_lex_state = 16}, + [4139] = {.lex_state = 231}, + [4140] = {.lex_state = 231}, + [4141] = {.lex_state = 231}, + [4142] = {.lex_state = 231}, + [4143] = {.lex_state = 116}, + [4144] = {.lex_state = 231, .external_lex_state = 31}, + [4145] = {.lex_state = 133}, + [4146] = {.lex_state = 112, .external_lex_state = 16}, + [4147] = {.lex_state = 231}, + [4148] = {.lex_state = 231}, + [4149] = {.lex_state = 112, .external_lex_state = 16}, + [4150] = {.lex_state = 231}, + [4151] = {.lex_state = 112, .external_lex_state = 16}, + [4152] = {.lex_state = 112, .external_lex_state = 16}, + [4153] = {.lex_state = 231}, + [4154] = {.lex_state = 231}, + [4155] = {.lex_state = 112, .external_lex_state = 16}, + [4156] = {.lex_state = 231}, + [4157] = {.lex_state = 231}, + [4158] = {.lex_state = 231}, + [4159] = {.lex_state = 231}, + [4160] = {.lex_state = 112, .external_lex_state = 16}, + [4161] = {.lex_state = 231}, + [4162] = {.lex_state = 231}, + [4163] = {.lex_state = 231}, + [4164] = {.lex_state = 231}, + [4165] = {.lex_state = 231}, + [4166] = {.lex_state = 231}, + [4167] = {.lex_state = 231}, + [4168] = {.lex_state = 231}, + [4169] = {.lex_state = 112, .external_lex_state = 16}, + [4170] = {.lex_state = 112, .external_lex_state = 16}, + [4171] = {.lex_state = 231}, + [4172] = {.lex_state = 116}, + [4173] = {.lex_state = 116}, + [4174] = {.lex_state = 231}, + [4175] = {.lex_state = 112, .external_lex_state = 16}, + [4176] = {.lex_state = 105, .external_lex_state = 24}, + [4177] = {.lex_state = 231}, + [4178] = {.lex_state = 105, .external_lex_state = 24}, + [4179] = {.lex_state = 231}, + [4180] = {.lex_state = 231}, + [4181] = {.lex_state = 112, .external_lex_state = 16}, + [4182] = {.lex_state = 112, .external_lex_state = 16}, + [4183] = {.lex_state = 231}, + [4184] = {.lex_state = 231}, + [4185] = {.lex_state = 116}, + [4186] = {.lex_state = 231}, + [4187] = {.lex_state = 231}, + [4188] = {.lex_state = 231}, + [4189] = {.lex_state = 116}, + [4190] = {.lex_state = 133}, + [4191] = {.lex_state = 133}, + [4192] = {.lex_state = 116}, + [4193] = {.lex_state = 112, .external_lex_state = 16}, + [4194] = {.lex_state = 112, .external_lex_state = 16}, + [4195] = {.lex_state = 112, .external_lex_state = 16}, + [4196] = {.lex_state = 112, .external_lex_state = 16}, + [4197] = {.lex_state = 231}, + [4198] = {.lex_state = 231}, + [4199] = {.lex_state = 231}, + [4200] = {.lex_state = 112, .external_lex_state = 16}, + [4201] = {.lex_state = 112, .external_lex_state = 16}, + [4202] = {.lex_state = 112, .external_lex_state = 16}, + [4203] = {.lex_state = 112, .external_lex_state = 16}, + [4204] = {.lex_state = 231}, + [4205] = {.lex_state = 231}, + [4206] = {.lex_state = 231}, + [4207] = {.lex_state = 231}, + [4208] = {.lex_state = 231}, + [4209] = {.lex_state = 116}, + [4210] = {.lex_state = 116}, + [4211] = {.lex_state = 231}, + [4212] = {.lex_state = 116}, + [4213] = {.lex_state = 133}, + [4214] = {.lex_state = 112, .external_lex_state = 16}, + [4215] = {.lex_state = 112, .external_lex_state = 16}, + [4216] = {.lex_state = 112, .external_lex_state = 16}, + [4217] = {.lex_state = 231}, + [4218] = {.lex_state = 133}, + [4219] = {.lex_state = 231}, + [4220] = {.lex_state = 231}, + [4221] = {.lex_state = 231}, + [4222] = {.lex_state = 112, .external_lex_state = 16}, + [4223] = {.lex_state = 231}, + [4224] = {.lex_state = 133}, + [4225] = {.lex_state = 112, .external_lex_state = 16}, + [4226] = {.lex_state = 112, .external_lex_state = 16}, + [4227] = {.lex_state = 112, .external_lex_state = 16}, + [4228] = {.lex_state = 116}, + [4229] = {.lex_state = 231}, + [4230] = {.lex_state = 231}, + [4231] = {.lex_state = 116}, + [4232] = {.lex_state = 133}, + [4233] = {.lex_state = 105, .external_lex_state = 24}, + [4234] = {.lex_state = 105, .external_lex_state = 24}, + [4235] = {.lex_state = 231}, + [4236] = {.lex_state = 231}, + [4237] = {.lex_state = 133}, + [4238] = {.lex_state = 231, .external_lex_state = 31}, + [4239] = {.lex_state = 231}, + [4240] = {.lex_state = 133}, + [4241] = {.lex_state = 112, .external_lex_state = 16}, + [4242] = {.lex_state = 117}, + [4243] = {.lex_state = 231}, + [4244] = {.lex_state = 112, .external_lex_state = 16}, + [4245] = {.lex_state = 231}, + [4246] = {.lex_state = 117}, + [4247] = {.lex_state = 112, .external_lex_state = 16}, + [4248] = {.lex_state = 231}, + [4249] = {.lex_state = 231}, + [4250] = {.lex_state = 112, .external_lex_state = 16}, + [4251] = {.lex_state = 112, .external_lex_state = 16}, + [4252] = {.lex_state = 112, .external_lex_state = 16}, + [4253] = {.lex_state = 231}, + [4254] = {.lex_state = 231}, + [4255] = {.lex_state = 231, .external_lex_state = 31}, + [4256] = {.lex_state = 231}, + [4257] = {.lex_state = 231}, + [4258] = {.lex_state = 116}, + [4259] = {.lex_state = 231}, + [4260] = {.lex_state = 231}, + [4261] = {.lex_state = 231}, + [4262] = {.lex_state = 231}, + [4263] = {.lex_state = 112, .external_lex_state = 16}, + [4264] = {.lex_state = 112, .external_lex_state = 16}, + [4265] = {.lex_state = 112, .external_lex_state = 16}, + [4266] = {.lex_state = 231}, + [4267] = {.lex_state = 231}, + [4268] = {.lex_state = 117}, + [4269] = {.lex_state = 231}, + [4270] = {.lex_state = 112, .external_lex_state = 16}, + [4271] = {.lex_state = 116}, + [4272] = {.lex_state = 231}, + [4273] = {.lex_state = 231}, + [4274] = {.lex_state = 112, .external_lex_state = 16}, + [4275] = {.lex_state = 231}, + [4276] = {.lex_state = 112, .external_lex_state = 16}, + [4277] = {.lex_state = 112, .external_lex_state = 16}, + [4278] = {.lex_state = 112, .external_lex_state = 16}, + [4279] = {.lex_state = 231}, + [4280] = {.lex_state = 231}, + [4281] = {.lex_state = 231}, + [4282] = {.lex_state = 112, .external_lex_state = 16}, +}; + +enum { + ts_external_token_heredoc_start = 0, + ts_external_token__simple_heredoc_body = 1, + ts_external_token__heredoc_body_beginning = 2, + ts_external_token__heredoc_body_middle = 3, + ts_external_token__heredoc_body_end = 4, + ts_external_token_file_descriptor = 5, + ts_external_token__empty_value = 6, + ts_external_token__concat = 7, ts_external_token_variable_name = 8, ts_external_token_regex = 9, ts_external_token_RBRACE = 10, @@ -13070,7 +14773,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static const bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[32][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__simple_heredoc_body] = true, @@ -13093,102 +14796,131 @@ static const bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LF] = true, }, [4] = { - [ts_external_token__simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, }, [5] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LF] = true, }, [6] = { - [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_LF] = true, }, [7] = { - [ts_external_token__simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, }, [8] = { [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_LF] = true, }, [9] = { [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_LF] = true, }, [10] = { - [ts_external_token_LF] = true, + [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, }, [11] = { - [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LF] = true, }, [12] = { - [ts_external_token_regex] = true, + [ts_external_token_LT_LT] = true, }, [13] = { + [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, [14] = { [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, }, [15] = { + [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_LF] = true, }, [16] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, }, [17] = { - [ts_external_token__concat] = true, + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, }, [18] = { - [ts_external_token__empty_value] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LF] = true, }, [19] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_LF] = true, }, [20] = { + [ts_external_token_regex] = true, + }, + [21] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [21] = { + [22] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, + }, + [23] = { + [ts_external_token__empty_value] = true, + }, + [24] = { + [ts_external_token_RBRACK] = true, + }, + [25] = { + [ts_external_token__concat] = true, + [ts_external_token_LF] = true, + }, + [26] = { + [ts_external_token__concat] = true, + }, + [27] = { [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, - [22] = { + [28] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + }, + [29] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [23] = { + [30] = { [ts_external_token__heredoc_body_middle] = true, [ts_external_token__heredoc_body_end] = true, }, - [24] = { + [31] = { [ts_external_token_heredoc_start] = true, }, }; @@ -13201,6 +14933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_LPAREN_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_until] = ACTIONS(1), @@ -13255,34 +14988,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [aux_sym_unary_expression_token1] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), [sym__special_character] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [sym_raw_string] = ACTIONS(1), [sym_ansi_c_string] = ACTIONS(1), + [sym_number] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_SLASH2] = ACTIONS(1), [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_COLON_DASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_LT_LPAREN] = ACTIONS(1), [anon_sym_GT_LPAREN] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(1), + [sym__comment_word] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [sym_test_operator] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), [sym__simple_heredoc_body] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), @@ -13295,38 +15042,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3510), - [sym__statements] = STATE(3509), - [sym_redirected_statement] = STATE(1674), - [sym_for_statement] = STATE(1674), - [sym_c_style_for_statement] = STATE(1674), - [sym_while_statement] = STATE(1674), - [sym_if_statement] = STATE(1674), - [sym_case_statement] = STATE(1674), - [sym_function_definition] = STATE(1674), - [sym_compound_statement] = STATE(1674), - [sym_subshell] = STATE(1674), - [sym_pipeline] = STATE(1674), - [sym_list] = STATE(1674), - [sym_negated_command] = STATE(1674), - [sym_test_command] = STATE(1674), - [sym_declaration_command] = STATE(1674), - [sym_unset_command] = STATE(1674), - [sym_command] = STATE(1674), - [sym_command_name] = STATE(241), - [sym_variable_assignment] = STATE(367), - [sym_subscript] = STATE(3311), - [sym_file_redirect] = STATE(894), - [sym_concatenation] = STATE(895), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym__statements_repeat1] = STATE(156), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(751), + [sym_program] = STATE(4221), + [sym__statements] = STATE(4220), + [sym_redirected_statement] = STATE(2373), + [sym_for_statement] = STATE(2373), + [sym_c_style_for_statement] = STATE(2373), + [sym_while_statement] = STATE(2373), + [sym_if_statement] = STATE(2373), + [sym_case_statement] = STATE(2373), + [sym_function_definition] = STATE(2373), + [sym_compound_statement] = STATE(2373), + [sym_subshell] = STATE(2373), + [sym_pipeline] = STATE(2373), + [sym_list] = STATE(2373), + [sym_negated_command] = STATE(2373), + [sym_test_command] = STATE(2373), + [sym_declaration_command] = STATE(2373), + [sym_unset_command] = STATE(2373), + [sym_command] = STATE(2373), + [sym_command_name] = STATE(383), + [sym_variable_assignment] = STATE(926), + [sym_subscript] = STATE(4013), + [sym_file_redirect] = STATE(1638), + [sym_arithmetic_expansion] = STATE(947), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(947), + [sym_translated_string] = STATE(947), + [sym_simple_expansion] = STATE(947), + [sym_expansion] = STATE(947), + [sym_command_substitution] = STATE(947), + [sym_process_substitution] = STATE(947), + [aux_sym__statements_repeat1] = STATE(199), + [aux_sym_command_repeat1] = STATE(1638), + [aux_sym__literal_repeat1] = STATE(1639), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -13351,11705 +15099,15800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(35), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(39), - [sym__special_character] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [sym_ansi_c_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(57), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym__special_character] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [sym_raw_string] = ACTIONS(49), + [sym_ansi_c_string] = ACTIONS(49), + [sym_number] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_LT_LPAREN] = ACTIONS(57), + [anon_sym_GT_LPAREN] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(61), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(65), }, [2] = { - [aux_sym__statements2] = STATE(4), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2934), - [sym_else_clause] = STATE(3459), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2934), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(71), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1912), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [3] = { - [aux_sym__statements2] = STATE(5), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2908), - [sym_else_clause] = STATE(3501), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2908), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(113), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2060), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [4] = { - [aux_sym__statements2] = STATE(30), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2944), - [sym_else_clause] = STATE(3439), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2944), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(115), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2111), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [5] = { - [aux_sym__statements2] = STATE(30), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2921), - [sym_else_clause] = STATE(3513), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2921), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(117), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2056), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [6] = { - [aux_sym__statements2] = STATE(7), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2917), - [sym_else_clause] = STATE(3546), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2917), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(119), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2136), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [7] = { - [aux_sym__statements2] = STATE(30), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_elif_clause] = STATE(2922), - [sym_else_clause] = STATE(3533), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_if_statement_repeat1] = STATE(2922), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(121), - [anon_sym_elif] = ACTIONS(73), - [anon_sym_else] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2121), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [8] = { - [sym__statements] = STATE(3044), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(141), - [anon_sym_SEMI_AMP] = ACTIONS(143), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1928), + [sym_binary_expression] = STATE(2100), + [sym_ternary_expression] = STATE(2100), + [sym_unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_parenthesized_expression] = STATE(2100), + [sym_arithmetic_expansion] = STATE(262), + [sym_concatenation] = STATE(301), + [sym_string] = STATE(262), + [sym_translated_string] = STATE(262), + [sym_simple_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(269), + [sym_word] = ACTIONS(121), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [sym__special_character] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(135), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), + [sym_number] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(141), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [anon_sym_GT_LPAREN] = ACTIONS(145), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [9] = { - [sym__statements] = STATE(3021), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(179), - [anon_sym_SEMI_AMP] = ACTIONS(181), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(183), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2011), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [10] = { - [sym__statements] = STATE(3033), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(187), - [anon_sym_SEMI_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(189), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1945), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [11] = { - [sym__statements] = STATE(3031), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(193), - [anon_sym_SEMI_AMP] = ACTIONS(195), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(195), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2055), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [12] = { - [sym__statements] = STATE(3029), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_SEMI_AMP] = ACTIONS(201), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(203), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2054), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [13] = { - [sym__statements] = STATE(3013), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(205), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_SEMI_AMP] = ACTIONS(209), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(211), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2028), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [14] = { - [sym__statements] = STATE(3039), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(215), - [anon_sym_SEMI_AMP] = ACTIONS(217), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(217), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2064), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [15] = { - [sym__statements] = STATE(3028), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(219), - [anon_sym_SEMI_AMP] = ACTIONS(221), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(223), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2102), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [16] = { - [sym__statements] = STATE(3019), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(227), - [anon_sym_SEMI_AMP] = ACTIONS(229), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(231), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2053), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [17] = { - [sym__statements] = STATE(3020), - [sym_redirected_statement] = STATE(1659), - [sym_for_statement] = STATE(1659), - [sym_c_style_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_compound_statement] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_negated_command] = STATE(1659), - [sym_test_command] = STATE(1659), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), - [sym_command] = STATE(1659), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(233), - [anon_sym_SEMI_AMP] = ACTIONS(235), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(237), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2094), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [18] = { - [sym__statements] = STATE(3196), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(241), - [anon_sym_SEMI_AMP] = ACTIONS(209), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(211), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1955), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [19] = { - [sym__statements] = STATE(3100), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(267), - [anon_sym_SEMI_AMP] = ACTIONS(217), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(217), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1980), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [20] = { - [sym__statements] = STATE(3212), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(269), - [anon_sym_SEMI_AMP] = ACTIONS(229), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(231), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1918), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [21] = { - [sym__statements] = STATE(3233), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(271), - [anon_sym_SEMI_AMP] = ACTIONS(235), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(237), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2079), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [22] = { - [sym__statements] = STATE(3180), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(273), - [anon_sym_SEMI_AMP] = ACTIONS(181), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(183), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2076), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [23] = { - [sym__statements] = STATE(3187), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_SEMI_AMP] = ACTIONS(201), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(203), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1987), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [24] = { - [sym__statements] = STATE(3070), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(277), - [anon_sym_SEMI_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(189), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1931), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [25] = { - [sym__statements] = STATE(3112), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(279), - [anon_sym_SEMI_AMP] = ACTIONS(143), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(143), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2093), + [sym_binary_expression] = STATE(2100), + [sym_ternary_expression] = STATE(2100), + [sym_unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_parenthesized_expression] = STATE(2100), + [sym_arithmetic_expansion] = STATE(262), + [sym_concatenation] = STATE(301), + [sym_string] = STATE(262), + [sym_translated_string] = STATE(262), + [sym_simple_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(269), + [sym_word] = ACTIONS(121), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [sym__special_character] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(135), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), + [sym_number] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(141), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [anon_sym_GT_LPAREN] = ACTIONS(145), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [26] = { - [sym__statements] = STATE(3190), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(281), - [anon_sym_SEMI_AMP] = ACTIONS(221), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(223), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2068), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [27] = { - [sym__statements] = STATE(3226), - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(295), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(151), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(283), - [anon_sym_SEMI_AMP] = ACTIONS(195), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(195), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1983), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [28] = { - [aux_sym__statements2] = STATE(30), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(285), - [anon_sym_elif] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2051), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [29] = { - [aux_sym__statements2] = STATE(28), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(287), - [anon_sym_elif] = ACTIONS(287), - [anon_sym_else] = ACTIONS(287), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2021), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [30] = { - [aux_sym__statements2] = STATE(30), - [sym_redirected_statement] = STATE(1738), - [sym_for_statement] = STATE(1738), - [sym_c_style_for_statement] = STATE(1738), - [sym_while_statement] = STATE(1738), - [sym_if_statement] = STATE(1738), - [sym_case_statement] = STATE(1738), - [sym_function_definition] = STATE(1738), - [sym_compound_statement] = STATE(1738), - [sym_subshell] = STATE(1738), - [sym_pipeline] = STATE(1738), - [sym_list] = STATE(1738), - [sym_negated_command] = STATE(1738), - [sym_test_command] = STATE(1738), - [sym_declaration_command] = STATE(1738), - [sym_unset_command] = STATE(1738), - [sym_command] = STATE(1738), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(481), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(289), - [anon_sym_for] = ACTIONS(292), - [anon_sym_select] = ACTIONS(295), - [anon_sym_LPAREN_LPAREN] = ACTIONS(298), - [anon_sym_while] = ACTIONS(301), - [anon_sym_until] = ACTIONS(301), - [anon_sym_if] = ACTIONS(304), - [anon_sym_fi] = ACTIONS(307), - [anon_sym_elif] = ACTIONS(307), - [anon_sym_else] = ACTIONS(307), - [anon_sym_case] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_function] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(330), - [anon_sym_typeset] = ACTIONS(330), - [anon_sym_export] = ACTIONS(330), - [anon_sym_readonly] = ACTIONS(330), - [anon_sym_local] = ACTIONS(330), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_unsetenv] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(336), - [anon_sym_AMP_GT] = ACTIONS(336), - [anon_sym_AMP_GT_GT] = ACTIONS(336), - [anon_sym_LT_AMP] = ACTIONS(336), - [anon_sym_GT_AMP] = ACTIONS(336), - [anon_sym_GT_PIPE] = ACTIONS(336), - [anon_sym_DOLLAR] = ACTIONS(339), - [sym__special_character] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(348), - [sym_ansi_c_string] = ACTIONS(348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(354), - [anon_sym_BQUOTE] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(360), - [anon_sym_GT_LPAREN] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(363), - [sym_variable_name] = ACTIONS(366), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(2023), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [31] = { - [sym__statements] = STATE(3473), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1977), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [32] = { - [sym__statements] = STATE(3567), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_RPAREN] = ACTIONS(371), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1995), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [33] = { - [sym__statements] = STATE(3468), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1982), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [34] = { - [sym__statements] = STATE(3524), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1951), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1985), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [35] = { - [aux_sym__statements2] = STATE(112), - [sym_redirected_statement] = STATE(1771), - [sym_for_statement] = STATE(1771), - [sym_c_style_for_statement] = STATE(1771), - [sym_while_statement] = STATE(1771), - [sym_if_statement] = STATE(1771), - [sym_case_statement] = STATE(1771), - [sym_function_definition] = STATE(1771), - [sym_compound_statement] = STATE(1771), - [sym_subshell] = STATE(1771), - [sym_pipeline] = STATE(1771), - [sym_list] = STATE(1771), - [sym_negated_command] = STATE(1771), - [sym_test_command] = STATE(1771), - [sym_declaration_command] = STATE(1771), - [sym_unset_command] = STATE(1771), - [sym_command] = STATE(1771), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(375), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1929), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [36] = { - [sym__statements] = STATE(3483), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1967), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym__expression] = STATE(1975), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(228), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(228), + [sym_translated_string] = STATE(228), + [sym_simple_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(264), + [sym_word] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym__special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [sym_number] = ACTIONS(109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(113), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [37] = { - [sym__statements] = STATE(3520), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym__expression] = STATE(2092), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(482), + [sym_concatenation] = STATE(956), + [sym_string] = STATE(482), + [sym_translated_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym__literal_repeat1] = STATE(925), + [aux_sym_concatenation_repeat1] = STATE(229), + [sym_word] = ACTIONS(149), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_RPAREN_RPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_SEMI_SEMI] = ACTIONS(151), + [anon_sym_PIPE_AMP] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(160), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(151), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_LT] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(162), + [anon_sym_DOLLAR] = ACTIONS(164), + [sym__special_character] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(168), + [sym_raw_string] = ACTIONS(149), + [sym_ansi_c_string] = ACTIONS(149), + [sym_number] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_LT_LPAREN] = ACTIONS(174), + [anon_sym_GT_LPAREN] = ACTIONS(174), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [sym_test_operator] = ACTIONS(176), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(180), }, [38] = { - [sym__statements] = STATE(3440), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2035), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3497), + [sym_else_clause] = STATE(4094), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3497), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(184), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [39] = { - [sym__statements] = STATE(3438), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [aux_sym__statements2] = STATE(41), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3494), + [sym_else_clause] = STATE(4232), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3494), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(214), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [40] = { - [sym__statements] = STATE(3435), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(42), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3460), + [sym_else_clause] = STATE(4240), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3460), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(216), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [41] = { - [sym__statements] = STATE(3521), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3473), + [sym_else_clause] = STATE(4213), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3473), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(218), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [42] = { - [sym__statements] = STATE(3522), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1957), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3499), + [sym_else_clause] = STATE(4218), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3499), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(220), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [43] = { - [sym__statements] = STATE(3554), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym__expression] = STATE(2066), + [sym_binary_expression] = STATE(2100), + [sym_ternary_expression] = STATE(2100), + [sym_unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_parenthesized_expression] = STATE(2100), + [sym_arithmetic_expansion] = STATE(982), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(982), + [sym_translated_string] = STATE(982), + [sym_simple_expansion] = STATE(982), + [sym_expansion] = STATE(982), + [sym_command_substitution] = STATE(982), + [sym_process_substitution] = STATE(982), + [aux_sym__literal_repeat1] = STATE(1091), + [aux_sym_concatenation_repeat1] = STATE(248), + [sym_word] = ACTIONS(222), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_SEMI_SEMI] = ACTIONS(151), + [anon_sym_PIPE_AMP] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(226), + [anon_sym_EQ_TILDE] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_AMP_GT] = ACTIONS(151), + [anon_sym_AMP_GT_GT] = ACTIONS(151), + [anon_sym_LT_AMP] = ACTIONS(151), + [anon_sym_GT_AMP] = ACTIONS(151), + [anon_sym_GT_PIPE] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_LT_LT_DASH] = ACTIONS(151), + [anon_sym_LT_LT_LT] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(127), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(230), + [sym__special_character] = ACTIONS(232), + [anon_sym_DQUOTE] = ACTIONS(234), + [sym_raw_string] = ACTIONS(222), + [sym_ansi_c_string] = ACTIONS(222), + [sym_number] = ACTIONS(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(240), + [anon_sym_GT_LPAREN] = ACTIONS(240), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [sym_test_operator] = ACTIONS(242), + [sym_file_descriptor] = ACTIONS(178), + [sym__concat] = ACTIONS(244), }, [44] = { - [sym__statements] = STATE(3558), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [aux_sym__statements2] = STATE(38), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_elif_clause] = STATE(3516), + [sym_else_clause] = STATE(4120), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_if_statement_repeat1] = STATE(3516), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(246), + [anon_sym_elif] = ACTIONS(186), + [anon_sym_else] = ACTIONS(188), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [45] = { - [sym__statements] = STATE(3565), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2018), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3611), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(266), + [anon_sym_SEMI_AMP] = ACTIONS(268), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [46] = { - [aux_sym__statements2] = STATE(77), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3576), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(310), + [anon_sym_SEMI_AMP] = ACTIONS(312), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(314), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [47] = { - [sym__statements] = STATE(3511), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3585), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(318), + [anon_sym_SEMI_AMP] = ACTIONS(320), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(322), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [48] = { - [sym__statements] = STATE(3506), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3602), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(324), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(326), + [anon_sym_SEMI_AMP] = ACTIONS(328), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(328), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [49] = { - [sym__statements] = STATE(3504), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2083), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3620), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_SEMI_AMP] = ACTIONS(334), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(336), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [50] = { - [sym__statements] = STATE(3457), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3575), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(340), + [anon_sym_SEMI_AMP] = ACTIONS(342), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(342), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [51] = { - [sym__statements] = STATE(3456), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3603), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(344), + [anon_sym_SEMI_AMP] = ACTIONS(346), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(348), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [52] = { - [sym__statements] = STATE(3454), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1997), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3589), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(350), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(352), + [anon_sym_SEMI_AMP] = ACTIONS(354), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(354), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [53] = { - [sym__statements] = STATE(3404), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3594), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(358), + [anon_sym_SEMI_AMP] = ACTIONS(360), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(360), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [54] = { - [sym__statements] = STATE(3402), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3591), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(362), + [anon_sym_SEMI_AMP] = ACTIONS(364), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(366), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [55] = { - [sym__statements] = STATE(3400), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1938), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3629), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(368), + [anon_sym_SEMI_AMP] = ACTIONS(370), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(372), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [56] = { - [sym__statements] = STATE(3376), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3612), + [sym_redirected_statement] = STATE(2297), + [sym_for_statement] = STATE(2297), + [sym_c_style_for_statement] = STATE(2297), + [sym_while_statement] = STATE(2297), + [sym_if_statement] = STATE(2297), + [sym_case_statement] = STATE(2297), + [sym_function_definition] = STATE(2297), + [sym_compound_statement] = STATE(2297), + [sym_subshell] = STATE(2297), + [sym_pipeline] = STATE(2297), + [sym_list] = STATE(2297), + [sym_negated_command] = STATE(2297), + [sym_test_command] = STATE(2297), + [sym_declaration_command] = STATE(2297), + [sym_unset_command] = STATE(2297), + [sym_command] = STATE(2297), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(202), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_esac] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(374), + [anon_sym_SEMI_AMP] = ACTIONS(376), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(378), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, [57] = { - [sym__statements] = STATE(3358), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3732), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(382), + [anon_sym_SEMI_AMP] = ACTIONS(354), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(354), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [58] = { - [sym__statements] = STATE(3363), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2008), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3810), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(412), + [anon_sym_SEMI_AMP] = ACTIONS(268), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [59] = { - [sym__statements] = STATE(3425), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3794), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(414), + [anon_sym_SEMI_AMP] = ACTIONS(376), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(378), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [60] = { - [sym__statements] = STATE(3428), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3809), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(416), + [anon_sym_SEMI_AMP] = ACTIONS(312), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(314), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [61] = { - [sym__statements] = STATE(3433), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1994), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3802), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(418), + [anon_sym_SEMI_AMP] = ACTIONS(360), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(360), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [62] = { - [sym__statements] = STATE(3494), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3716), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(420), + [anon_sym_SEMI_AMP] = ACTIONS(342), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(342), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [63] = { - [sym__statements] = STATE(3495), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(422), + [anon_sym_for] = ACTIONS(425), + [anon_sym_select] = ACTIONS(428), + [anon_sym_LPAREN_LPAREN] = ACTIONS(431), + [anon_sym_while] = ACTIONS(434), + [anon_sym_until] = ACTIONS(434), + [anon_sym_done] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_fi] = ACTIONS(437), + [anon_sym_elif] = ACTIONS(437), + [anon_sym_else] = ACTIONS(437), + [anon_sym_case] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_function] = ACTIONS(448), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(460), + [anon_sym_declare] = ACTIONS(463), + [anon_sym_typeset] = ACTIONS(463), + [anon_sym_export] = ACTIONS(463), + [anon_sym_readonly] = ACTIONS(463), + [anon_sym_local] = ACTIONS(463), + [anon_sym_unset] = ACTIONS(466), + [anon_sym_unsetenv] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_AMP_GT] = ACTIONS(469), + [anon_sym_AMP_GT_GT] = ACTIONS(472), + [anon_sym_LT_AMP] = ACTIONS(472), + [anon_sym_GT_AMP] = ACTIONS(472), + [anon_sym_GT_PIPE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(478), + [sym__special_character] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(487), + [sym_ansi_c_string] = ACTIONS(487), + [sym_number] = ACTIONS(490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(493), + [anon_sym_BQUOTE] = ACTIONS(496), + [anon_sym_LT_LPAREN] = ACTIONS(499), + [anon_sym_GT_LPAREN] = ACTIONS(499), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(502), + [sym_file_descriptor] = ACTIONS(505), + [sym_variable_name] = ACTIONS(508), }, [64] = { - [sym__statements] = STATE(3498), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2031), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3837), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(511), + [anon_sym_SEMI_AMP] = ACTIONS(364), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(366), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [65] = { - [sym__statements] = STATE(3551), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3807), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_SEMI_AMP] = ACTIONS(334), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(336), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [66] = { - [sym__statements] = STATE(3555), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(3797), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(515), + [anon_sym_SEMI_AMP] = ACTIONS(320), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(322), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [67] = { - [sym__statements] = STATE(3557), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2042), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3789), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(517), + [anon_sym_SEMI_AMP] = ACTIONS(370), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(372), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [68] = { - [aux_sym__statements2] = STATE(143), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3679), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(519), + [anon_sym_SEMI_AMP] = ACTIONS(328), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(328), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [69] = { - [sym__statements] = STATE(3419), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(3775), + [sym_redirected_statement] = STATE(2349), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_compound_statement] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(483), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(197), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_SEMI_AMP] = ACTIONS(346), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(348), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, [70] = { - [sym__statements] = STATE(3547), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(523), + [anon_sym_elif] = ACTIONS(523), + [anon_sym_else] = ACTIONS(523), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [71] = { - [sym__statements] = STATE(3549), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2047), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(70), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(525), + [anon_sym_elif] = ACTIONS(525), + [anon_sym_else] = ACTIONS(525), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [72] = { - [sym__statements] = STATE(3550), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4154), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [73] = { - [sym__statements] = STATE(3556), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [74] = { - [sym__statements] = STATE(3566), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2081), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4184), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [75] = { - [sym__statements] = STATE(3534), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(105), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(533), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [76] = { - [sym__statements] = STATE(3527), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4100), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2439), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [77] = { - [aux_sym__statements2] = STATE(143), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4259), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2520), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [78] = { - [aux_sym__statements2] = STATE(102), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(389), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4249), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [79] = { - [sym__statements] = STATE(3503), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4248), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [80] = { - [sym__statements] = STATE(3478), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4245), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2513), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [81] = { - [sym__statements] = STATE(3500), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4239), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [82] = { - [sym__statements] = STATE(3499), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2039), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4230), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [83] = { - [sym__statements] = STATE(3480), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4164), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2494), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [84] = { - [sym__statements] = STATE(3446), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2074), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4223), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [85] = { - [sym__statements] = STATE(3470), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4219), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [86] = { - [sym__statements] = STATE(3469), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1983), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4217), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2475), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [87] = { - [sym__statements] = STATE(3453), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4208), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [88] = { - [sym__statements] = STATE(3450), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4207), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [89] = { - [sym__statements] = STATE(3449), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1949), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4206), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2456), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [90] = { - [sym__statements] = STATE(3423), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4199), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [91] = { - [sym__statements] = STATE(3418), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4198), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [92] = { - [sym__statements] = STATE(3412), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2016), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4197), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2434), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(553), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [93] = { - [sym__statements] = STATE(3371), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4188), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [94] = { - [sym__statements] = STATE(3357), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4187), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [95] = { - [sym__statements] = STATE(3398), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4183), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2467), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [96] = { - [sym__statements] = STATE(3481), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4177), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [97] = { - [aux_sym__statements2] = STATE(97), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(289), - [anon_sym_for] = ACTIONS(292), - [anon_sym_select] = ACTIONS(295), - [anon_sym_LPAREN_LPAREN] = ACTIONS(298), - [anon_sym_while] = ACTIONS(301), - [anon_sym_until] = ACTIONS(301), - [anon_sym_done] = ACTIONS(307), - [anon_sym_if] = ACTIONS(304), - [anon_sym_case] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_function] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(330), - [anon_sym_typeset] = ACTIONS(330), - [anon_sym_export] = ACTIONS(330), - [anon_sym_readonly] = ACTIONS(330), - [anon_sym_local] = ACTIONS(330), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_unsetenv] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(336), - [anon_sym_AMP_GT] = ACTIONS(336), - [anon_sym_AMP_GT_GT] = ACTIONS(336), - [anon_sym_LT_AMP] = ACTIONS(336), - [anon_sym_GT_AMP] = ACTIONS(336), - [anon_sym_GT_PIPE] = ACTIONS(336), - [anon_sym_DOLLAR] = ACTIONS(339), - [sym__special_character] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(348), - [sym_ansi_c_string] = ACTIONS(348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(354), - [anon_sym_BQUOTE] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(360), - [anon_sym_GT_LPAREN] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(363), - [sym_variable_name] = ACTIONS(366), + [sym__statements] = STATE(4174), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [98] = { - [sym__statements] = STATE(3369), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4171), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2530), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [99] = { - [sym__statements] = STATE(3368), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2063), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(187), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [100] = { - [sym__statements] = STATE(3373), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4168), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [101] = { - [sym__statements] = STATE(3365), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4167), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [102] = { - [aux_sym__statements2] = STATE(97), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(391), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4165), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2511), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [103] = { - [sym__statements] = STATE(3364), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2006), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(161), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [104] = { - [aux_sym__statements2] = STATE(68), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4280), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [105] = { - [aux_sym__statements2] = STATE(35), - [sym_redirected_statement] = STATE(1771), - [sym_for_statement] = STATE(1771), - [sym_c_style_for_statement] = STATE(1771), - [sym_while_statement] = STATE(1771), - [sym_if_statement] = STATE(1771), - [sym_case_statement] = STATE(1771), - [sym_function_definition] = STATE(1771), - [sym_compound_statement] = STATE(1771), - [sym_subshell] = STATE(1771), - [sym_pipeline] = STATE(1771), - [sym_list] = STATE(1771), - [sym_negated_command] = STATE(1771), - [sym_test_command] = STATE(1771), - [sym_declaration_command] = STATE(1771), - [sym_unset_command] = STATE(1771), - [sym_command] = STATE(1771), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(395), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(565), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [106] = { - [sym__statements] = STATE(3380), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4266), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2536), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [107] = { - [sym__statements] = STATE(3399), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2071), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4267), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [108] = { - [aux_sym__statements2] = STATE(133), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4158), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [109] = { - [aux_sym__statements2] = STATE(97), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(399), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4157), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [110] = { - [sym__statements] = STATE(3385), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4153), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2435), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [111] = { - [sym__statements] = STATE(3386), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2051), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4269), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [112] = { - [aux_sym__statements2] = STATE(112), - [sym_redirected_statement] = STATE(1771), - [sym_for_statement] = STATE(1771), - [sym_c_style_for_statement] = STATE(1771), - [sym_while_statement] = STATE(1771), - [sym_if_statement] = STATE(1771), - [sym_case_statement] = STATE(1771), - [sym_function_definition] = STATE(1771), - [sym_compound_statement] = STATE(1771), - [sym_subshell] = STATE(1771), - [sym_pipeline] = STATE(1771), - [sym_list] = STATE(1771), - [sym_negated_command] = STATE(1771), - [sym_test_command] = STATE(1771), - [sym_declaration_command] = STATE(1771), - [sym_unset_command] = STATE(1771), - [sym_command] = STATE(1771), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(476), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(289), - [anon_sym_for] = ACTIONS(292), - [anon_sym_select] = ACTIONS(295), - [anon_sym_LPAREN_LPAREN] = ACTIONS(298), - [anon_sym_while] = ACTIONS(301), - [anon_sym_until] = ACTIONS(301), - [anon_sym_if] = ACTIONS(304), - [anon_sym_fi] = ACTIONS(307), - [anon_sym_case] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_function] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(330), - [anon_sym_typeset] = ACTIONS(330), - [anon_sym_export] = ACTIONS(330), - [anon_sym_readonly] = ACTIONS(330), - [anon_sym_local] = ACTIONS(330), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_unsetenv] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(336), - [anon_sym_AMP_GT] = ACTIONS(336), - [anon_sym_AMP_GT_GT] = ACTIONS(336), - [anon_sym_LT_AMP] = ACTIONS(336), - [anon_sym_GT_AMP] = ACTIONS(336), - [anon_sym_GT_PIPE] = ACTIONS(336), - [anon_sym_DOLLAR] = ACTIONS(339), - [sym__special_character] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(348), - [sym_ansi_c_string] = ACTIONS(348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(354), - [anon_sym_BQUOTE] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(360), - [anon_sym_GT_LPAREN] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(363), - [sym_variable_name] = ACTIONS(366), + [sym__statements] = STATE(4142), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [113] = { - [sym__statements] = STATE(3391), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4141), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [114] = { - [sym__statements] = STATE(3393), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4275), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2552), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [115] = { - [sym__statements] = STATE(3394), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2091), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4140), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2493), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [116] = { - [sym__statements] = STATE(3406), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4229), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [117] = { - [sym__statements] = STATE(3407), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4281), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [118] = { - [sym__statements] = STATE(3408), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2053), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4262), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2521), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [119] = { - [sym__statements] = STATE(3421), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4273), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [120] = { - [sym__statements] = STATE(3422), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4131), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [121] = { - [sym__statements] = STATE(3443), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4130), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [122] = { - [sym__statements] = STATE(3424), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2021), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4163), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2489), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(577), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [123] = { - [sym__statements] = STATE(3395), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4272), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [124] = { - [sym__statements] = STATE(3488), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4121), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [125] = { - [sym__statements] = STATE(3452), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1968), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4117), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [126] = { - [sym__statements] = STATE(3472), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4115), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2485), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [127] = { - [sym__statements] = STATE(3474), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [aux_sym__statements2] = STATE(188), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(581), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [128] = { - [sym__statements] = STATE(3476), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(2067), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4107), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [129] = { - [sym__statements] = STATE(3569), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4106), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [130] = { - [sym__statements] = STATE(3562), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4105), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2472), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [131] = { - [sym__statements] = STATE(3445), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1935), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4243), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2499), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [132] = { - [sym__statements] = STATE(3567), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4048), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [133] = { - [aux_sym__statements2] = STATE(143), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4102), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [134] = { - [aux_sym__statements2] = STATE(109), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(403), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4261), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [135] = { - [sym__statements] = STATE(3484), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4254), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [136] = { - [sym__statements] = STATE(3482), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4095), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [137] = { - [sym__statements] = STATE(3473), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4093), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [138] = { - [sym__statements] = STATE(3477), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1966), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4090), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2449), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [139] = { - [sym__statements] = STATE(3468), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4253), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [140] = { - [aux_sym__statements2] = STATE(144), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(405), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4084), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [141] = { - [sym__statements] = STATE(3417), - [sym_redirected_statement] = STATE(1693), - [sym_for_statement] = STATE(1693), - [sym_c_style_for_statement] = STATE(1693), - [sym_while_statement] = STATE(1693), - [sym_if_statement] = STATE(1693), - [sym_case_statement] = STATE(1693), - [sym_function_definition] = STATE(1693), - [sym_compound_statement] = STATE(1693), - [sym_subshell] = STATE(1693), - [sym_pipeline] = STATE(1693), - [sym_list] = STATE(1693), - [sym_negated_command] = STATE(1693), - [sym_test_command] = STATE(1693), - [sym_declaration_command] = STATE(1693), - [sym_unset_command] = STATE(1693), - [sym_command] = STATE(1693), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(318), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(1976), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(152), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4083), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [142] = { - [sym__statements] = STATE(3415), - [sym_redirected_statement] = STATE(1695), - [sym_for_statement] = STATE(1695), - [sym_c_style_for_statement] = STATE(1695), - [sym_while_statement] = STATE(1695), - [sym_if_statement] = STATE(1695), - [sym_case_statement] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_compound_statement] = STATE(1695), - [sym_subshell] = STATE(1695), - [sym_pipeline] = STATE(1695), - [sym_list] = STATE(1695), - [sym_negated_command] = STATE(1695), - [sym_test_command] = STATE(1695), - [sym_declaration_command] = STATE(1695), - [sym_unset_command] = STATE(1695), - [sym_command] = STATE(1695), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(489), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(157), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [sym__statements] = STATE(4082), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2464), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [143] = { - [aux_sym__statements2] = STATE(143), - [sym_redirected_statement] = STATE(1703), - [sym_for_statement] = STATE(1703), - [sym_c_style_for_statement] = STATE(1703), - [sym_while_statement] = STATE(1703), - [sym_if_statement] = STATE(1703), - [sym_case_statement] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_compound_statement] = STATE(1703), - [sym_subshell] = STATE(1703), - [sym_pipeline] = STATE(1703), - [sym_list] = STATE(1703), - [sym_negated_command] = STATE(1703), - [sym_test_command] = STATE(1703), - [sym_declaration_command] = STATE(1703), - [sym_unset_command] = STATE(1703), - [sym_command] = STATE(1703), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(289), - [anon_sym_for] = ACTIONS(292), - [anon_sym_select] = ACTIONS(295), - [anon_sym_LPAREN_LPAREN] = ACTIONS(298), - [anon_sym_while] = ACTIONS(301), - [anon_sym_until] = ACTIONS(301), - [anon_sym_if] = ACTIONS(304), - [anon_sym_case] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_function] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_RBRACE] = ACTIONS(307), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(330), - [anon_sym_typeset] = ACTIONS(330), - [anon_sym_export] = ACTIONS(330), - [anon_sym_readonly] = ACTIONS(330), - [anon_sym_local] = ACTIONS(330), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_unsetenv] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(336), - [anon_sym_AMP_GT] = ACTIONS(336), - [anon_sym_AMP_GT_GT] = ACTIONS(336), - [anon_sym_LT_AMP] = ACTIONS(336), - [anon_sym_GT_AMP] = ACTIONS(336), - [anon_sym_GT_PIPE] = ACTIONS(336), - [anon_sym_DOLLAR] = ACTIONS(339), - [sym__special_character] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(348), - [sym_ansi_c_string] = ACTIONS(348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(354), - [anon_sym_BQUOTE] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(360), - [anon_sym_GT_LPAREN] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(363), - [sym_variable_name] = ACTIONS(366), + [sym__statements] = STATE(4211), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2457), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [144] = { - [aux_sym__statements2] = STATE(97), - [sym_redirected_statement] = STATE(1732), - [sym_for_statement] = STATE(1732), - [sym_c_style_for_statement] = STATE(1732), - [sym_while_statement] = STATE(1732), - [sym_if_statement] = STATE(1732), - [sym_case_statement] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_compound_statement] = STATE(1732), - [sym_subshell] = STATE(1732), - [sym_pipeline] = STATE(1732), - [sym_list] = STATE(1732), - [sym_negated_command] = STATE(1732), - [sym_test_command] = STATE(1732), - [sym_declaration_command] = STATE(1732), - [sym_unset_command] = STATE(1732), - [sym_command] = STATE(1732), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(487), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_done] = ACTIONS(407), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4074), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [145] = { - [sym__terminated_statement] = STATE(3291), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4073), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [146] = { - [sym__terminated_statement] = STATE(3479), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4072), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2497), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [147] = { - [sym__terminated_statement] = STATE(3281), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4236), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [148] = { - [sym__terminated_statement] = STATE(3345), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4069), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [149] = { - [sym_redirected_statement] = STATE(1757), - [sym_for_statement] = STATE(1757), - [sym_c_style_for_statement] = STATE(1757), - [sym_while_statement] = STATE(1757), - [sym_if_statement] = STATE(1757), - [sym_case_statement] = STATE(1757), - [sym_function_definition] = STATE(1757), - [sym_compound_statement] = STATE(1757), - [sym_subshell] = STATE(1757), - [sym_pipeline] = STATE(1757), - [sym_list] = STATE(1757), - [sym_negated_command] = STATE(1757), - [sym_test_command] = STATE(1757), - [sym_declaration_command] = STATE(1757), - [sym_unset_command] = STATE(1757), - [sym_command] = STATE(1757), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(494), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(409), - [anon_sym_for] = ACTIONS(412), - [anon_sym_select] = ACTIONS(415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(418), - [anon_sym_while] = ACTIONS(421), - [anon_sym_until] = ACTIONS(421), - [anon_sym_if] = ACTIONS(424), - [anon_sym_case] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_function] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(445), - [anon_sym_declare] = ACTIONS(448), - [anon_sym_typeset] = ACTIONS(448), - [anon_sym_export] = ACTIONS(448), - [anon_sym_readonly] = ACTIONS(448), - [anon_sym_local] = ACTIONS(448), - [anon_sym_unset] = ACTIONS(451), - [anon_sym_unsetenv] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_GT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(454), - [anon_sym_AMP_GT] = ACTIONS(454), - [anon_sym_AMP_GT_GT] = ACTIONS(454), - [anon_sym_LT_AMP] = ACTIONS(454), - [anon_sym_GT_AMP] = ACTIONS(454), - [anon_sym_GT_PIPE] = ACTIONS(454), - [anon_sym_DOLLAR] = ACTIONS(457), - [sym__special_character] = ACTIONS(460), - [anon_sym_DQUOTE] = ACTIONS(463), - [sym_raw_string] = ACTIONS(466), - [sym_ansi_c_string] = ACTIONS(466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(469), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(478), - [anon_sym_GT_LPAREN] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(481), - [sym_variable_name] = ACTIONS(484), + [aux_sym__statements2] = STATE(190), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(595), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [150] = { - [sym__terminated_statement] = STATE(3441), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4068), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [151] = { - [sym_redirected_statement] = STATE(1666), - [sym_for_statement] = STATE(1666), - [sym_c_style_for_statement] = STATE(1666), - [sym_while_statement] = STATE(1666), - [sym_if_statement] = STATE(1666), - [sym_case_statement] = STATE(1666), - [sym_function_definition] = STATE(1666), - [sym_compound_statement] = STATE(1666), - [sym_subshell] = STATE(1666), - [sym_pipeline] = STATE(1666), - [sym_list] = STATE(1666), - [sym_negated_command] = STATE(1666), - [sym_test_command] = STATE(1666), - [sym_declaration_command] = STATE(1666), - [sym_unset_command] = STATE(1666), - [sym_command] = STATE(1666), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(290), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [sym__statements] = STATE(4067), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2458), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [152] = { - [sym_redirected_statement] = STATE(1690), - [sym_for_statement] = STATE(1690), - [sym_c_style_for_statement] = STATE(1690), - [sym_while_statement] = STATE(1690), - [sym_if_statement] = STATE(1690), - [sym_case_statement] = STATE(1690), - [sym_function_definition] = STATE(1690), - [sym_compound_statement] = STATE(1690), - [sym_subshell] = STATE(1690), - [sym_pipeline] = STATE(1690), - [sym_list] = STATE(1690), - [sym_negated_command] = STATE(1690), - [sym_test_command] = STATE(1690), - [sym_declaration_command] = STATE(1690), - [sym_unset_command] = STATE(1690), - [sym_command] = STATE(1690), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(341), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4235), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [153] = { - [sym__terminated_statement] = STATE(3379), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4186), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2462), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [154] = { - [sym__terminated_statement] = STATE(3372), - [sym_redirected_statement] = STATE(1706), - [sym_for_statement] = STATE(1706), - [sym_c_style_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_compound_statement] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_negated_command] = STATE(1706), - [sym_test_command] = STATE(1706), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(407), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [sym__statements] = STATE(4050), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [155] = { - [sym_redirected_statement] = STATE(1656), - [sym_for_statement] = STATE(1656), - [sym_c_style_for_statement] = STATE(1656), - [sym_while_statement] = STATE(1656), - [sym_if_statement] = STATE(1656), - [sym_case_statement] = STATE(1656), - [sym_function_definition] = STATE(1656), - [sym_compound_statement] = STATE(1656), - [sym_subshell] = STATE(1656), - [sym_pipeline] = STATE(1656), - [sym_list] = STATE(1656), - [sym_negated_command] = STATE(1656), - [sym_test_command] = STATE(1656), - [sym_declaration_command] = STATE(1656), - [sym_unset_command] = STATE(1656), - [sym_command] = STATE(1656), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(282), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [sym__statements] = STATE(4052), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, [156] = { - [sym_redirected_statement] = STATE(1687), - [sym_for_statement] = STATE(1687), - [sym_c_style_for_statement] = STATE(1687), - [sym_while_statement] = STATE(1687), - [sym_if_statement] = STATE(1687), - [sym_case_statement] = STATE(1687), - [sym_function_definition] = STATE(1687), - [sym_compound_statement] = STATE(1687), - [sym_subshell] = STATE(1687), - [sym_pipeline] = STATE(1687), - [sym_list] = STATE(1687), - [sym_negated_command] = STATE(1687), - [sym_test_command] = STATE(1687), - [sym_declaration_command] = STATE(1687), - [sym_unset_command] = STATE(1687), - [sym_command] = STATE(1687), - [sym_command_name] = STATE(241), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3311), - [sym_file_redirect] = STATE(894), - [sym_concatenation] = STATE(895), - [sym_string] = STATE(400), - [sym_translated_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(751), + [sym__statements] = STATE(4054), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2534), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [157] = { + [sym__statements] = STATE(4205), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [158] = { + [sym__statements] = STATE(4204), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [159] = { + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(603), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [160] = { + [aux_sym__statements2] = STATE(161), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [161] = { + [aux_sym__statements2] = STATE(161), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(422), + [anon_sym_for] = ACTIONS(425), + [anon_sym_select] = ACTIONS(428), + [anon_sym_LPAREN_LPAREN] = ACTIONS(431), + [anon_sym_while] = ACTIONS(434), + [anon_sym_until] = ACTIONS(434), + [anon_sym_if] = ACTIONS(439), + [anon_sym_case] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_function] = ACTIONS(448), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(460), + [anon_sym_declare] = ACTIONS(463), + [anon_sym_typeset] = ACTIONS(463), + [anon_sym_export] = ACTIONS(463), + [anon_sym_readonly] = ACTIONS(463), + [anon_sym_local] = ACTIONS(463), + [anon_sym_unset] = ACTIONS(466), + [anon_sym_unsetenv] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_AMP_GT] = ACTIONS(469), + [anon_sym_AMP_GT_GT] = ACTIONS(472), + [anon_sym_LT_AMP] = ACTIONS(472), + [anon_sym_GT_AMP] = ACTIONS(472), + [anon_sym_GT_PIPE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(478), + [sym__special_character] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(487), + [sym_ansi_c_string] = ACTIONS(487), + [sym_number] = ACTIONS(490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(493), + [anon_sym_BQUOTE] = ACTIONS(496), + [anon_sym_LT_LPAREN] = ACTIONS(499), + [anon_sym_GT_LPAREN] = ACTIONS(499), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(502), + [sym_file_descriptor] = ACTIONS(505), + [sym_variable_name] = ACTIONS(508), + }, + [162] = { + [sym__statements] = STATE(4166), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2515), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [163] = { + [sym__statements] = STATE(4180), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [164] = { + [sym__statements] = STATE(4179), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [165] = { + [aux_sym__statements2] = STATE(160), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [166] = { + [sym__statements] = STATE(4135), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [167] = { + [sym__statements] = STATE(4136), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [168] = { + [sym__statements] = STATE(4139), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2492), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [169] = { + [sym__statements] = STATE(4162), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [170] = { + [sym__statements] = STATE(4161), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [171] = { + [sym__statements] = STATE(4147), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [172] = { + [sym__statements] = STATE(4156), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2474), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [173] = { + [sym__statements] = STATE(4116), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2482), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [174] = { + [sym__statements] = STATE(4148), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [175] = { + [sym__statements] = STATE(4150), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2437), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [176] = { + [sym__statements] = STATE(4154), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [177] = { + [sym__statements] = STATE(4134), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [178] = { + [sym__statements] = STATE(4133), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [179] = { + [aux_sym__statements2] = STATE(159), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(621), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [180] = { + [aux_sym__statements2] = STATE(103), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [181] = { + [sym__statements] = STATE(4256), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [182] = { + [sym__statements] = STATE(4257), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [183] = { + [sym__statements] = STATE(4159), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2451), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [184] = { + [sym__statements] = STATE(4260), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [185] = { + [sym__statements] = STATE(4184), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [186] = { + [sym__statements] = STATE(4101), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2440), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [187] = { + [aux_sym__statements2] = STATE(161), + [sym_redirected_statement] = STATE(2498), + [sym_for_statement] = STATE(2498), + [sym_c_style_for_statement] = STATE(2498), + [sym_while_statement] = STATE(2498), + [sym_if_statement] = STATE(2498), + [sym_case_statement] = STATE(2498), + [sym_function_definition] = STATE(2498), + [sym_compound_statement] = STATE(2498), + [sym_subshell] = STATE(2498), + [sym_pipeline] = STATE(2498), + [sym_list] = STATE(2498), + [sym_negated_command] = STATE(2498), + [sym_test_command] = STATE(2498), + [sym_declaration_command] = STATE(2498), + [sym_unset_command] = STATE(2498), + [sym_command] = STATE(2498), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [188] = { + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_fi] = ACTIONS(631), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [189] = { + [sym__statements] = STATE(4279), + [sym_redirected_statement] = STATE(2432), + [sym_for_statement] = STATE(2432), + [sym_c_style_for_statement] = STATE(2432), + [sym_while_statement] = STATE(2432), + [sym_if_statement] = STATE(2432), + [sym_case_statement] = STATE(2432), + [sym_function_definition] = STATE(2432), + [sym_compound_statement] = STATE(2432), + [sym_subshell] = STATE(2432), + [sym_pipeline] = STATE(2432), + [sym_list] = STATE(2432), + [sym_negated_command] = STATE(2432), + [sym_test_command] = STATE(2432), + [sym_declaration_command] = STATE(2432), + [sym_unset_command] = STATE(2432), + [sym_command] = STATE(2432), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(607), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(2553), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(200), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [190] = { + [aux_sym__statements2] = STATE(63), + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1159), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_done] = ACTIONS(633), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [191] = { + [sym__statements] = STATE(4112), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [192] = { + [sym__statements] = STATE(4099), + [sym_redirected_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_c_style_for_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_function_definition] = STATE(2392), + [sym_compound_statement] = STATE(2392), + [sym_subshell] = STATE(2392), + [sym_pipeline] = STATE(2392), + [sym_list] = STATE(2392), + [sym_negated_command] = STATE(2392), + [sym_test_command] = STATE(2392), + [sym_declaration_command] = STATE(2392), + [sym_unset_command] = STATE(2392), + [sym_command] = STATE(2392), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1419), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [193] = { + [sym__terminated_statement] = STATE(4224), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [194] = { + [sym_redirected_statement] = STATE(2423), + [sym_for_statement] = STATE(2423), + [sym_c_style_for_statement] = STATE(2423), + [sym_while_statement] = STATE(2423), + [sym_if_statement] = STATE(2423), + [sym_case_statement] = STATE(2423), + [sym_function_definition] = STATE(2423), + [sym_compound_statement] = STATE(2423), + [sym_subshell] = STATE(2423), + [sym_pipeline] = STATE(2423), + [sym_list] = STATE(2423), + [sym_negated_command] = STATE(2423), + [sym_test_command] = STATE(2423), + [sym_declaration_command] = STATE(2423), + [sym_unset_command] = STATE(2423), + [sym_command] = STATE(2423), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1256), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [195] = { + [sym_redirected_statement] = STATE(2501), + [sym_for_statement] = STATE(2501), + [sym_c_style_for_statement] = STATE(2501), + [sym_while_statement] = STATE(2501), + [sym_if_statement] = STATE(2501), + [sym_case_statement] = STATE(2501), + [sym_function_definition] = STATE(2501), + [sym_compound_statement] = STATE(2501), + [sym_subshell] = STATE(2501), + [sym_pipeline] = STATE(2501), + [sym_list] = STATE(2501), + [sym_negated_command] = STATE(2501), + [sym_test_command] = STATE(2501), + [sym_declaration_command] = STATE(2501), + [sym_unset_command] = STATE(2501), + [sym_command] = STATE(2501), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(1130), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(635), + [anon_sym_for] = ACTIONS(638), + [anon_sym_select] = ACTIONS(641), + [anon_sym_LPAREN_LPAREN] = ACTIONS(644), + [anon_sym_while] = ACTIONS(647), + [anon_sym_until] = ACTIONS(647), + [anon_sym_if] = ACTIONS(650), + [anon_sym_case] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_function] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(671), + [anon_sym_declare] = ACTIONS(674), + [anon_sym_typeset] = ACTIONS(674), + [anon_sym_export] = ACTIONS(674), + [anon_sym_readonly] = ACTIONS(674), + [anon_sym_local] = ACTIONS(674), + [anon_sym_unset] = ACTIONS(677), + [anon_sym_unsetenv] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(680), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_AMP_GT] = ACTIONS(680), + [anon_sym_AMP_GT_GT] = ACTIONS(683), + [anon_sym_LT_AMP] = ACTIONS(683), + [anon_sym_GT_AMP] = ACTIONS(683), + [anon_sym_GT_PIPE] = ACTIONS(683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym__special_character] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(698), + [sym_ansi_c_string] = ACTIONS(698), + [sym_number] = ACTIONS(701), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(710), + [anon_sym_GT_LPAREN] = ACTIONS(710), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(713), + [sym_file_descriptor] = ACTIONS(716), + [sym_variable_name] = ACTIONS(719), + }, + [196] = { + [sym__terminated_statement] = STATE(4061), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [197] = { + [sym_redirected_statement] = STATE(2351), + [sym_for_statement] = STATE(2351), + [sym_c_style_for_statement] = STATE(2351), + [sym_while_statement] = STATE(2351), + [sym_if_statement] = STATE(2351), + [sym_case_statement] = STATE(2351), + [sym_function_definition] = STATE(2351), + [sym_compound_statement] = STATE(2351), + [sym_subshell] = STATE(2351), + [sym_pipeline] = STATE(2351), + [sym_list] = STATE(2351), + [sym_negated_command] = STATE(2351), + [sym_test_command] = STATE(2351), + [sym_declaration_command] = STATE(2351), + [sym_unset_command] = STATE(2351), + [sym_command] = STATE(2351), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(473), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), + }, + [198] = { + [sym__terminated_statement] = STATE(4080), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [199] = { + [sym_redirected_statement] = STATE(2410), + [sym_for_statement] = STATE(2410), + [sym_c_style_for_statement] = STATE(2410), + [sym_while_statement] = STATE(2410), + [sym_if_statement] = STATE(2410), + [sym_case_statement] = STATE(2410), + [sym_function_definition] = STATE(2410), + [sym_compound_statement] = STATE(2410), + [sym_subshell] = STATE(2410), + [sym_pipeline] = STATE(2410), + [sym_list] = STATE(2410), + [sym_negated_command] = STATE(2410), + [sym_test_command] = STATE(2410), + [sym_declaration_command] = STATE(2410), + [sym_unset_command] = STATE(2410), + [sym_command] = STATE(2410), + [sym_command_name] = STATE(383), + [sym_variable_assignment] = STATE(920), + [sym_subscript] = STATE(4013), + [sym_file_redirect] = STATE(1638), + [sym_arithmetic_expansion] = STATE(947), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(947), + [sym_translated_string] = STATE(947), + [sym_simple_expansion] = STATE(947), + [sym_expansion] = STATE(947), + [sym_command_substitution] = STATE(947), + [sym_process_substitution] = STATE(947), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1638), + [aux_sym__literal_repeat1] = STATE(1639), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25073,130 +30916,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(35), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(39), - [sym__special_character] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [sym_ansi_c_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(57), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym__special_character] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [sym_raw_string] = ACTIONS(49), + [sym_ansi_c_string] = ACTIONS(49), + [sym_number] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_LT_LPAREN] = ACTIONS(57), + [anon_sym_GT_LPAREN] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(61), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(65), }, - [157] = { - [sym_redirected_statement] = STATE(1697), - [sym_for_statement] = STATE(1697), - [sym_c_style_for_statement] = STATE(1697), - [sym_while_statement] = STATE(1697), - [sym_if_statement] = STATE(1697), - [sym_case_statement] = STATE(1697), - [sym_function_definition] = STATE(1697), - [sym_compound_statement] = STATE(1697), - [sym_subshell] = STATE(1697), - [sym_pipeline] = STATE(1697), - [sym_list] = STATE(1697), - [sym_negated_command] = STATE(1697), - [sym_test_command] = STATE(1697), - [sym_declaration_command] = STATE(1697), - [sym_unset_command] = STATE(1697), - [sym_command] = STATE(1697), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(468), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym__statements_repeat1] = STATE(149), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [200] = { + [sym_redirected_statement] = STATE(2372), + [sym_for_statement] = STATE(2372), + [sym_c_style_for_statement] = STATE(2372), + [sym_while_statement] = STATE(2372), + [sym_if_statement] = STATE(2372), + [sym_case_statement] = STATE(2372), + [sym_function_definition] = STATE(2372), + [sym_compound_statement] = STATE(2372), + [sym_subshell] = STATE(2372), + [sym_pipeline] = STATE(2372), + [sym_list] = STATE(2372), + [sym_negated_command] = STATE(2372), + [sym_test_command] = STATE(2372), + [sym_declaration_command] = STATE(2372), + [sym_unset_command] = STATE(2372), + [sym_command] = STATE(2372), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(649), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, - [158] = { - [sym_redirected_statement] = STATE(1677), - [sym_for_statement] = STATE(1677), - [sym_c_style_for_statement] = STATE(1677), - [sym_while_statement] = STATE(1677), - [sym_if_statement] = STATE(1677), - [sym_case_statement] = STATE(1677), - [sym_function_definition] = STATE(1677), - [sym_compound_statement] = STATE(1677), - [sym_subshell] = STATE(1677), - [sym_pipeline] = STATE(1677), - [sym_list] = STATE(1677), - [sym_negated_command] = STATE(1677), - [sym_test_command] = STATE(1677), - [sym_declaration_command] = STATE(1677), - [sym_unset_command] = STATE(1677), - [sym_command] = STATE(1677), - [sym_command_name] = STATE(241), - [sym_variable_assignment] = STATE(385), - [sym_subscript] = STATE(3311), - [sym_file_redirect] = STATE(894), - [sym_concatenation] = STATE(895), - [sym_string] = STATE(400), - [sym_translated_string] = 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(894), - [aux_sym__literal_repeat1] = STATE(751), + [201] = { + [sym__terminated_statement] = STATE(4034), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [202] = { + [sym_redirected_statement] = STATE(2322), + [sym_for_statement] = STATE(2322), + [sym_c_style_for_statement] = STATE(2322), + [sym_while_statement] = STATE(2322), + [sym_if_statement] = STATE(2322), + [sym_case_statement] = STATE(2322), + [sym_function_definition] = STATE(2322), + [sym_compound_statement] = STATE(2322), + [sym_subshell] = STATE(2322), + [sym_pipeline] = STATE(2322), + [sym_list] = STATE(2322), + [sym_negated_command] = STATE(2322), + [sym_test_command] = STATE(2322), + [sym_declaration_command] = STATE(2322), + [sym_unset_command] = STATE(2322), + [sym_command] = STATE(2322), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(441), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym__statements_repeat1] = STATE(195), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), + }, + [203] = { + [sym__terminated_statement] = STATE(3994), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [204] = { + [sym__terminated_statement] = STATE(4191), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [205] = { + [sym__terminated_statement] = STATE(3969), + [sym_redirected_statement] = STATE(2508), + [sym_for_statement] = STATE(2508), + [sym_c_style_for_statement] = STATE(2508), + [sym_while_statement] = STATE(2508), + [sym_if_statement] = STATE(2508), + [sym_case_statement] = STATE(2508), + [sym_function_definition] = STATE(2508), + [sym_compound_statement] = STATE(2508), + [sym_subshell] = STATE(2508), + [sym_pipeline] = STATE(2508), + [sym_list] = STATE(2508), + [sym_negated_command] = STATE(2508), + [sym_test_command] = STATE(2508), + [sym_declaration_command] = STATE(2508), + [sym_unset_command] = STATE(2508), + [sym_command] = STATE(2508), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(957), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [206] = { + [sym_redirected_statement] = STATE(2328), + [sym_for_statement] = STATE(2328), + [sym_c_style_for_statement] = STATE(2328), + [sym_while_statement] = STATE(2328), + [sym_if_statement] = STATE(2328), + [sym_case_statement] = STATE(2328), + [sym_function_definition] = STATE(2328), + [sym_compound_statement] = STATE(2328), + [sym_subshell] = STATE(2328), + [sym_pipeline] = STATE(2328), + [sym_list] = STATE(2328), + [sym_negated_command] = STATE(2328), + [sym_test_command] = STATE(2328), + [sym_declaration_command] = STATE(2328), + [sym_unset_command] = STATE(2328), + [sym_command] = STATE(2328), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(470), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), + }, + [207] = { + [sym_redirected_statement] = STATE(2305), + [sym_for_statement] = STATE(2305), + [sym_c_style_for_statement] = STATE(2305), + [sym_while_statement] = STATE(2305), + [sym_if_statement] = STATE(2305), + [sym_case_statement] = STATE(2305), + [sym_function_definition] = STATE(2305), + [sym_compound_statement] = STATE(2305), + [sym_subshell] = STATE(2305), + [sym_pipeline] = STATE(2305), + [sym_list] = STATE(2305), + [sym_negated_command] = STATE(2305), + [sym_test_command] = STATE(2305), + [sym_declaration_command] = STATE(2305), + [sym_unset_command] = STATE(2305), + [sym_command] = STATE(2305), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(439), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), + }, + [208] = { + [sym_redirected_statement] = STATE(2396), + [sym_for_statement] = STATE(2396), + [sym_c_style_for_statement] = STATE(2396), + [sym_while_statement] = STATE(2396), + [sym_if_statement] = STATE(2396), + [sym_case_statement] = STATE(2396), + [sym_function_definition] = STATE(2396), + [sym_compound_statement] = STATE(2396), + [sym_subshell] = STATE(2396), + [sym_pipeline] = STATE(2396), + [sym_list] = STATE(2396), + [sym_negated_command] = STATE(2396), + [sym_test_command] = STATE(2396), + [sym_declaration_command] = STATE(2396), + [sym_unset_command] = STATE(2396), + [sym_command] = STATE(2396), + [sym_command_name] = STATE(383), + [sym_variable_assignment] = STATE(880), + [sym_subscript] = STATE(4013), + [sym_file_redirect] = STATE(1638), + [sym_arithmetic_expansion] = STATE(947), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(947), + [sym_translated_string] = STATE(947), + [sym_simple_expansion] = STATE(947), + [sym_expansion] = STATE(947), + [sym_command_substitution] = STATE(947), + [sym_process_substitution] = STATE(947), + [aux_sym_command_repeat1] = STATE(1638), + [aux_sym__literal_repeat1] = STATE(1639), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25220,421 +31606,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(35), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(39), - [sym__special_character] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [sym_ansi_c_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(57), - }, - [159] = { - [sym_redirected_statement] = STATE(1673), - [sym_for_statement] = STATE(1673), - [sym_c_style_for_statement] = STATE(1673), - [sym_while_statement] = STATE(1673), - [sym_if_statement] = STATE(1673), - [sym_case_statement] = STATE(1673), - [sym_function_definition] = STATE(1673), - [sym_compound_statement] = STATE(1673), - [sym_subshell] = STATE(1673), - [sym_pipeline] = STATE(1673), - [sym_list] = STATE(1673), - [sym_negated_command] = STATE(1673), - [sym_test_command] = STATE(1673), - [sym_declaration_command] = STATE(1673), - [sym_unset_command] = STATE(1673), - [sym_command] = STATE(1673), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(439), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), - }, - [160] = { - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(286), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym__special_character] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [sym_raw_string] = ACTIONS(49), + [sym_ansi_c_string] = ACTIONS(49), + [sym_number] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_LT_LPAREN] = ACTIONS(57), + [anon_sym_GT_LPAREN] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(61), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(65), }, - [161] = { - [sym_redirected_statement] = STATE(1664), - [sym_for_statement] = STATE(1664), - [sym_c_style_for_statement] = STATE(1664), - [sym_while_statement] = STATE(1664), - [sym_if_statement] = STATE(1664), - [sym_case_statement] = STATE(1664), - [sym_function_definition] = STATE(1664), - [sym_compound_statement] = STATE(1664), - [sym_subshell] = STATE(1664), - [sym_pipeline] = STATE(1664), - [sym_list] = STATE(1664), - [sym_negated_command] = STATE(1664), - [sym_test_command] = STATE(1664), - [sym_declaration_command] = STATE(1664), - [sym_unset_command] = STATE(1664), - [sym_command] = STATE(1664), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(287), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [209] = { + [sym_redirected_statement] = STATE(2353), + [sym_for_statement] = STATE(2353), + [sym_c_style_for_statement] = STATE(2353), + [sym_while_statement] = STATE(2353), + [sym_if_statement] = STATE(2353), + [sym_case_statement] = STATE(2353), + [sym_function_definition] = STATE(2353), + [sym_compound_statement] = STATE(2353), + [sym_subshell] = STATE(2353), + [sym_pipeline] = STATE(2353), + [sym_list] = STATE(2353), + [sym_negated_command] = STATE(2353), + [sym_test_command] = STATE(2353), + [sym_declaration_command] = STATE(2353), + [sym_unset_command] = STATE(2353), + [sym_command] = STATE(2353), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(695), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, - [162] = { - [sym_redirected_statement] = STATE(1660), - [sym_for_statement] = STATE(1660), - [sym_c_style_for_statement] = STATE(1660), - [sym_while_statement] = STATE(1660), - [sym_if_statement] = STATE(1660), - [sym_case_statement] = STATE(1660), - [sym_function_definition] = STATE(1660), - [sym_compound_statement] = STATE(1660), - [sym_subshell] = STATE(1660), - [sym_pipeline] = STATE(1660), - [sym_list] = STATE(1660), - [sym_negated_command] = STATE(1660), - [sym_test_command] = STATE(1660), - [sym_declaration_command] = STATE(1660), - [sym_unset_command] = STATE(1660), - [sym_command] = STATE(1660), - [sym_command_name] = STATE(200), - [sym_variable_assignment] = STATE(283), - [sym_subscript] = STATE(3260), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(302), - [sym_translated_string] = STATE(302), - [sym_simple_expansion] = STATE(302), - [sym_expansion] = STATE(302), - [sym_command_substitution] = STATE(302), - [sym_process_substitution] = STATE(302), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(314), - [sym_word] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(155), - [anon_sym_typeset] = ACTIONS(155), - [anon_sym_export] = ACTIONS(155), - [anon_sym_readonly] = ACTIONS(155), - [anon_sym_local] = ACTIONS(155), - [anon_sym_unset] = ACTIONS(157), - [anon_sym_unsetenv] = ACTIONS(157), + [210] = { + [sym_redirected_statement] = STATE(2353), + [sym_for_statement] = STATE(2353), + [sym_c_style_for_statement] = STATE(2353), + [sym_while_statement] = STATE(2353), + [sym_if_statement] = STATE(2353), + [sym_case_statement] = STATE(2353), + [sym_function_definition] = STATE(2353), + [sym_compound_statement] = STATE(2353), + [sym_subshell] = STATE(2353), + [sym_pipeline] = STATE(2353), + [sym_list] = STATE(2353), + [sym_negated_command] = STATE(2353), + [sym_test_command] = STATE(2353), + [sym_declaration_command] = STATE(2353), + [sym_unset_command] = STATE(2353), + [sym_command] = STATE(2353), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1056), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(159), - [sym__special_character] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [sym_raw_string] = ACTIONS(165), - [sym_ansi_c_string] = ACTIONS(165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(171), - [anon_sym_LT_LPAREN] = ACTIONS(173), - [anon_sym_GT_LPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, - [163] = { - [sym_redirected_statement] = STATE(1672), - [sym_for_statement] = STATE(1672), - [sym_c_style_for_statement] = STATE(1672), - [sym_while_statement] = STATE(1672), - [sym_if_statement] = STATE(1672), - [sym_case_statement] = STATE(1672), - [sym_function_definition] = STATE(1672), - [sym_compound_statement] = STATE(1672), - [sym_subshell] = STATE(1672), - [sym_pipeline] = STATE(1672), - [sym_list] = STATE(1672), - [sym_negated_command] = STATE(1672), - [sym_test_command] = STATE(1672), - [sym_declaration_command] = STATE(1672), - [sym_unset_command] = STATE(1672), - [sym_command] = STATE(1672), - [sym_command_name] = STATE(226), - [sym_variable_assignment] = STATE(289), - [sym_subscript] = STATE(3300), - [sym_file_redirect] = STATE(856), - [sym_concatenation] = STATE(679), - [sym_string] = STATE(380), - [sym_translated_string] = STATE(380), - [sym_simple_expansion] = STATE(380), - [sym_expansion] = STATE(380), - [sym_command_substitution] = STATE(380), - [sym_process_substitution] = STATE(380), - [aux_sym_command_repeat1] = STATE(856), - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(239), - [anon_sym_for] = ACTIONS(125), - [anon_sym_select] = ACTIONS(127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(129), - [anon_sym_while] = ACTIONS(131), - [anon_sym_until] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_function] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(153), - [anon_sym_declare] = ACTIONS(245), - [anon_sym_typeset] = ACTIONS(245), - [anon_sym_export] = ACTIONS(245), - [anon_sym_readonly] = ACTIONS(245), - [anon_sym_local] = ACTIONS(245), - [anon_sym_unset] = ACTIONS(247), - [anon_sym_unsetenv] = ACTIONS(247), + [211] = { + [sym_redirected_statement] = STATE(2417), + [sym_for_statement] = STATE(2417), + [sym_c_style_for_statement] = STATE(2417), + [sym_while_statement] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_case_statement] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_compound_statement] = STATE(2417), + [sym_subshell] = STATE(2417), + [sym_pipeline] = STATE(2417), + [sym_list] = STATE(2417), + [sym_negated_command] = STATE(2417), + [sym_test_command] = STATE(2417), + [sym_declaration_command] = STATE(2417), + [sym_unset_command] = STATE(2417), + [sym_command] = STATE(2417), + [sym_command_name] = STATE(409), + [sym_variable_assignment] = STATE(1054), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1899), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1899), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_typeset] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_local] = ACTIONS(541), + [anon_sym_unset] = ACTIONS(543), + [anon_sym_unsetenv] = ACTIONS(543), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(249), - [sym__special_character] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_ansi_c_string] = ACTIONS(255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(257), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), }, - [164] = { - [sym_redirected_statement] = STATE(1676), - [sym_for_statement] = STATE(1676), - [sym_c_style_for_statement] = STATE(1676), - [sym_while_statement] = STATE(1676), - [sym_if_statement] = STATE(1676), - [sym_case_statement] = STATE(1676), - [sym_function_definition] = STATE(1676), - [sym_compound_statement] = STATE(1676), - [sym_subshell] = STATE(1676), - [sym_pipeline] = STATE(1676), - [sym_list] = STATE(1676), - [sym_negated_command] = STATE(1676), - [sym_test_command] = STATE(1676), - [sym_declaration_command] = STATE(1676), - [sym_unset_command] = STATE(1676), - [sym_command] = STATE(1676), - [sym_command_name] = STATE(241), - [sym_variable_assignment] = STATE(382), - [sym_subscript] = STATE(3311), - [sym_file_redirect] = STATE(894), - [sym_concatenation] = STATE(895), - [sym_string] = STATE(400), - [sym_translated_string] = 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(894), - [aux_sym__literal_repeat1] = STATE(751), + [212] = { + [sym_redirected_statement] = STATE(2397), + [sym_for_statement] = STATE(2397), + [sym_c_style_for_statement] = STATE(2397), + [sym_while_statement] = STATE(2397), + [sym_if_statement] = STATE(2397), + [sym_case_statement] = STATE(2397), + [sym_function_definition] = STATE(2397), + [sym_compound_statement] = STATE(2397), + [sym_subshell] = STATE(2397), + [sym_pipeline] = STATE(2397), + [sym_list] = STATE(2397), + [sym_negated_command] = STATE(2397), + [sym_test_command] = STATE(2397), + [sym_declaration_command] = STATE(2397), + [sym_unset_command] = STATE(2397), + [sym_command] = STATE(2397), + [sym_command_name] = STATE(383), + [sym_variable_assignment] = STATE(882), + [sym_subscript] = STATE(4013), + [sym_file_redirect] = STATE(1638), + [sym_arithmetic_expansion] = STATE(947), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(947), + [sym_translated_string] = STATE(947), + [sym_simple_expansion] = STATE(947), + [sym_expansion] = STATE(947), + [sym_command_substitution] = STATE(947), + [sym_process_substitution] = STATE(947), + [aux_sym_command_repeat1] = STATE(1638), + [aux_sym__literal_repeat1] = STATE(1639), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25658,286 +31910,1060 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(35), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(39), - [sym__special_character] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [sym_ansi_c_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(57), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym__special_character] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [sym_raw_string] = ACTIONS(49), + [sym_ansi_c_string] = ACTIONS(49), + [sym_number] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_LT_LPAREN] = ACTIONS(57), + [anon_sym_GT_LPAREN] = ACTIONS(57), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(61), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(65), }, - [165] = { - [sym_redirected_statement] = STATE(1671), - [sym_for_statement] = STATE(1671), - [sym_c_style_for_statement] = STATE(1671), - [sym_while_statement] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_case_statement] = STATE(1671), - [sym_function_definition] = STATE(1671), - [sym_compound_statement] = STATE(1671), - [sym_subshell] = STATE(1671), - [sym_pipeline] = STATE(1671), - [sym_list] = STATE(1671), - [sym_negated_command] = STATE(1671), - [sym_test_command] = STATE(1671), - [sym_declaration_command] = STATE(1671), - [sym_unset_command] = STATE(1671), - [sym_command] = STATE(1671), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(351), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [213] = { + [sym_redirected_statement] = STATE(2299), + [sym_for_statement] = STATE(2299), + [sym_c_style_for_statement] = STATE(2299), + [sym_while_statement] = STATE(2299), + [sym_if_statement] = STATE(2299), + [sym_case_statement] = STATE(2299), + [sym_function_definition] = STATE(2299), + [sym_compound_statement] = STATE(2299), + [sym_subshell] = STATE(2299), + [sym_pipeline] = STATE(2299), + [sym_list] = STATE(2299), + [sym_negated_command] = STATE(2299), + [sym_test_command] = STATE(2299), + [sym_declaration_command] = STATE(2299), + [sym_unset_command] = STATE(2299), + [sym_command] = STATE(2299), + [sym_command_name] = STATE(328), + [sym_variable_assignment] = STATE(442), + [sym_subscript] = STATE(3962), + [sym_file_redirect] = STATE(1751), + [sym_arithmetic_expansion] = STATE(480), + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(480), + [sym_translated_string] = STATE(480), + [sym_simple_expansion] = STATE(480), + [sym_expansion] = STATE(480), + [sym_command_substitution] = STATE(480), + [sym_process_substitution] = STATE(480), + [aux_sym_command_repeat1] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(807), + [sym_word] = ACTIONS(248), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym__special_character] = ACTIONS(290), + [anon_sym_DQUOTE] = ACTIONS(292), + [sym_raw_string] = ACTIONS(294), + [sym_ansi_c_string] = ACTIONS(294), + [sym_number] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_LT_LPAREN] = ACTIONS(302), + [anon_sym_GT_LPAREN] = ACTIONS(302), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(304), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(306), }, - [166] = { - [sym_redirected_statement] = STATE(1671), - [sym_for_statement] = STATE(1671), - [sym_c_style_for_statement] = STATE(1671), - [sym_while_statement] = STATE(1671), - [sym_if_statement] = STATE(1671), - [sym_case_statement] = STATE(1671), - [sym_function_definition] = STATE(1671), - [sym_compound_statement] = STATE(1671), - [sym_subshell] = STATE(1671), - [sym_pipeline] = STATE(1671), - [sym_list] = STATE(1671), - [sym_negated_command] = STATE(1671), - [sym_test_command] = STATE(1671), - [sym_declaration_command] = STATE(1671), - [sym_unset_command] = STATE(1671), - [sym_command] = STATE(1671), - [sym_command_name] = STATE(249), - [sym_variable_assignment] = STATE(398), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(808), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(808), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(379), - [anon_sym_typeset] = ACTIONS(379), - [anon_sym_export] = ACTIONS(379), - [anon_sym_readonly] = ACTIONS(379), - [anon_sym_local] = ACTIONS(379), - [anon_sym_unset] = ACTIONS(381), - [anon_sym_unsetenv] = ACTIONS(381), + [214] = { + [sym_redirected_statement] = STATE(2350), + [sym_for_statement] = STATE(2350), + [sym_c_style_for_statement] = STATE(2350), + [sym_while_statement] = STATE(2350), + [sym_if_statement] = STATE(2350), + [sym_case_statement] = STATE(2350), + [sym_function_definition] = STATE(2350), + [sym_compound_statement] = STATE(2350), + [sym_subshell] = STATE(2350), + [sym_pipeline] = STATE(2350), + [sym_list] = STATE(2350), + [sym_negated_command] = STATE(2350), + [sym_test_command] = STATE(2350), + [sym_declaration_command] = STATE(2350), + [sym_unset_command] = STATE(2350), + [sym_command] = STATE(2350), + [sym_command_name] = STATE(344), + [sym_variable_assignment] = STATE(469), + [sym_subscript] = STATE(3926), + [sym_file_redirect] = STATE(1664), + [sym_arithmetic_expansion] = STATE(924), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(924), + [sym_translated_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [aux_sym_command_repeat1] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(981), + [sym_word] = ACTIONS(380), + [anon_sym_for] = ACTIONS(250), + [anon_sym_select] = ACTIONS(252), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(256), + [anon_sym_until] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(386), + [anon_sym_typeset] = ACTIONS(386), + [anon_sym_export] = ACTIONS(386), + [anon_sym_readonly] = ACTIONS(386), + [anon_sym_local] = ACTIONS(386), + [anon_sym_unset] = ACTIONS(388), + [anon_sym_unsetenv] = ACTIONS(388), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_character] = ACTIONS(394), + [anon_sym_DQUOTE] = ACTIONS(396), + [sym_raw_string] = ACTIONS(398), + [sym_ansi_c_string] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_LT_LPAREN] = ACTIONS(406), + [anon_sym_GT_LPAREN] = ACTIONS(406), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(410), }, - [167] = { - [sym_redirected_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_c_style_for_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_case_statement] = STATE(1683), - [sym_function_definition] = STATE(1683), - [sym_compound_statement] = STATE(1683), - [sym_subshell] = STATE(1683), - [sym_pipeline] = STATE(1683), - [sym_list] = STATE(1683), - [sym_negated_command] = STATE(1683), - [sym_test_command] = STATE(1683), - [sym_declaration_command] = STATE(1683), - [sym_unset_command] = STATE(1683), - [sym_command] = STATE(1683), - [sym_command_name] = STATE(238), - [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(3304), - [sym_file_redirect] = STATE(783), - [sym_concatenation] = STATE(787), - [sym_string] = STATE(519), - [sym_translated_string] = STATE(519), - [sym_simple_expansion] = STATE(519), - [sym_expansion] = STATE(519), - [sym_command_substitution] = STATE(519), - [sym_process_substitution] = STATE(519), - [aux_sym_command_repeat1] = STATE(783), - [aux_sym__literal_repeat1] = STATE(579), - [sym_word] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_select] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_until] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [215] = { + [sym_redirected_statement] = STATE(2431), + [sym_for_statement] = STATE(2431), + [sym_c_style_for_statement] = STATE(2431), + [sym_while_statement] = STATE(2431), + [sym_if_statement] = STATE(2431), + [sym_case_statement] = STATE(2431), + [sym_function_definition] = STATE(2431), + [sym_compound_statement] = STATE(2431), + [sym_subshell] = STATE(2431), + [sym_pipeline] = STATE(2431), + [sym_list] = STATE(2431), + [sym_negated_command] = STATE(2431), + [sym_test_command] = STATE(2431), + [sym_declaration_command] = STATE(2431), + [sym_unset_command] = STATE(2431), + [sym_command] = STATE(2431), + [sym_command_name] = STATE(371), + [sym_variable_assignment] = STATE(697), + [sym_subscript] = STATE(3951), + [sym_file_redirect] = STATE(1885), + [sym_arithmetic_expansion] = STATE(1166), + [sym_concatenation] = STATE(1938), + [sym_string] = STATE(1166), + [sym_translated_string] = STATE(1166), + [sym_simple_expansion] = STATE(1166), + [sym_expansion] = STATE(1166), + [sym_command_substitution] = STATE(1166), + [sym_process_substitution] = STATE(1166), + [aux_sym_command_repeat1] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_word] = ACTIONS(182), + [anon_sym_for] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_until] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_case] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(190), + [anon_sym_function] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK_LBRACK] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), [anon_sym_LT] = ACTIONS(37), [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [anon_sym_GT_PIPE] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), + [anon_sym_DOLLAR] = ACTIONS(196), + [sym__special_character] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_raw_string] = ACTIONS(202), + [sym_ansi_c_string] = ACTIONS(202), + [sym_number] = ACTIONS(204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), + [anon_sym_BQUOTE] = ACTIONS(208), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(212), + [sym_file_descriptor] = ACTIONS(63), + [sym_variable_name] = ACTIONS(119), + }, + [216] = { + [sym__expression] = STATE(856), + [sym_binary_expression] = STATE(810), + [sym_ternary_expression] = STATE(810), + [sym_unary_expression] = STATE(810), + [sym_postfix_expression] = STATE(810), + [sym_parenthesized_expression] = STATE(810), + [sym_arithmetic_expansion] = STATE(437), + [sym_concatenation] = STATE(810), + [sym_string] = STATE(437), + [sym_translated_string] = STATE(437), + [sym_simple_expansion] = STATE(437), + [sym_expansion] = STATE(437), + [sym_command_substitution] = STATE(437), + [sym_process_substitution] = STATE(437), + [aux_sym__literal_repeat1] = STATE(438), + [aux_sym_concatenation_repeat1] = STATE(446), + [sym_word] = ACTIONS(722), + [anon_sym_LF] = ACTIONS(153), + [anon_sym_RPAREN_RPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_SEMI_SEMI] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(153), + [anon_sym_PIPE_PIPE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_LT_LT_EQ] = ACTIONS(153), + [anon_sym_GT_GT_EQ] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(153), + [anon_sym_PIPE_EQ] = ACTIONS(153), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(728), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym__special_character] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym_raw_string] = ACTIONS(722), + [sym_ansi_c_string] = ACTIONS(722), + [sym_number] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(738), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(742), + [anon_sym_GT_LPAREN] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(744), + [sym__concat] = ACTIONS(746), + }, + [217] = { + [sym__expression] = STATE(1935), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(482), + [sym_concatenation] = STATE(956), + [sym_string] = STATE(482), + [sym_translated_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym__literal_repeat1] = STATE(1405), + [aux_sym_concatenation_repeat1] = STATE(461), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_RBRACK_RBRACK] = ACTIONS(750), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(164), + [sym__special_character] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(762), + [sym_ansi_c_string] = ACTIONS(762), + [sym_number] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_LT_LPAREN] = ACTIONS(768), + [anon_sym_GT_LPAREN] = ACTIONS(768), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(770), + [sym__concat] = ACTIONS(772), + }, + [218] = { + [sym__expression] = STATE(2066), + [sym_binary_expression] = STATE(2100), + [sym_ternary_expression] = STATE(2100), + [sym_unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_parenthesized_expression] = STATE(2100), + [sym_arithmetic_expansion] = STATE(982), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(982), + [sym_translated_string] = STATE(982), + [sym_simple_expansion] = STATE(982), + [sym_expansion] = STATE(982), + [sym_command_substitution] = STATE(982), + [sym_process_substitution] = STATE(982), + [aux_sym__literal_repeat1] = STATE(1091), + [aux_sym_concatenation_repeat1] = STATE(1424), + [sym_word] = ACTIONS(222), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(226), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(127), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(230), + [sym__special_character] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(780), + [sym_raw_string] = ACTIONS(782), + [sym_ansi_c_string] = ACTIONS(782), + [sym_number] = ACTIONS(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(786), + [anon_sym_LT_LPAREN] = ACTIONS(788), + [anon_sym_GT_LPAREN] = ACTIONS(788), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(790), + [sym__concat] = ACTIONS(792), + }, + [219] = { + [sym__expression] = STATE(1915), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(482), + [sym_concatenation] = STATE(956), + [sym_string] = STATE(482), + [sym_translated_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym__literal_repeat1] = STATE(925), + [aux_sym_concatenation_repeat1] = STATE(461), + [sym_word] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_COLON] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(164), + [sym__special_character] = ACTIONS(798), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(762), + [sym_ansi_c_string] = ACTIONS(762), + [sym_number] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_LT_LPAREN] = ACTIONS(768), + [anon_sym_GT_LPAREN] = ACTIONS(768), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(800), + [sym__concat] = ACTIONS(772), + }, + [220] = { + [sym__expression] = STATE(1960), + [sym_binary_expression] = STATE(1930), + [sym_ternary_expression] = STATE(1930), + [sym_unary_expression] = STATE(1930), + [sym_postfix_expression] = STATE(1930), + [sym_parenthesized_expression] = STATE(1930), + [sym_arithmetic_expansion] = STATE(1181), + [sym_concatenation] = STATE(1930), + [sym_string] = STATE(1181), + [sym_translated_string] = STATE(1181), + [sym_simple_expansion] = STATE(1181), + [sym_expansion] = STATE(1181), + [sym_command_substitution] = STATE(1181), + [sym_process_substitution] = STATE(1181), + [aux_sym__literal_repeat1] = STATE(1190), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_word] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(812), + [sym__special_character] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(816), + [sym_raw_string] = ACTIONS(818), + [sym_ansi_c_string] = ACTIONS(818), + [sym_number] = ACTIONS(802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(822), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(826), + [sym__concat] = ACTIONS(828), + }, + [221] = { + [sym_string] = STATE(246), + [sym_word] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_RPAREN_RPAREN] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_PLUS_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_GT_PIPE] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [anon_sym_BANG_EQ] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_STAR_EQ] = ACTIONS(830), + [anon_sym_SLASH_EQ] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_PERCENT_EQ] = ACTIONS(830), + [anon_sym_STAR_STAR] = ACTIONS(830), + [anon_sym_LT_EQ] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(830), + [anon_sym_LT_LT_EQ] = ACTIONS(830), + [anon_sym_GT_GT_EQ] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_AMP_EQ] = ACTIONS(830), + [anon_sym_PIPE_EQ] = ACTIONS(830), + [anon_sym_CARET_EQ] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym__special_character] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(830), + [sym_ansi_c_string] = ACTIONS(830), + [sym_number] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(832), + [anon_sym_0] = ACTIONS(832), + [anon_sym__] = ACTIONS(832), + [sym_test_operator] = ACTIONS(830), + [sym_file_descriptor] = ACTIONS(838), + }, + [222] = { + [sym__expression] = STATE(2092), + [sym_binary_expression] = STATE(956), + [sym_ternary_expression] = STATE(956), + [sym_unary_expression] = STATE(956), + [sym_postfix_expression] = STATE(956), + [sym_parenthesized_expression] = STATE(956), + [sym_arithmetic_expansion] = STATE(482), + [sym_concatenation] = STATE(956), + [sym_string] = STATE(482), + [sym_translated_string] = STATE(482), + [sym_simple_expansion] = STATE(482), + [sym_expansion] = STATE(482), + [sym_command_substitution] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym__literal_repeat1] = STATE(925), + [aux_sym_concatenation_repeat1] = STATE(461), + [sym_word] = ACTIONS(149), + [anon_sym_RPAREN_RPAREN] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(160), + [anon_sym_EQ_TILDE] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(153), + [anon_sym_EQ] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_DASH_EQ] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_STAR_EQ] = ACTIONS(153), + [anon_sym_SLASH_EQ] = ACTIONS(153), + [anon_sym_PERCENT] = ACTIONS(153), + [anon_sym_PERCENT_EQ] = ACTIONS(153), + [anon_sym_STAR_STAR] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(153), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_unary_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(164), + [sym__special_character] = ACTIONS(798), + [anon_sym_DQUOTE] = ACTIONS(760), + [sym_raw_string] = ACTIONS(762), + [sym_ansi_c_string] = ACTIONS(762), + [sym_number] = ACTIONS(149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(766), + [anon_sym_LT_LPAREN] = ACTIONS(768), + [anon_sym_GT_LPAREN] = ACTIONS(768), + [sym_comment] = ACTIONS(59), + [sym_test_operator] = ACTIONS(840), + [sym__concat] = ACTIONS(772), + }, + [223] = { + [sym_string] = STATE(246), + [sym_word] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(842), + [anon_sym_RPAREN_RPAREN] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_SEMI_SEMI] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_PLUS_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(842), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_GT_PIPE] = ACTIONS(842), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_LT_LT_DASH] = ACTIONS(842), + [anon_sym_LT_LT_LT] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_STAR_EQ] = ACTIONS(842), + [anon_sym_SLASH_EQ] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_PERCENT_EQ] = ACTIONS(842), + [anon_sym_STAR_STAR] = ACTIONS(842), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_LT_LT_EQ] = ACTIONS(842), + [anon_sym_GT_GT_EQ] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_AMP_EQ] = ACTIONS(842), + [anon_sym_PIPE_EQ] = ACTIONS(842), + [anon_sym_CARET_EQ] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym__special_character] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(834), + [sym_raw_string] = ACTIONS(842), + [sym_ansi_c_string] = ACTIONS(842), + [sym_number] = ACTIONS(842), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(832), + [anon_sym_0] = ACTIONS(832), + [anon_sym__] = ACTIONS(832), + [sym_test_operator] = ACTIONS(842), + [sym_file_descriptor] = ACTIONS(844), + }, + [224] = { + [sym_string] = STATE(274), + [sym_word] = ACTIONS(842), + [anon_sym_LF] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_SEMI_SEMI] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_PLUS_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_AMP_GT] = ACTIONS(842), + [anon_sym_AMP_GT_GT] = ACTIONS(842), + [anon_sym_LT_AMP] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(842), + [anon_sym_GT_PIPE] = ACTIONS(842), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_LT_LT_DASH] = ACTIONS(842), + [anon_sym_LT_LT_LT] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_EQ] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_STAR_EQ] = ACTIONS(842), + [anon_sym_SLASH_EQ] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_PERCENT_EQ] = ACTIONS(842), + [anon_sym_STAR_STAR] = ACTIONS(842), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_LT_LT_EQ] = ACTIONS(842), + [anon_sym_GT_GT_EQ] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_AMP_EQ] = ACTIONS(842), + [anon_sym_PIPE_EQ] = ACTIONS(842), + [anon_sym_CARET_EQ] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(846), + [sym__special_character] = ACTIONS(842), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(842), + [sym_ansi_c_string] = ACTIONS(842), + [sym_number] = ACTIONS(842), + [anon_sym_POUND] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(842), + [anon_sym_GT_LPAREN] = ACTIONS(842), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(55), - [sym_variable_name] = ACTIONS(111), + [aux_sym__simple_variable_name_token1] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_0] = ACTIONS(846), + [anon_sym__] = ACTIONS(846), + [sym_test_operator] = ACTIONS(842), + [sym_file_descriptor] = ACTIONS(844), + }, + [225] = { + [sym_string] = STATE(274), + [sym_word] = ACTIONS(830), + [anon_sym_LF] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_EQ_TILDE] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(830), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_PLUS_EQ] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(830), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_GT_PIPE] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [anon_sym_BANG_EQ] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_DASH_EQ] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_STAR_EQ] = ACTIONS(830), + [anon_sym_SLASH_EQ] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_PERCENT_EQ] = ACTIONS(830), + [anon_sym_STAR_STAR] = ACTIONS(830), + [anon_sym_LT_EQ] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(830), + [anon_sym_LT_LT_EQ] = ACTIONS(830), + [anon_sym_GT_GT_EQ] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_AMP_EQ] = ACTIONS(830), + [anon_sym_PIPE_EQ] = ACTIONS(830), + [anon_sym_CARET_EQ] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(846), + [sym__special_character] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(830), + [sym_ansi_c_string] = ACTIONS(830), + [sym_number] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_0] = ACTIONS(846), + [anon_sym__] = ACTIONS(846), + [sym_test_operator] = ACTIONS(830), + [sym_file_descriptor] = ACTIONS(838), + }, + [226] = { + [aux_sym_concatenation_repeat1] = STATE(227), + [sym_word] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_RPAREN_RPAREN] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_EQ_TILDE] = ACTIONS(858), + [anon_sym_EQ_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_PLUS_EQ] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(852), + [anon_sym_AMP_GT_GT] = ACTIONS(852), + [anon_sym_LT_AMP] = ACTIONS(852), + [anon_sym_GT_AMP] = ACTIONS(852), + [anon_sym_GT_PIPE] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(858), + [anon_sym_LT_LT_DASH] = ACTIONS(852), + [anon_sym_LT_LT_LT] = ACTIONS(852), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DASH_EQ] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_STAR_EQ] = ACTIONS(854), + [anon_sym_SLASH_EQ] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_PERCENT_EQ] = ACTIONS(854), + [anon_sym_STAR_STAR] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_LT_LT_EQ] = ACTIONS(854), + [anon_sym_GT_GT_EQ] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym_AMP_EQ] = ACTIONS(854), + [anon_sym_PIPE_EQ] = ACTIONS(854), + [anon_sym_CARET_EQ] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_PLUS_PLUS] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(852), + [sym__special_character] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(852), + [sym_raw_string] = ACTIONS(852), + [sym_ansi_c_string] = ACTIONS(852), + [sym_number] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), + [anon_sym_BQUOTE] = ACTIONS(852), + [anon_sym_LT_LPAREN] = ACTIONS(852), + [anon_sym_GT_LPAREN] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [sym_test_operator] = ACTIONS(858), + [sym_file_descriptor] = ACTIONS(861), + [sym__concat] = ACTIONS(180), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 7, + [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, - sym__simple_heredoc_body, - ACTIONS(493), 1, - sym__heredoc_body_beginning, - STATE(2898), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(865), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(489), 4, - anon_sym_esac, + ACTIONS(867), 1, + sym__concat, + STATE(232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -25946,111 +32972,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64] = 7, + sym_test_operator, + [75] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, - sym__simple_heredoc_body, - ACTIONS(493), 1, - sym__heredoc_body_beginning, - STATE(2878), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(180), 1, + sym__concat, + ACTIONS(861), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + STATE(227), 1, + aux_sym_concatenation_repeat1, + ACTIONS(858), 11, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(852), 24, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [128] = 7, + ACTIONS(854), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, - sym__simple_heredoc_body, - ACTIONS(493), 1, - sym__heredoc_body_beginning, - STATE(2940), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(871), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(489), 3, + ACTIONS(873), 1, + sym__concat, + STATE(232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26059,71 +33114,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [191] = 17, + sym_test_operator, + [229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DOLLAR, - ACTIONS(505), 1, - sym__special_character, - ACTIONS(507), 1, - anon_sym_DQUOTE, - ACTIONS(509), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(513), 1, - anon_sym_BQUOTE, - ACTIONS(517), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(519), 1, + ACTIONS(180), 1, + sym__concat, + ACTIONS(877), 1, sym_file_descriptor, - ACTIONS(521), 1, - sym_variable_name, - STATE(334), 1, - aux_sym__literal_repeat1, - STATE(3246), 1, - sym_subscript, - ACTIONS(515), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(499), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(175), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(501), 22, + STATE(227), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26135,165 +33187,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [274] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(505), 1, sym__special_character, - ACTIONS(507), 1, anon_sym_DQUOTE, - ACTIONS(509), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(513), 1, anon_sym_BQUOTE, - ACTIONS(521), 1, - sym_variable_name, - ACTIONS(525), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(527), 1, - sym_file_descriptor, - STATE(334), 1, - aux_sym__literal_repeat1, - STATE(3246), 1, - sym_subscript, - ACTIONS(515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(499), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(171), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(523), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + sym_test_operator, + [304] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(244), 1, + sym__concat, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + sym_file_descriptor, + STATE(247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(858), 12, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [357] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 1, - sym__simple_heredoc_body, - ACTIONS(493), 1, - sym__heredoc_body_beginning, - STATE(2947), 1, - sym_heredoc_body, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 3, + sym_test_operator, + ACTIONS(852), 23, + anon_sym_LF, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [420] = 6, + ACTIONS(854), 24, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(3050), 1, - sym_heredoc_body, - ACTIONS(533), 2, + ACTIONS(881), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 42, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + ACTIONS(883), 1, + sym__concat, + STATE(232), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26302,71 +33327,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [481] = 17, + sym_test_operator, + [460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_DOLLAR, - ACTIONS(543), 1, - sym__special_character, - ACTIONS(546), 1, - anon_sym_DQUOTE, - ACTIONS(549), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(555), 1, - anon_sym_BQUOTE, - ACTIONS(561), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(564), 1, + ACTIONS(888), 2, sym_file_descriptor, - ACTIONS(566), 1, - sym_variable_name, - STATE(334), 1, - aux_sym__literal_repeat1, - STATE(3246), 1, - sym_subscript, - ACTIONS(558), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(535), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(175), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(538), 22, + sym__concat, + ACTIONS(886), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26378,60 +33397,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [564] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - sym_file_descriptor, - ACTIONS(572), 1, - anon_sym_DOLLAR, - ACTIONS(575), 1, - sym__special_character, - ACTIONS(578), 1, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(581), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(584), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(587), 1, anon_sym_BQUOTE, - ACTIONS(593), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(596), 1, - sym_variable_name, - STATE(495), 1, - aux_sym__literal_repeat1, - STATE(3248), 1, - sym_subscript, - ACTIONS(590), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(569), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(176), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(379), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(538), 21, + sym_test_operator, + [530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26443,41 +33464,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [646] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(605), 1, + ACTIONS(896), 2, sym_file_descriptor, - STATE(309), 1, - sym_string, - ACTIONS(601), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 33, + sym__concat, + ACTIONS(894), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26489,69 +33531,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [708] = 17, + sym_test_operator, + [670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 1, + ACTIONS(900), 2, sym_file_descriptor, - ACTIONS(609), 1, + sym__concat, + ACTIONS(898), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(611), 1, sym__special_character, - ACTIONS(613), 1, anon_sym_DQUOTE, - ACTIONS(615), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(617), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(619), 1, anon_sym_BQUOTE, - ACTIONS(623), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(625), 1, - sym_variable_name, - STATE(495), 1, - aux_sym__literal_repeat1, - STATE(3248), 1, - sym_subscript, - ACTIONS(621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(607), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(179), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(379), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(523), 21, + sym_test_operator, + [740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26563,60 +33665,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [790] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(519), 1, - sym_file_descriptor, - ACTIONS(609), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(611), 1, sym__special_character, - ACTIONS(613), 1, anon_sym_DQUOTE, - ACTIONS(615), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(617), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(619), 1, anon_sym_BQUOTE, - ACTIONS(625), 1, - sym_variable_name, - ACTIONS(627), 1, - aux_sym__simple_variable_name_token1, - STATE(495), 1, - aux_sym__literal_repeat1, - STATE(3248), 1, - sym_subscript, - ACTIONS(621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(607), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(176), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(379), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(501), 21, + sym_test_operator, + [810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26628,58 +33732,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [872] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(640), 1, sym__special_character, - ACTIONS(643), 1, anon_sym_DQUOTE, - ACTIONS(646), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(652), 1, anon_sym_BQUOTE, - ACTIONS(658), 1, - sym_file_descriptor, - STATE(180), 1, - aux_sym_command_repeat2, - STATE(370), 1, - aux_sym__literal_repeat1, - STATE(474), 1, - sym_concatenation, - ACTIONS(634), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(655), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(629), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(300), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(632), 22, + sym_test_operator, + [880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26691,41 +33799,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [951] = 6, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(3042), 1, - sym_heredoc_body, - ACTIONS(533), 2, + ACTIONS(912), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + sym__concat, + ACTIONS(910), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26734,49 +33863,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1010] = 4, + sym_test_operator, + [1020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 2, + ACTIONS(916), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(662), 4, - anon_sym_esac, + sym__concat, + ACTIONS(914), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26785,49 +33930,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1065] = 4, + sym_test_operator, + [1090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 2, + ACTIONS(920), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(666), 4, - anon_sym_esac, + sym__concat, + ACTIONS(918), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26836,69 +33997,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1120] = 17, + sym_test_operator, + [1160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 1, - anon_sym_DOLLAR, - ACTIONS(674), 1, + ACTIONS(924), 1, sym__special_character, - ACTIONS(677), 1, - anon_sym_DQUOTE, - ACTIONS(680), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(683), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(686), 1, - anon_sym_BQUOTE, - ACTIONS(692), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(695), 1, - sym_variable_name, - STATE(742), 1, - aux_sym__literal_repeat1, - STATE(3348), 1, - sym_subscript, - ACTIONS(564), 2, + ACTIONS(927), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(689), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(668), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(184), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(436), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(538), 19, + STATE(243), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 59, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26910,113 +34070,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [1201] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(698), 1, - ts_builtin_sym_end, - ACTIONS(700), 1, - sym__simple_heredoc_body, - ACTIONS(702), 1, - sym__heredoc_body_beginning, - STATE(2989), 1, - sym_heredoc_body, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1262] = 17, + sym_test_operator, + [1234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(706), 1, - anon_sym_DOLLAR, - ACTIONS(708), 1, - sym__special_character, - ACTIONS(710), 1, - anon_sym_DQUOTE, - ACTIONS(712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(716), 1, - anon_sym_BQUOTE, - ACTIONS(720), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(722), 1, - sym_variable_name, - STATE(742), 1, - aux_sym__literal_repeat1, - STATE(3348), 1, - sym_subscript, - ACTIONS(527), 2, + ACTIONS(931), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(704), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(207), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(436), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(523), 19, + sym__concat, + ACTIONS(929), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27028,40 +34136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [1343] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [1304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(253), 1, - anon_sym_DQUOTE, - ACTIONS(605), 1, + ACTIONS(935), 2, sym_file_descriptor, - ACTIONS(726), 1, - aux_sym__simple_variable_name_token1, - STATE(423), 1, - sym_string, - ACTIONS(724), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 32, + sym__concat, + ACTIONS(933), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27073,61 +34203,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [1404] = 17, + sym_test_operator, + [1374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 1, + ACTIONS(939), 2, sym_file_descriptor, - ACTIONS(730), 1, - anon_sym_DOLLAR, - ACTIONS(732), 1, - sym__special_character, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(736), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(740), 1, - anon_sym_BQUOTE, - ACTIONS(744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(746), 1, - sym_variable_name, - STATE(593), 1, - aux_sym__literal_repeat1, - STATE(3272), 1, - sym_subscript, - ACTIONS(742), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(190), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(527), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(523), 20, + sym__concat, + ACTIONS(937), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -27135,6 +34255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27146,104 +34270,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [1485] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(3056), 1, - sym_heredoc_body, - ACTIONS(533), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1544] = 17, + sym_test_operator, + [1444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(865), 1, sym_file_descriptor, - ACTIONS(730), 1, - anon_sym_DOLLAR, - ACTIONS(732), 1, - sym__special_character, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(736), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(740), 1, - anon_sym_BQUOTE, - ACTIONS(746), 1, - sym_variable_name, - ACTIONS(748), 1, - aux_sym__simple_variable_name_token1, - STATE(593), 1, - aux_sym__literal_repeat1, - STATE(3272), 1, - sym_subscript, - ACTIONS(742), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(201), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(527), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(501), 20, + ACTIONS(941), 1, + sym__concat, + STATE(249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -27252,6 +34324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27263,58 +34339,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [1625] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(161), 1, sym__special_character, - ACTIONS(163), 1, anon_sym_DQUOTE, - ACTIONS(167), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, - sym_file_descriptor, - STATE(180), 1, - aux_sym_command_repeat2, - STATE(370), 1, - aux_sym__literal_repeat1, - STATE(474), 1, - sym_concatenation, - ACTIONS(173), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(754), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(300), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(752), 22, + sym_test_operator, + [1518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(871), 1, + sym_file_descriptor, + ACTIONS(943), 1, + sym__concat, + STATE(249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 59, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27326,93 +34408,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [1704] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_RPAREN, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(2979), 1, - sym_heredoc_body, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1765] = 4, + sym_test_operator, + [1592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 2, + ACTIONS(881), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(666), 4, + ACTIONS(945), 1, + sym__concat, + STATE(249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 59, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27421,49 +34474,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1820] = 4, + sym_test_operator, + [1666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 2, + ACTIONS(950), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, + sym__concat, + ACTIONS(948), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27472,50 +34541,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1875] = 7, + sym_test_operator, + [1736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, - anon_sym_DQUOTE, - ACTIONS(762), 1, - aux_sym__simple_variable_name_token1, - STATE(429), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(954), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(758), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 31, + sym__concat, + ACTIONS(952), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27527,99 +34611,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [1936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(489), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1991] = 4, + sym_test_operator, + [1806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 2, + ACTIONS(935), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(662), 4, + sym__concat, + ACTIONS(933), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27628,68 +34675,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2046] = 16, + sym_test_operator, + [1876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_DOLLAR, - ACTIONS(161), 1, - sym__special_character, - ACTIONS(163), 1, - anon_sym_DQUOTE, - ACTIONS(167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, - anon_sym_BQUOTE, - ACTIONS(766), 1, + ACTIONS(958), 2, sym_file_descriptor, - STATE(191), 1, - aux_sym_command_repeat2, - STATE(370), 1, - aux_sym__literal_repeat1, - STATE(474), 1, - sym_concatenation, - ACTIONS(173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(754), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(300), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 22, + sym__concat, + ACTIONS(956), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27701,111 +34745,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [2125] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(3024), 1, - sym_heredoc_body, - ACTIONS(533), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2184] = 16, + sym_test_operator, + [1946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_DOLLAR, - ACTIONS(161), 1, - sym__special_character, - ACTIONS(163), 1, - anon_sym_DQUOTE, - ACTIONS(167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, - anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(962), 2, sym_file_descriptor, - STATE(202), 1, - aux_sym_command_repeat2, - STATE(370), 1, - aux_sym__literal_repeat1, - STATE(474), 1, - sym_concatenation, - ACTIONS(173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(754), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(300), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(768), 22, + sym__concat, + ACTIONS(960), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27817,52 +34812,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [2263] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - sym_file_descriptor, - ACTIONS(775), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(778), 1, sym__special_character, - ACTIONS(781), 1, anon_sym_DQUOTE, - ACTIONS(784), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(787), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(790), 1, anon_sym_BQUOTE, - ACTIONS(796), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(799), 1, - sym_variable_name, - STATE(593), 1, - aux_sym__literal_repeat1, - STATE(3272), 1, - sym_subscript, - ACTIONS(793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(772), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(201), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(527), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(538), 20, + sym_test_operator, + [2016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -27870,6 +34864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27881,58 +34879,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [2344] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(161), 1, sym__special_character, - ACTIONS(163), 1, anon_sym_DQUOTE, - ACTIONS(167), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(804), 1, - sym_file_descriptor, - STATE(180), 1, - aux_sym_command_repeat2, - STATE(370), 1, - aux_sym__literal_repeat1, - STATE(474), 1, - sym_concatenation, - ACTIONS(173), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(754), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(300), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(802), 22, + sym_test_operator, + [2086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(244), 1, + sym__concat, + ACTIONS(877), 1, + sym_file_descriptor, + STATE(247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 59, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27944,40 +34948,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [2423] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [2160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_DQUOTE, - ACTIONS(808), 1, - aux_sym__simple_variable_name_token1, - STATE(304), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(970), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(806), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 31, + sym__concat, + ACTIONS(968), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27989,51 +35015,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [2484] = 7, + sym_test_operator, + [2230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 1, - sym__simple_heredoc_body, - ACTIONS(702), 1, - sym__heredoc_body_beginning, - ACTIONS(810), 1, - ts_builtin_sym_end, - STATE(2982), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(974), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + sym__concat, + ACTIONS(972), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28042,52 +35079,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2545] = 7, + sym_test_operator, + [2300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_RPAREN, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(2970), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(978), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + sym__concat, + ACTIONS(976), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28096,49 +35146,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2606] = 4, + sym_test_operator, + [2370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 2, + ACTIONS(982), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(489), 4, + sym__concat, + ACTIONS(980), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28147,69 +35213,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2661] = 17, + sym_test_operator, + [2440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(706), 1, - anon_sym_DOLLAR, - ACTIONS(708), 1, - sym__special_character, - ACTIONS(710), 1, - anon_sym_DQUOTE, - ACTIONS(712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(716), 1, - anon_sym_BQUOTE, - ACTIONS(722), 1, - sym_variable_name, - ACTIONS(812), 1, - aux_sym__simple_variable_name_token1, - STATE(742), 1, - aux_sym__literal_repeat1, - STATE(3348), 1, - sym_subscript, - ACTIONS(519), 2, + ACTIONS(986), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(704), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(184), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(436), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(501), 19, + sym__concat, + ACTIONS(984), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28221,90 +35283,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [2742] = 4, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [2510] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 2, + ACTIONS(244), 1, + sym__concat, + ACTIONS(861), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + STATE(247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(858), 12, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(852), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2797] = 7, + ACTIONS(854), 24, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [2588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, - anon_sym_DQUOTE, - ACTIONS(818), 1, - aux_sym__simple_variable_name_token1, - STATE(556), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(990), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(814), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 30, + sym__concat, + ACTIONS(988), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28316,109 +35421,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [2857] = 15, + sym_test_operator, + [2658] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 1, - anon_sym_DOLLAR, - ACTIONS(826), 1, - sym__special_character, - ACTIONS(828), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(832), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(834), 1, - anon_sym_BQUOTE, - ACTIONS(838), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(840), 1, + ACTIONS(178), 1, sym_file_descriptor, - STATE(486), 1, + ACTIONS(992), 1, + sym__special_character, + STATE(243), 1, aux_sym__literal_repeat1, - ACTIONS(836), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(214), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(820), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(377), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(822), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(157), 11, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(151), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [2933] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(844), 1, - aux_sym__simple_variable_name_token1, - STATE(463), 1, - sym_string, - ACTIONS(605), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(842), 9, - anon_sym_BANG, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(153), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, + anon_sym_DASH_EQ, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 30, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [2736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(994), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28430,49 +35559,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [2993] = 6, + sym_test_operator, + [2806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(3062), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(1000), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + sym__concat, + ACTIONS(998), 60, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28481,67 +35623,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3051] = 16, + sym_test_operator, + [2876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(249), 1, - anon_sym_DOLLAR, - ACTIONS(251), 1, - sym__special_character, - ACTIONS(253), 1, - anon_sym_DQUOTE, - ACTIONS(257), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, - anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(1004), 2, sym_file_descriptor, - STATE(217), 1, - aux_sym_command_repeat2, - STATE(498), 1, - aux_sym__literal_repeat1, - STATE(665), 1, - sym_concatenation, - ACTIONS(263), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(848), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(846), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(752), 21, + sym__concat, + ACTIONS(1002), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28553,56 +35693,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3129] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(855), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(858), 1, sym__special_character, - ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(864), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(867), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(870), 1, anon_sym_BQUOTE, - ACTIONS(876), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(879), 1, - sym_file_descriptor, - STATE(486), 1, - aux_sym__literal_repeat1, - ACTIONS(873), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(214), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(850), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(377), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(853), 22, + sym_test_operator, + [2946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 59, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28614,155 +35759,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 42, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3257] = 3, + sym_test_operator, + [3015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 2, + ACTIONS(178), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(881), 42, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + ACTIONS(1006), 1, + sym__special_character, + STATE(290), 1, + aux_sym__literal_repeat1, + ACTIONS(157), 12, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(151), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3309] = 16, + ACTIONS(153), 24, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [3092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(658), 1, + ACTIONS(986), 2, sym_file_descriptor, - ACTIONS(891), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - sym__special_character, - ACTIONS(897), 1, - anon_sym_DQUOTE, - ACTIONS(900), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(903), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(906), 1, - anon_sym_BQUOTE, - STATE(217), 1, - aux_sym_command_repeat2, - STATE(498), 1, - aux_sym__literal_repeat1, - STATE(665), 1, - sym_concatenation, - ACTIONS(888), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(909), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(885), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(632), 21, + sym__concat, + ACTIONS(984), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28774,57 +35895,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3387] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(249), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(251), 1, sym__special_character, - ACTIONS(253), 1, anon_sym_DQUOTE, - ACTIONS(257), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, anon_sym_BQUOTE, - ACTIONS(766), 1, - sym_file_descriptor, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(498), 1, - aux_sym__literal_repeat1, - STATE(665), 1, - sym_concatenation, - ACTIONS(263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(848), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(846), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(373), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 21, + sym_test_operator, + [3161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 60, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28836,57 +35961,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3465] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(249), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(251), 1, sym__special_character, - ACTIONS(253), 1, anon_sym_DQUOTE, - ACTIONS(257), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, anon_sym_BQUOTE, - ACTIONS(804), 1, - sym_file_descriptor, - STATE(217), 1, - aux_sym_command_repeat2, - STATE(498), 1, - aux_sym__literal_repeat1, - STATE(665), 1, - sym_concatenation, - ACTIONS(263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(848), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(846), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(373), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(802), 21, + sym_test_operator, + [3230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(980), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28898,56 +36027,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3543] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(826), 1, sym__special_character, - ACTIONS(828), 1, anon_sym_DQUOTE, - ACTIONS(830), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(832), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(834), 1, anon_sym_BQUOTE, - ACTIONS(914), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(916), 1, - sym_file_descriptor, - STATE(486), 1, - aux_sym__literal_repeat1, - ACTIONS(836), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(210), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(820), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(377), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(912), 22, + sym_test_operator, + [3299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(976), 59, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -28959,56 +36093,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3619] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(527), 1, - sym_file_descriptor, - ACTIONS(730), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(732), 1, sym__special_character, - ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(736), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(746), 1, - sym_variable_name, - ACTIONS(918), 1, - aux_sym__simple_variable_name_token1, - STATE(593), 1, - aux_sym__literal_repeat1, - STATE(3272), 1, - sym_subscript, - ACTIONS(742), 2, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(728), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(225), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(527), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(523), 20, + sym_test_operator, + [3368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29020,40 +36159,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3697] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [3437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 1, + ACTIONS(974), 2, sym_file_descriptor, - ACTIONS(828), 1, - anon_sym_DQUOTE, - ACTIONS(922), 1, - aux_sym__simple_variable_name_token1, - STATE(461), 1, - sym_string, - ACTIONS(920), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 31, + sym__concat, + ACTIONS(972), 59, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29065,51 +36225,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [3757] = 7, + sym_test_operator, + [3506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_BQUOTE, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(2966), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(970), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 38, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + sym__concat, + ACTIONS(968), 59, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29118,38 +36288,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3817] = 7, + sym_test_operator, + [3575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(605), 1, + ACTIONS(966), 2, sym_file_descriptor, - ACTIONS(926), 1, - aux_sym__simple_variable_name_token1, - STATE(715), 1, - sym_string, - ACTIONS(924), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 31, + sym__concat, + ACTIONS(964), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -29160,6 +36344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29171,65 +36357,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [3877] = 16, + sym_test_operator, + [3644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(931), 2, sym_file_descriptor, - ACTIONS(730), 1, - anon_sym_DOLLAR, - ACTIONS(732), 1, - sym__special_character, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(736), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(746), 1, - sym_variable_name, - ACTIONS(748), 1, - aux_sym__simple_variable_name_token1, - STATE(593), 1, - aux_sym__literal_repeat1, - STATE(3272), 1, - sym_subscript, - ACTIONS(742), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(201), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(527), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(501), 20, + sym__concat, + ACTIONS(929), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29241,60 +36423,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [3955] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(249), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(251), 1, sym__special_character, - ACTIONS(253), 1, anon_sym_DQUOTE, - ACTIONS(257), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, anon_sym_BQUOTE, - ACTIONS(770), 1, - sym_file_descriptor, - STATE(219), 1, - aux_sym_command_repeat2, - STATE(498), 1, - aux_sym__literal_repeat1, - STATE(665), 1, - sym_concatenation, - ACTIONS(263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(848), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(846), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(373), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(768), 21, + sym_test_operator, + [3713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -29304,39 +36489,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4033] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [3782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(930), 1, - aux_sym__simple_variable_name_token1, - STATE(738), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(896), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(928), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 30, + sym__concat, + ACTIONS(894), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29348,118 +36555,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [4093] = 7, + sym_test_operator, + [3851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(529), 1, - sym__simple_heredoc_body, - ACTIONS(531), 1, - sym__heredoc_body_beginning, - STATE(2965), 1, - sym_heredoc_body, - ACTIONS(495), 2, + ACTIONS(861), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 38, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + ACTIONS(858), 11, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(852), 24, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4153] = 16, + ACTIONS(854), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [3924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, - sym__special_character, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - STATE(235), 1, - aux_sym_command_repeat2, - STATE(727), 1, - aux_sym__literal_repeat1, - STATE(782), 1, - sym_concatenation, - ACTIONS(53), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(804), 2, + ACTIONS(888), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(934), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(932), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(802), 19, + sym__concat, + ACTIONS(886), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29471,48 +36689,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4230] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(97), 1, sym__special_character, - ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(804), 1, - sym_file_descriptor, - STATE(240), 1, - aux_sym_command_repeat2, - STATE(557), 1, - aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(537), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(802), 20, + sym_test_operator, + [3993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(956), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -29521,6 +36740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29532,48 +36755,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4307] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(97), 1, sym__special_character, - ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(766), 1, - sym_file_descriptor, - STATE(244), 1, - aux_sym_command_repeat2, - STATE(557), 1, - aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(537), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 20, + sym_test_operator, + [4062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -29582,6 +36806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29593,38 +36821,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4384] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_DQUOTE, - ACTIONS(944), 1, - aux_sym__simple_variable_name_token1, - STATE(797), 1, - sym_string, - ACTIONS(605), 3, + ACTIONS(954), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(940), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 28, + sym__concat, + ACTIONS(952), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29636,65 +36887,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [4443] = 16, + sym_test_operator, + [4200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, - sym__special_character, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - STATE(243), 1, - aux_sym_command_repeat2, - STATE(727), 1, - aux_sym__literal_repeat1, - STATE(782), 1, - sym_concatenation, - ACTIONS(53), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(766), 2, + ACTIONS(996), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(934), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(932), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 19, + sym__concat, + ACTIONS(994), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29706,30 +36953,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4520] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(948), 1, - anon_sym_DQUOTE, - ACTIONS(950), 1, - aux_sym__simple_variable_name_token1, - STATE(860), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(950), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(946), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 29, + sym__concat, + ACTIONS(948), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -29738,6 +37004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29749,65 +37019,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [4579] = 16, + sym_test_operator, + [4338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_DOLLAR, - ACTIONS(961), 1, - sym__special_character, - ACTIONS(964), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(970), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(973), 1, - anon_sym_BQUOTE, - STATE(235), 1, - aux_sym_command_repeat2, - STATE(727), 1, - aux_sym__literal_repeat1, - STATE(782), 1, - sym_concatenation, - ACTIONS(658), 2, + ACTIONS(900), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(955), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(976), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(952), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(632), 19, + sym__concat, + ACTIONS(898), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29819,38 +37085,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4656] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [4407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(710), 1, - anon_sym_DQUOTE, - ACTIONS(981), 1, - aux_sym__simple_variable_name_token1, - STATE(617), 1, - sym_string, - ACTIONS(605), 3, + ACTIONS(935), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(979), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 28, + sym__concat, + ACTIONS(933), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29862,47 +37151,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [4715] = 7, + sym_test_operator, + [4476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 1, + ACTIONS(927), 1, sym_file_descriptor, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(987), 1, - aux_sym__simple_variable_name_token1, - STATE(729), 1, - sym_string, - ACTIONS(983), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 30, + ACTIONS(1008), 1, + sym__special_character, + STATE(290), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 58, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29914,57 +37220,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [4774] = 16, + sym_test_operator, + [4549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(770), 1, + ACTIONS(990), 2, sym_file_descriptor, - STATE(230), 1, - aux_sym_command_repeat2, - STATE(557), 1, - aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(537), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(768), 20, + sym__concat, + ACTIONS(988), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -29973,6 +37270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29984,55 +37285,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4851] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(916), 1, - sym_file_descriptor, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(991), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(993), 1, sym__special_character, - ACTIONS(995), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(999), 1, anon_sym_BQUOTE, - ACTIONS(1003), 1, - aux_sym__simple_variable_name_token1, - STATE(671), 1, - aux_sym__literal_repeat1, - ACTIONS(1001), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(242), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(989), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(497), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(912), 21, + sym_test_operator, + [4618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(998), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30044,48 +37351,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [4926] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(658), 1, - sym_file_descriptor, - ACTIONS(1011), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1014), 1, sym__special_character, - ACTIONS(1017), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1023), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1026), 1, anon_sym_BQUOTE, - STATE(240), 1, - aux_sym_command_repeat2, - STATE(557), 1, - aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(1008), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1029), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1005), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(537), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(632), 20, + sym_test_operator, + [4687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -30094,6 +37402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30105,56 +37417,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5003] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(41), 1, sym__special_character, - ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, anon_sym_BQUOTE, - STATE(229), 1, - aux_sym_command_repeat2, - STATE(727), 1, - aux_sym__literal_repeat1, - STATE(782), 1, - sym_concatenation, - ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(770), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(934), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(932), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(472), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(768), 19, + sym_test_operator, + [4756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30166,55 +37483,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5080] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - sym_file_descriptor, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(991), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(993), 1, sym__special_character, - ACTIONS(995), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(999), 1, anon_sym_BQUOTE, - ACTIONS(1032), 1, - aux_sym__simple_variable_name_token1, - STATE(671), 1, - aux_sym__literal_repeat1, - ACTIONS(1001), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(245), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(989), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(497), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(822), 21, + sym_test_operator, + [4825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(910), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30226,56 +37549,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5155] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(41), 1, sym__special_character, - ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, anon_sym_BQUOTE, - STATE(235), 1, - aux_sym_command_repeat2, - STATE(727), 1, - aux_sym__literal_repeat1, - STATE(782), 1, - sym_concatenation, - ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(756), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(934), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(932), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(472), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(752), 19, + sym_test_operator, + [4894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1002), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30287,48 +37615,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5232] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(97), 1, sym__special_character, - ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, - sym_file_descriptor, - STATE(240), 1, - aux_sym_command_repeat2, - STATE(557), 1, - aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(537), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(752), 20, + sym_test_operator, + [4963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -30337,6 +37666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30348,55 +37681,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5309] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(879), 1, - sym_file_descriptor, - ACTIONS(1037), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1040), 1, sym__special_character, - ACTIONS(1043), 1, anon_sym_DQUOTE, - ACTIONS(1046), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1052), 1, anon_sym_BQUOTE, - ACTIONS(1058), 1, - aux_sym__simple_variable_name_token1, - STATE(671), 1, - aux_sym__literal_repeat1, - ACTIONS(1055), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(245), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1034), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(497), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(853), 21, + sym_test_operator, + [5032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(918), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30408,30 +37747,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [5384] = 7, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [5101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(1063), 1, - aux_sym__simple_variable_name_token1, - STATE(562), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(916), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1061), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 29, + sym__concat, + ACTIONS(914), 59, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -30440,6 +37798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30451,44 +37813,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [5443] = 3, + sym_test_operator, + [5170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 2, + ACTIONS(877), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + ACTIONS(875), 59, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30497,107 +37875,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5493] = 3, + sym_test_operator, + [5238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 2, + ACTIONS(861), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(881), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + ACTIONS(858), 12, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + sym_test_operator, + ACTIONS(852), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5543] = 15, - ACTIONS(3), 1, + ACTIONS(854), 24, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [5310] = 30, + ACTIONS(59), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(73), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(123), 1, + anon_sym_LPAREN, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(131), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(133), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(770), 1, + ACTIONS(143), 1, + anon_sym_BQUOTE, + ACTIONS(147), 1, + sym_test_operator, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(1011), 1, + sym_variable_name, + STATE(269), 1, + aux_sym__literal_repeat1, + STATE(301), 1, + sym_concatenation, + STATE(371), 1, + sym_command_name, + STATE(2066), 1, + sym__expression, + STATE(4009), 1, + sym_subscript, + ACTIONS(137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(139), 2, + sym_number, + sym_word, + ACTIONS(145), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1885), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2819), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(2100), 5, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(262), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [5424] = 30, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, sym_file_descriptor, - STATE(260), 1, - aux_sym_command_repeat2, - STATE(557), 1, + ACTIONS(73), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(99), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(101), 1, + anon_sym_DOLLAR, + ACTIONS(103), 1, + sym__special_character, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(113), 1, + anon_sym_BQUOTE, + ACTIONS(117), 1, + sym_test_operator, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(1011), 1, + sym_variable_name, + STATE(264), 1, aux_sym__literal_repeat1, - STATE(868), 1, + STATE(281), 1, sym_concatenation, + STATE(371), 1, + sym_command_name, + STATE(2092), 1, + sym__expression, + STATE(4009), 1, + sym_subscript, + ACTIONS(107), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(109), 2, + sym_number, + sym_word, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1885), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2819), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(956), 5, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(228), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [5538] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1019), 1, + anon_sym_DOLLAR, + ACTIONS(1021), 1, + sym__special_character, + ACTIONS(1023), 1, + anon_sym_DQUOTE, + ACTIONS(1025), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1027), 1, + anon_sym_BQUOTE, + ACTIONS(1031), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1033), 1, + sym_test_operator, + ACTIONS(1035), 1, + sym_file_descriptor, + ACTIONS(1037), 1, + sym_variable_name, + STATE(817), 1, + aux_sym__literal_repeat1, + STATE(3940), 1, + sym_subscript, + ACTIONS(1029), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(305), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1013), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(537), 6, + STATE(472), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(768), 20, + ACTIONS(1015), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30612,30 +38218,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [5617] = 4, + [5626] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(1044), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1047), 1, + anon_sym_DOLLAR, + ACTIONS(1050), 1, + sym__special_character, + ACTIONS(1053), 1, + anon_sym_DQUOTE, + ACTIONS(1056), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_BQUOTE, ACTIONS(1065), 1, - ts_builtin_sym_end, - ACTIONS(664), 2, + aux_sym__simple_variable_name_token1, + ACTIONS(1068), 1, + sym_test_operator, + ACTIONS(1071), 1, + sym_file_descriptor, + ACTIONS(1073), 1, + sym_variable_name, + STATE(817), 1, + aux_sym__literal_repeat1, + STATE(3940), 1, + sym_subscript, + ACTIONS(1062), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(305), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1039), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(472), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1042), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5714] = 8, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1084), 1, + sym__simple_heredoc_body, + ACTIONS(1086), 1, + sym__heredoc_body_beginning, + STATE(3444), 1, + sym_heredoc_body, + ACTIONS(1080), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1082), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1078), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(660), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -30645,96 +38344,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, 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_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - [5669] = 7, - ACTIONS(3), 1, + [5782] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(605), 1, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + STATE(3627), 1, + sym_heredoc_body, + ACTIONS(607), 19, sym_file_descriptor, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1071), 1, - aux_sym__simple_variable_name_token1, - STATE(784), 1, - sym_string, - ACTIONS(1067), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 29, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [5727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(698), 1, - ts_builtin_sym_end, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, + sym_test_operator, + ACTIONS(437), 28, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_done, anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -30744,66 +38402,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + sym_word, + [5846] = 8, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1084), 1, + sym__simple_heredoc_body, + ACTIONS(1086), 1, + sym__heredoc_body_beginning, + STATE(3428), 1, + sym_heredoc_body, + ACTIONS(1092), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1094), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - [5779] = 15, + [5914] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1017), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1019), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(1021), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(1025), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(756), 1, + ACTIONS(1027), 1, + anon_sym_BQUOTE, + ACTIONS(1033), 1, + sym_test_operator, + ACTIONS(1037), 1, + sym_variable_name, + ACTIONS(1098), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1100), 1, sym_file_descriptor, - STATE(240), 1, - aux_sym_command_repeat2, - STATE(557), 1, + STATE(817), 1, aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, + STATE(3940), 1, + sym_subscript, + ACTIONS(1029), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, + STATE(304), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1013), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(537), 6, + STATE(472), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(752), 20, + ACTIONS(1096), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30818,29 +38536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [5853] = 3, - ACTIONS(3), 1, + [6002] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(883), 2, + ACTIONS(1080), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1084), 1, + sym__simple_heredoc_body, + ACTIONS(1086), 1, + sym__heredoc_body_beginning, + STATE(3464), 1, + sym_heredoc_body, + ACTIONS(1082), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1078), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(881), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -30850,45 +38591,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + sym_word, + [6069] = 8, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1084), 1, + sym__simple_heredoc_body, + ACTIONS(1086), 1, + sym__heredoc_body_beginning, + ACTIONS(1092), 1, + anon_sym_SEMI_SEMI, + STATE(3483), 1, + sym_heredoc_body, + ACTIONS(1094), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [5903] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 1, - ts_builtin_sym_end, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 39, + sym_test_operator, + ACTIONS(1076), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -30898,67 +38650,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, 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_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - [5955] = 15, + [6136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(1035), 1, sym_file_descriptor, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1075), 1, + ACTIONS(1104), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1106), 1, anon_sym_DOLLAR, - ACTIONS(1077), 1, + ACTIONS(1108), 1, sym__special_character, - ACTIONS(1079), 1, + ACTIONS(1110), 1, + anon_sym_DQUOTE, + ACTIONS(1112), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1083), 1, + ACTIONS(1114), 1, anon_sym_BQUOTE, - ACTIONS(1087), 1, + ACTIONS(1118), 1, aux_sym__simple_variable_name_token1, - STATE(779), 1, + ACTIONS(1120), 1, + sym_test_operator, + ACTIONS(1122), 1, + sym_variable_name, + STATE(989), 1, aux_sym__literal_repeat1, - ACTIONS(1085), 2, + STATE(3904), 1, + sym_subscript, + ACTIONS(1116), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(261), 2, + STATE(313), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1073), 3, + aux_sym_declaration_command_repeat1, + ACTIONS(1102), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(595), 6, + STATE(914), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(822), 20, + ACTIONS(1015), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30974,35 +38724,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6029] = 4, + [6223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - ts_builtin_sym_end, - ACTIONS(664), 2, + ACTIONS(1071), 1, sym_file_descriptor, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + sym__special_character, + ACTIONS(1136), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1142), 1, + anon_sym_BQUOTE, + ACTIONS(1148), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1151), 1, + sym_test_operator, + ACTIONS(1154), 1, sym_variable_name, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + STATE(989), 1, + aux_sym__literal_repeat1, + STATE(3904), 1, + sym_subscript, + ACTIONS(1145), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(313), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1124), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(914), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1042), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31011,61 +38789,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6081] = 15, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6310] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, + ACTIONS(1100), 1, sym_file_descriptor, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1075), 1, + ACTIONS(1104), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1106), 1, anon_sym_DOLLAR, - ACTIONS(1077), 1, + ACTIONS(1108), 1, sym__special_character, - ACTIONS(1079), 1, + ACTIONS(1110), 1, + anon_sym_DQUOTE, + ACTIONS(1112), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1083), 1, + ACTIONS(1114), 1, anon_sym_BQUOTE, - ACTIONS(1091), 1, + ACTIONS(1120), 1, + sym_test_operator, + ACTIONS(1122), 1, + sym_variable_name, + ACTIONS(1157), 1, aux_sym__simple_variable_name_token1, - STATE(779), 1, + STATE(989), 1, aux_sym__literal_repeat1, - ACTIONS(1085), 2, + STATE(3904), 1, + sym_subscript, + ACTIONS(1116), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(256), 2, + STATE(312), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1073), 3, + aux_sym_declaration_command_repeat1, + ACTIONS(1102), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(595), 6, + STATE(914), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(912), 20, + ACTIONS(1096), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31081,34 +38862,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6155] = 3, + [6397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 2, + ACTIONS(838), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(881), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1163), 1, + aux_sym__simple_variable_name_token1, + STATE(647), 1, + sym_string, + ACTIONS(1159), 9, anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31117,60 +38904,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6205] = 15, + sym_test_operator, + [6461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(288), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(290), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(804), 1, + ACTIONS(1173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1175), 1, + anon_sym_BQUOTE, + ACTIONS(1179), 1, + sym_test_operator, + ACTIONS(1181), 1, sym_file_descriptor, - STATE(240), 1, + STATE(319), 1, aux_sym_command_repeat2, - STATE(557), 1, + STATE(842), 1, aux_sym__literal_repeat1, - STATE(868), 1, + STATE(1258), 1, sym_concatenation, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(938), 2, + ACTIONS(1169), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(936), 3, + ACTIONS(1177), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1165), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(537), 6, + STATE(451), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(802), 20, + ACTIONS(1167), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31185,51 +38985,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [6279] = 15, + [6545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(879), 1, - sym_file_descriptor, - ACTIONS(1096), 1, + ACTIONS(1186), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1189), 1, anon_sym_DOLLAR, - ACTIONS(1099), 1, + ACTIONS(1192), 1, sym__special_character, - ACTIONS(1102), 1, + ACTIONS(1195), 1, anon_sym_DQUOTE, - ACTIONS(1105), 1, + ACTIONS(1198), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1108), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1201), 1, anon_sym_BQUOTE, - ACTIONS(1117), 1, + ACTIONS(1207), 1, aux_sym__simple_variable_name_token1, - STATE(779), 1, + ACTIONS(1210), 1, + sym_test_operator, + ACTIONS(1213), 1, + sym_variable_name, + STATE(1648), 1, aux_sym__literal_repeat1, - ACTIONS(1114), 2, + STATE(4042), 1, + sym_subscript, + ACTIONS(1071), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1204), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(261), 2, + STATE(317), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1093), 3, + aux_sym_declaration_command_repeat1, + ACTIONS(1183), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(595), 6, + STATE(961), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(853), 20, + ACTIONS(1042), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -31246,50 +39054,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6353] = 15, + [6631] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(736), 1, + anon_sym_DQUOTE, + ACTIONS(1218), 1, + aux_sym__simple_variable_name_token1, + STATE(462), 1, + sym_string, + ACTIONS(1216), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 36, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH_EQ, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [6693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1228), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1231), 1, anon_sym_DOLLAR, - ACTIONS(1126), 1, + ACTIONS(1234), 1, sym__special_character, - ACTIONS(1129), 1, + ACTIONS(1237), 1, anon_sym_DQUOTE, - ACTIONS(1132), 1, + ACTIONS(1240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1138), 1, + ACTIONS(1243), 1, anon_sym_BQUOTE, - ACTIONS(1144), 1, - aux_sym__simple_variable_name_token1, - STATE(785), 1, - aux_sym__literal_repeat1, - ACTIONS(879), 2, + ACTIONS(1249), 1, + sym_test_operator, + ACTIONS(1252), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1141), 2, + STATE(319), 1, + aux_sym_command_repeat2, + STATE(842), 1, + aux_sym__literal_repeat1, + STATE(1258), 1, + sym_concatenation, + ACTIONS(1225), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1246), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(262), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1120), 3, + ACTIONS(1220), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(741), 6, + STATE(451), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(853), 19, + ACTIONS(1223), 22, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31305,34 +39177,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6427] = 3, + [6777] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 2, + ACTIONS(288), 1, + anon_sym_DOLLAR, + ACTIONS(290), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1175), 1, + anon_sym_BQUOTE, + ACTIONS(1179), 1, + sym_test_operator, + ACTIONS(1256), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + STATE(319), 1, + aux_sym_command_repeat2, + STATE(842), 1, + aux_sym__literal_repeat1, + STATE(1258), 1, + sym_concatenation, + ACTIONS(1169), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1177), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1165), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(451), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1254), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31341,57 +39240,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6477] = 15, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 1, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1262), 1, anon_sym_DOLLAR, - ACTIONS(1151), 1, + ACTIONS(1264), 1, sym__special_character, - ACTIONS(1153), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1155), 1, + ACTIONS(1268), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1270), 1, anon_sym_BQUOTE, - ACTIONS(1163), 1, + ACTIONS(1274), 1, aux_sym__simple_variable_name_token1, - STATE(785), 1, + ACTIONS(1276), 1, + sym_test_operator, + ACTIONS(1278), 1, + sym_variable_name, + STATE(1648), 1, aux_sym__literal_repeat1, - ACTIONS(840), 2, + STATE(4042), 1, + sym_subscript, + ACTIONS(1100), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1161), 2, + ACTIONS(1272), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(262), 2, + STATE(326), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1147), 3, + aux_sym_declaration_command_repeat1, + ACTIONS(1258), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(741), 6, + STATE(961), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(822), 19, + ACTIONS(1096), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -31411,49 +39312,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6551] = 15, + [6947] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 1, + ACTIONS(1100), 1, + sym_file_descriptor, + ACTIONS(1282), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1284), 1, anon_sym_DOLLAR, - ACTIONS(1151), 1, + ACTIONS(1286), 1, sym__special_character, - ACTIONS(1153), 1, + ACTIONS(1288), 1, anon_sym_DQUOTE, - ACTIONS(1155), 1, + ACTIONS(1290), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1292), 1, anon_sym_BQUOTE, - ACTIONS(1165), 1, + ACTIONS(1296), 1, aux_sym__simple_variable_name_token1, - STATE(785), 1, + ACTIONS(1298), 1, + sym_test_operator, + ACTIONS(1300), 1, + sym_variable_name, + STATE(1909), 1, aux_sym__literal_repeat1, - ACTIONS(916), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1161), 2, + STATE(3993), 1, + sym_subscript, + ACTIONS(1294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(264), 2, + STATE(324), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1147), 3, + aux_sym_declaration_command_repeat1, + ACTIONS(1280), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(741), 6, + STATE(1193), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(912), 19, + ACTIONS(1096), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -31470,36 +39380,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [6625] = 7, + [7033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 1, + ACTIONS(844), 1, + sym_file_descriptor, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1163), 1, aux_sym__simple_variable_name_token1, - STATE(857), 1, + STATE(647), 1, sym_string, - ACTIONS(605), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1167), 9, + ACTIONS(1159), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(599), 28, + ACTIONS(842), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31511,58 +39425,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [6683] = 15, + sym_test_operator, + [7097] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(1035), 1, + sym_file_descriptor, + ACTIONS(1282), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1284), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(1286), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1288), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(1290), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(766), 1, - sym_file_descriptor, - STATE(253), 1, - aux_sym_command_repeat2, - STATE(557), 1, + ACTIONS(1292), 1, + anon_sym_BQUOTE, + ACTIONS(1298), 1, + sym_test_operator, + ACTIONS(1300), 1, + sym_variable_name, + ACTIONS(1302), 1, + aux_sym__simple_variable_name_token1, + STATE(1909), 1, aux_sym__literal_repeat1, - STATE(868), 1, - sym_concatenation, - ACTIONS(109), 2, + STATE(3993), 1, + sym_subscript, + ACTIONS(1294), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(938), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(936), 3, + STATE(327), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1280), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(537), 6, + STATE(1193), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(764), 20, + ACTIONS(1015), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -31578,84 +39504,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [6757] = 3, + [7183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(307), 40, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(736), 1, + anon_sym_DQUOTE, + ACTIONS(1218), 1, + aux_sym__simple_variable_name_token1, + STATE(462), 1, + sym_string, + ACTIONS(1216), 9, anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 36, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH_EQ, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [7245] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1262), 1, anon_sym_DOLLAR, + ACTIONS(1264), 1, sym__special_character, + ACTIONS(1266), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1268), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1270), 1, anon_sym_BQUOTE, + ACTIONS(1276), 1, + sym_test_operator, + ACTIONS(1278), 1, + sym_variable_name, + ACTIONS(1304), 1, + aux_sym__simple_variable_name_token1, + STATE(1648), 1, + aux_sym__literal_repeat1, + STATE(4042), 1, + sym_subscript, + ACTIONS(1035), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1272), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(317), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1258), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - [6807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(495), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(487), 38, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + STATE(961), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1015), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31664,122 +39625,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7331] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + sym_file_descriptor, + ACTIONS(1309), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1312), 1, anon_sym_DOLLAR, + ACTIONS(1315), 1, sym__special_character, + ACTIONS(1318), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1321), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(662), 1, + ACTIONS(1324), 1, anon_sym_BQUOTE, - ACTIONS(664), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(660), 38, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6909] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(65), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(79), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(89), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, + ACTIONS(1330), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1333), 1, + sym_test_operator, + ACTIONS(1336), 1, sym_variable_name, - STATE(249), 1, - sym_command_name, - STATE(579), 1, + STATE(1909), 1, aux_sym__literal_repeat1, - STATE(787), 1, - sym_concatenation, - STATE(3340), 1, + STATE(3993), 1, sym_subscript, - ACTIONS(101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(109), 2, + ACTIONS(1327), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(808), 3, + STATE(327), 3, sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2046), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(519), 6, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1306), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1193), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(1042), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31788,65 +39693,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [7000] = 24, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7417] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(129), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(159), 1, + ACTIONS(288), 1, anon_sym_DOLLAR, - ACTIONS(161), 1, + ACTIONS(290), 1, sym__special_character, - ACTIONS(163), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, - anon_sym_BQUOTE, ACTIONS(1173), 1, - sym_variable_name, + anon_sym_DOLLAR_LBRACE, ACTIONS(1175), 1, - sym_word, - STATE(200), 1, - sym_command_name, - STATE(314), 1, + anon_sym_BQUOTE, + ACTIONS(1179), 1, + sym_test_operator, + ACTIONS(1341), 1, + sym_file_descriptor, + STATE(316), 1, + aux_sym_command_repeat2, + STATE(842), 1, aux_sym__literal_repeat1, - STATE(488), 1, + STATE(1258), 1, sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(173), 2, + ACTIONS(1169), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(831), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1892), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(302), 6, + ACTIONS(1165), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(451), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(1339), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31855,65 +39760,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [7091] = 24, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7501] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, + ACTIONS(288), 1, anon_sym_DOLLAR, - ACTIONS(41), 1, + ACTIONS(290), 1, sym__special_character, - ACTIONS(43), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, + ACTIONS(1171), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, + ACTIONS(1173), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1175), 1, anon_sym_BQUOTE, - ACTIONS(55), 1, + ACTIONS(1179), 1, + sym_test_operator, + ACTIONS(1345), 1, sym_file_descriptor, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1177), 1, - sym_word, - STATE(241), 1, - sym_command_name, - STATE(751), 1, + STATE(320), 1, + aux_sym_command_repeat2, + STATE(842), 1, aux_sym__literal_repeat1, - STATE(895), 1, + STATE(1258), 1, sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(45), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(53), 2, + ACTIONS(1169), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(894), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2176), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(400), 6, + ACTIONS(1165), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(451), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(1343), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31922,47 +39827,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [7182] = 14, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [7585] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, - sym_file_descriptor, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1075), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1077), 1, + ACTIONS(394), 1, sym__special_character, - ACTIONS(1079), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, + ACTIONS(1181), 1, + sym_file_descriptor, + ACTIONS(1351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1179), 1, - aux_sym__simple_variable_name_token1, - STATE(779), 1, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(1355), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1357), 1, + anon_sym_BQUOTE, + ACTIONS(1361), 1, + sym_test_operator, + STATE(353), 1, + aux_sym_command_repeat2, + STATE(1013), 1, aux_sym__literal_repeat1, - ACTIONS(1085), 2, + STATE(1710), 1, + sym_concatenation, + ACTIONS(1349), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(276), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1073), 3, + ACTIONS(1347), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(595), 6, + STATE(905), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(912), 20, + ACTIONS(1167), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31977,30 +39896,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [7253] = 4, - ACTIONS(3), 1, + [7668] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_BQUOTE, - ACTIONS(664), 2, + ACTIONS(1367), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1369), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1365), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(660), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -32010,63 +39946,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + sym_word, + [7727] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1082), 1, + ts_builtin_sym_end, + ACTIONS(1371), 1, + sym__simple_heredoc_body, + ACTIONS(1373), 1, + sym__heredoc_body_beginning, + STATE(3523), 1, + sym_heredoc_body, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, sym__special_character, + sym_number, + sym_word, + [7790] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1080), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1082), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - [7304] = 14, + [7849] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - sym_file_descriptor, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1075), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1077), 1, + ACTIONS(394), 1, sym__special_character, - ACTIONS(1079), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, + ACTIONS(1345), 1, + sym_file_descriptor, + ACTIONS(1351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1087), 1, - aux_sym__simple_variable_name_token1, - STATE(779), 1, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(1355), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1357), 1, + anon_sym_BQUOTE, + ACTIONS(1361), 1, + sym_test_operator, + STATE(339), 1, + aux_sym_command_repeat2, + STATE(1013), 1, aux_sym__literal_repeat1, - ACTIONS(1085), 2, + STATE(1710), 1, + sym_concatenation, + ACTIONS(1349), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(261), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1073), 3, + ACTIONS(1347), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(595), 6, + STATE(905), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(822), 20, + ACTIONS(1343), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -32081,28 +40126,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [7375] = 3, - ACTIONS(3), 1, + [7932] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(495), 2, + ACTIONS(1094), 1, + ts_builtin_sym_end, + ACTIONS(1371), 1, + sym__simple_heredoc_body, + ACTIONS(1373), 1, + sym__heredoc_body_beginning, + STATE(3526), 1, + sym_heredoc_body, + ACTIONS(1078), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(487), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -32112,45 +40178,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + sym_word, + [7995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(838), 1, + sym_file_descriptor, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(1377), 1, + aux_sym__simple_variable_name_token1, + STATE(1027), 1, + sym_string, + ACTIONS(1375), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7424] = 4, - ACTIONS(3), 1, + sym_test_operator, + [8058] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_BQUOTE, - ACTIONS(495), 2, + ACTIONS(1381), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1379), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1365), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(487), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, anon_sym_for, anon_sym_select, - anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_until, anon_sym_if, anon_sym_case, anon_sym_LPAREN, anon_sym_function, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, anon_sym_declare, anon_sym_typeset, anon_sym_export, @@ -32160,81 +40288,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - [7475] = 24, + [8117] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(65), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(79), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(89), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(95), 1, + ACTIONS(1388), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1391), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(1394), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1397), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(1400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, + ACTIONS(1403), 1, anon_sym_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - sym_variable_name, - STATE(238), 1, - sym_command_name, - STATE(579), 1, + ACTIONS(1409), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1412), 1, + sym_test_operator, + ACTIONS(1415), 1, + sym_file_descriptor, + STATE(1396), 1, aux_sym__literal_repeat1, - STATE(787), 1, + ACTIONS(1406), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(338), 2, sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(101), 2, + aux_sym_unset_command_repeat1, + ACTIONS(1383), 4, sym_raw_string, sym_ansi_c_string, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(783), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2046), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(519), 6, + sym_number, + sym_word, + STATE(818), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(1386), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -32243,152 +40354,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [7566] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [8198] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 2, + ACTIONS(392), 1, + anon_sym_DOLLAR, + ACTIONS(394), 1, + sym__special_character, + ACTIONS(1256), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(660), 39, - anon_sym_for, - anon_sym_select, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_LPAREN, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_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, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1351), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7615] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(129), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(249), 1, - anon_sym_DOLLAR, - ACTIONS(251), 1, - sym__special_character, - ACTIONS(253), 1, + ACTIONS(1353), 1, anon_sym_DQUOTE, - ACTIONS(257), 1, + ACTIONS(1355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, + ACTIONS(1357), 1, anon_sym_BQUOTE, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1181), 1, - sym_word, - STATE(226), 1, - sym_command_name, - STATE(493), 1, + ACTIONS(1361), 1, + sym_test_operator, + STATE(353), 1, + aux_sym_command_repeat2, + STATE(1013), 1, aux_sym__literal_repeat1, - STATE(679), 1, + STATE(1710), 1, sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(255), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(263), 2, + ACTIONS(1349), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(856), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1892), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(380), 6, + ACTIONS(1347), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(905), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 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, - [7706] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 1, + ACTIONS(1254), 21, anon_sym_LF, - ACTIONS(1195), 1, - anon_sym_LT_LT_LT, - ACTIONS(1187), 2, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1189), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1191), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -32397,45 +40420,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7769] = 6, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [8281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1197), 2, + ACTIONS(1023), 1, + anon_sym_DQUOTE, + ACTIONS(1419), 1, + aux_sym__simple_variable_name_token1, + STATE(623), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, sym_variable_name, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 12, + ACTIONS(1417), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1183), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -32444,84 +40465,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7822] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, - anon_sym_LT_LT_LT, - ACTIONS(1201), 1, - anon_sym_LF, - ACTIONS(1189), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1191), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1203), 2, - anon_sym_SEMI, + anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(1205), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7885] = 6, + sym_test_operator, + [8344] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 1, - anon_sym_LPAREN, - ACTIONS(1211), 1, + ACTIONS(844), 1, sym_file_descriptor, - ACTIONS(1213), 1, - sym__concat, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 35, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(1377), 1, + aux_sym__simple_variable_name_token1, + STATE(1027), 1, + sym_string, + ACTIONS(1375), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 34, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -32542,43 +40524,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [7938] = 6, + sym_test_operator, + [8407] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_variable_name, - ACTIONS(1217), 1, - sym_file_descriptor, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 11, + ACTIONS(1425), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1427), 1, anon_sym_DOLLAR, + ACTIONS(1429), 1, sym__special_character, + ACTIONS(1431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1435), 1, anon_sym_BQUOTE, + ACTIONS(1439), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1441), 1, + sym_test_operator, + ACTIONS(1443), 1, + sym_file_descriptor, + STATE(1396), 1, + aux_sym__literal_repeat1, + ACTIONS(1437), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(338), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1421), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - ACTIONS(1215), 22, + STATE(818), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1423), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -32601,63 +40601,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [7991] = 6, + [8488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1023), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8043] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 1, - sym__concat, - STATE(298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(1419), 1, + aux_sym__simple_variable_name_token1, + STATE(623), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1221), 34, + ACTIONS(1417), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -32679,44 +40645,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [8093] = 6, + sym_test_operator, + [8551] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_variable_name, - ACTIONS(1217), 1, - sym_file_descriptor, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 11, + ACTIONS(392), 1, anon_sym_DOLLAR, + ACTIONS(394), 1, sym__special_character, + ACTIONS(1341), 1, + sym_file_descriptor, + ACTIONS(1351), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1353), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1355), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1357), 1, anon_sym_BQUOTE, + ACTIONS(1361), 1, + sym_test_operator, + STATE(330), 1, + aux_sym_command_repeat2, + STATE(1013), 1, + aux_sym__literal_repeat1, + STATE(1710), 1, + sym_concatenation, + ACTIONS(1349), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1347), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - ACTIONS(1215), 21, + STATE(905), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1339), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -32738,437 +40723,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [8145] = 11, - ACTIONS(3), 1, + [8634] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1227), 1, - anon_sym_LF, - ACTIONS(1233), 1, - anon_sym_LT_LT_LT, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1197), 2, + ACTIONS(1447), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(1219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1229), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1231), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(497), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [8207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 1, + sym_test_operator, + ACTIONS(1445), 28, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_done, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, anon_sym_LPAREN, - ACTIONS(1211), 1, - sym_file_descriptor, - ACTIONS(1235), 1, - sym__concat, - STATE(359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + 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, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, 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_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - anon_sym_AMP, - [8259] = 5, + [8689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, - sym__concat, - STATE(298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(760), 1, + anon_sym_DQUOTE, + ACTIONS(1453), 1, + aux_sym__simple_variable_name_token1, + STATE(632), 1, + sym_string, + ACTIONS(1451), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1449), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(830), 11, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [8309] = 5, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(838), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [8754] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1213), 1, - sym__concat, - ACTIONS(1223), 1, - sym_file_descriptor, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 35, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1080), 2, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, + ACTIONS(1082), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8359] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 1, - sym__concat, - STATE(298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1241), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_number, sym_word, - anon_sym_AMP, - [8409] = 11, + [8813] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - anon_sym_LT_LT_LT, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1219), 2, + ACTIONS(760), 1, + anon_sym_DQUOTE, + ACTIONS(1453), 1, + aux_sym__simple_variable_name_token1, + STATE(632), 1, + sym_string, + ACTIONS(1451), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1449), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(842), 11, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1231), 2, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(844), 24, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1247), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1205), 3, - anon_sym_SEMI_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [8878] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1379), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1381), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1365), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - [8471] = 5, - ACTIONS(3), 1, + [8937] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1251), 1, - sym_file_descriptor, - ACTIONS(1253), 1, - sym__concat, - STATE(297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, + ACTIONS(1367), 1, anon_sym_SEMI_SEMI, + ACTIONS(1369), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1365), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8521] = 5, - ACTIONS(3), 1, + [8996] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 1, - sym_file_descriptor, - ACTIONS(1259), 1, - sym__concat, - STATE(297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 35, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1092), 2, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, + ACTIONS(1094), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8571] = 5, - ACTIONS(3), 1, + [9055] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(1262), 1, - sym__concat, - STATE(301), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + STATE(3615), 1, + sym_heredoc_body, + ACTIONS(607), 20, sym_file_descriptor, sym_variable_name, - ACTIONS(1249), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(437), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8621] = 5, + [9116] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym__concat, - ACTIONS(1266), 1, + ACTIONS(1252), 1, sym_file_descriptor, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 35, + ACTIONS(1461), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1464), 1, + anon_sym_DOLLAR, + ACTIONS(1467), 1, + sym__special_character, + ACTIONS(1470), 1, + anon_sym_DQUOTE, + ACTIONS(1473), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1476), 1, + anon_sym_BQUOTE, + ACTIONS(1482), 1, + sym_test_operator, + STATE(353), 1, + aux_sym_command_repeat2, + STATE(1013), 1, + aux_sym__literal_repeat1, + STATE(1710), 1, + sym_concatenation, + ACTIONS(1458), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1479), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1455), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(905), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1223), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -33176,8 +41214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33189,28 +41225,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [9199] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1427), 1, anon_sym_DOLLAR, + ACTIONS(1429), 1, sym__special_character, + ACTIONS(1431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1435), 1, anon_sym_BQUOTE, + ACTIONS(1441), 1, + sym_test_operator, + ACTIONS(1487), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1489), 1, + sym_file_descriptor, + STATE(1396), 1, + aux_sym__literal_repeat1, + ACTIONS(1437), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(342), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1421), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [8671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__concat, - ACTIONS(1270), 1, - sym_file_descriptor, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 35, + STATE(818), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1485), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -33221,8 +41279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33234,129 +41290,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [8721] = 5, - ACTIONS(3), 1, + [9280] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(1272), 1, - sym__concat, - STATE(301), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + ACTIONS(1094), 1, + anon_sym_RPAREN, + STATE(3529), 1, + sym_heredoc_body, + ACTIONS(1078), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(1255), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8771] = 5, - ACTIONS(3), 1, + [9343] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1211), 1, - sym_file_descriptor, - ACTIONS(1213), 1, - sym__concat, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, + ACTIONS(1092), 1, anon_sym_SEMI_SEMI, + ACTIONS(1094), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8821] = 5, + [9402] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1100), 1, sym_file_descriptor, - ACTIONS(1235), 1, - sym__concat, - STATE(359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 34, + ACTIONS(1282), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1284), 1, + anon_sym_DOLLAR, + ACTIONS(1286), 1, + sym__special_character, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1290), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1298), 1, + sym_test_operator, + ACTIONS(1300), 1, + sym_variable_name, + ACTIONS(1491), 1, + aux_sym__simple_variable_name_token1, + STATE(1909), 1, + aux_sym__literal_repeat1, + STATE(3993), 1, + sym_subscript, + ACTIONS(1294), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(362), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1280), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1193), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1096), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33368,26 +41465,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [9485] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(607), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(437), 28, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_done, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, sym__special_character, + sym_number, + sym_word, + [9540] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + STATE(3522), 1, + sym_heredoc_body, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [8870] = 3, + [9603] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(1495), 1, + anon_sym_DQUOTE, + ACTIONS(1497), 1, + aux_sym__simple_variable_name_token1, + STATE(1149), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1275), 34, + ACTIONS(1493), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -33409,26 +41619,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [8915] = 3, + sym_test_operator, + [9666] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 2, + ACTIONS(1495), 1, + anon_sym_DQUOTE, + ACTIONS(1497), 1, + aux_sym__simple_variable_name_token1, + STATE(1149), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1279), 35, + sym_variable_name, + ACTIONS(1493), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -33439,8 +41664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33452,33 +41675,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [8960] = 3, + sym_test_operator, + [9729] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(1035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(1282), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1284), 1, + anon_sym_DOLLAR, + ACTIONS(1286), 1, + sym__special_character, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1290), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1298), 1, + sym_test_operator, + ACTIONS(1300), 1, sym_variable_name, - ACTIONS(1279), 34, + ACTIONS(1302), 1, + aux_sym__simple_variable_name_token1, + STATE(1909), 1, + aux_sym__literal_repeat1, + STATE(3993), 1, + sym_subscript, + ACTIONS(1294), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(327), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1280), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1193), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1015), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -33493,34 +41751,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [9812] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 1, anon_sym_DOLLAR, + ACTIONS(198), 1, sym__special_character, + ACTIONS(1181), 1, + sym_file_descriptor, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1507), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [9005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1255), 34, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1167), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -33535,38 +41817,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_AMP, + [9894] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1082), 1, + anon_sym_BQUOTE, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + STATE(3560), 1, + sym_heredoc_body, + ACTIONS(1078), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [9050] = 3, + [9956] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 2, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(1256), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1255), 35, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1254), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33578,37 +41937,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [10038] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1252), 1, + sym_file_descriptor, + ACTIONS(1521), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1524), 1, anon_sym_DOLLAR, + ACTIONS(1527), 1, sym__special_character, + ACTIONS(1530), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1533), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1536), 1, anon_sym_BQUOTE, + ACTIONS(1542), 1, + sym_test_operator, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1518), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1515), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [9095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1275), 35, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1223), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33620,28 +42002,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [9140] = 3, + [10120] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, + ACTIONS(1110), 1, + anon_sym_DQUOTE, + ACTIONS(1547), 1, + aux_sym__simple_variable_name_token1, + STATE(978), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1283), 35, + sym_variable_name, + ACTIONS(1545), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -33649,8 +42035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33662,33 +42046,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [9185] = 3, + sym_test_operator, + [10182] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, + ACTIONS(43), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + sym__special_character, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1559), 1, + anon_sym_BQUOTE, + ACTIONS(1563), 1, + sym_test_operator, + STATE(374), 1, + aux_sym_command_repeat2, + STATE(1658), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym_concatenation, + ACTIONS(1256), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1283), 34, + ts_builtin_sym_end, + ACTIONS(1551), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1561), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1549), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(974), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1254), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -33703,33 +42122,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [9230] = 3, + [10264] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 2, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, + aux_sym__simple_variable_name_token1, + STATE(1654), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1287), 35, + ts_builtin_sym_end, + ACTIONS(1565), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -33746,37 +42166,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [9275] = 3, + sym_test_operator, + [10326] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 2, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(1345), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1291), 35, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(365), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1343), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33788,40 +42242,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [10408] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 1, anon_sym_DOLLAR, + ACTIONS(198), 1, sym__special_character, + ACTIONS(1341), 1, + sym_file_descriptor, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1507), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(363), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [9320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 1, - sym__special_character, - ACTIONS(1299), 1, - sym_file_descriptor, - STATE(327), 1, - aux_sym__literal_repeat1, - ACTIONS(1295), 34, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1339), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33833,28 +42307,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [9369] = 3, + [10490] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 3, + ACTIONS(1110), 1, + anon_sym_DQUOTE, + ACTIONS(1547), 1, + aux_sym__simple_variable_name_token1, + STATE(978), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1287), 34, + ACTIONS(1545), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -33873,41 +42351,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [9414] = 6, + sym_test_operator, + [10552] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 1, - sym_file_descriptor, - ACTIONS(1301), 1, - anon_sym_LPAREN, - ACTIONS(1303), 1, - sym__concat, - STATE(482), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 33, + ACTIONS(43), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + sym__special_character, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1559), 1, + anon_sym_BQUOTE, + ACTIONS(1563), 1, + sym_test_operator, + STATE(374), 1, + aux_sym_command_repeat2, + STATE(1658), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym_concatenation, + ACTIONS(1181), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1551), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1561), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1549), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(974), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1167), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -33919,33 +42427,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [10634] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1578), 1, anon_sym_DOLLAR, + ACTIONS(1581), 1, sym__special_character, + ACTIONS(1584), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1587), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1590), 1, anon_sym_BQUOTE, + ACTIONS(1596), 1, + sym_test_operator, + STATE(374), 1, + aux_sym_command_repeat2, + STATE(1658), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym_concatenation, + ACTIONS(1252), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1572), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1593), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1569), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [9465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1291), 34, + STATE(974), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1223), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -33960,50 +42492,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [9510] = 11, + [10716] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_RPAREN, - ACTIONS(1305), 1, - anon_sym_LF, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1197), 2, + ACTIONS(838), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1307), 2, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1601), 1, + aux_sym__simple_variable_name_token1, + STATE(1163), 1, + sym_string, + ACTIONS(1599), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(1309), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1247), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34012,37 +42533,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9571] = 5, + sym_test_operator, + [10778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 1, - sym__concat, - STATE(319), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, + ACTIONS(844), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1255), 33, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1605), 1, + aux_sym__simple_variable_name_token1, + STATE(1807), 1, + sym_string, + ACTIONS(1603), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34054,29 +42591,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [9620] = 3, + sym_test_operator, + [10840] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1443), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1318), 35, + ACTIONS(1609), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + anon_sym_DOLLAR, + ACTIONS(1613), 1, + sym__special_character, + ACTIONS(1615), 1, + anon_sym_DQUOTE, + ACTIONS(1617), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1619), 1, + anon_sym_BQUOTE, + ACTIONS(1623), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1625), 1, + sym_test_operator, + STATE(1681), 1, + aux_sym__literal_repeat1, + ACTIONS(1621), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(386), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1607), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(990), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1423), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34084,8 +42655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34097,25 +42666,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [9665] = 3, + [10920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, + ACTIONS(844), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1322), 35, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1601), 1, + aux_sym__simple_variable_name_token1, + STATE(1163), 1, + sym_string, + ACTIONS(1599), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -34126,8 +42699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34139,73 +42710,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [9710] = 5, - ACTIONS(3), 1, + sym_test_operator, + [10982] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(1326), 1, - sym__concat, - STATE(319), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + ACTIONS(1094), 1, + anon_sym_BQUOTE, + STATE(3561), 1, + sym_heredoc_body, + ACTIONS(1078), 18, sym_file_descriptor, sym_variable_name, - ACTIONS(1249), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [9759] = 3, + [11044] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1489), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1328), 34, + ACTIONS(1609), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1611), 1, + anon_sym_DOLLAR, + ACTIONS(1613), 1, + sym__special_character, + ACTIONS(1615), 1, + anon_sym_DQUOTE, + ACTIONS(1617), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1619), 1, + anon_sym_BQUOTE, + ACTIONS(1625), 1, + sym_test_operator, + ACTIONS(1627), 1, + aux_sym__simple_variable_name_token1, + STATE(1681), 1, + aux_sym__literal_repeat1, + ACTIONS(1621), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(377), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1607), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(990), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1485), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34224,30 +42840,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_AMP, + [11124] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1088), 1, + sym__simple_heredoc_body, + ACTIONS(1090), 1, + sym__heredoc_body_beginning, + STATE(3596), 1, + sym_heredoc_body, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [9804] = 5, + [11184] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, - sym__concat, - STATE(322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + aux_sym__simple_variable_name_token1, + STATE(1690), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1237), 33, + ACTIONS(1629), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -34268,36 +42938,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [9853] = 5, + sym_test_operator, + [11246] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(43), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, + sym__special_character, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1557), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1559), 1, + anon_sym_BQUOTE, + ACTIONS(1563), 1, + sym_test_operator, + STATE(373), 1, + aux_sym_command_repeat2, + STATE(1658), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym_concatenation, + ACTIONS(1341), 2, sym_file_descriptor, - ACTIONS(1334), 1, - sym__concat, - STATE(328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 34, + ts_builtin_sym_end, + ACTIONS(1551), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1561), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1549), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(974), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1339), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -34312,29 +43014,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [9902] = 3, + [11328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + aux_sym__simple_variable_name_token1, + STATE(1690), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1336), 35, + sym_variable_name, + ACTIONS(1629), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34342,8 +43047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34355,35 +43058,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [9947] = 5, + sym_test_operator, + [11390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, - sym__special_character, - ACTIONS(1345), 1, + ACTIONS(1555), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, + aux_sym__simple_variable_name_token1, + STATE(1654), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - STATE(327), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 34, + ts_builtin_sym_end, + ACTIONS(1565), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -34400,30 +43113,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + sym__special_character, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [9996] = 5, + sym_test_operator, + [11452] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(1415), 1, sym_file_descriptor, - ACTIONS(1347), 1, - sym__concat, - STATE(328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 34, + ACTIONS(1638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1641), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, + sym__special_character, + ACTIONS(1647), 1, + anon_sym_DQUOTE, + ACTIONS(1650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1653), 1, + anon_sym_BQUOTE, + ACTIONS(1659), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1662), 1, + sym_test_operator, + STATE(1681), 1, + aux_sym__literal_repeat1, + ACTIONS(1656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(386), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1635), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(990), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1386), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34442,38 +43188,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [11532] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym_DOLLAR, + ACTIONS(45), 1, sym__special_character, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1555), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1557), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1559), 1, anon_sym_BQUOTE, + ACTIONS(1563), 1, + sym_test_operator, + STATE(368), 1, + aux_sym_command_repeat2, + STATE(1658), 1, + aux_sym__literal_repeat1, + STATE(2106), 1, + sym_concatenation, + ACTIONS(1345), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1551), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [10045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1350), 35, + ACTIONS(1549), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(974), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1343), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34485,32 +43253,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [10090] = 3, + [11614] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(838), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1354), 35, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1605), 1, + aux_sym__simple_variable_name_token1, + STATE(1807), 1, + sym_string, + ACTIONS(1603), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 33, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -34527,37 +43297,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + sym_test_operator, + [11676] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(780), 1, + anon_sym_DQUOTE, + ACTIONS(1669), 1, + aux_sym__simple_variable_name_token1, + STATE(1750), 1, + sym_string, + ACTIONS(1667), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1665), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(830), 11, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [10135] = 3, + anon_sym_CARET, + ACTIONS(838), 22, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [11739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1673), 1, + aux_sym__simple_variable_name_token1, + STATE(1737), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1358), 35, + sym_variable_name, + ACTIONS(1671), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34569,28 +43406,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10180] = 3, + sym_test_operator, + [11800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(844), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1358), 35, + ACTIONS(1615), 1, + anon_sym_DQUOTE, + ACTIONS(1677), 1, + aux_sym__simple_variable_name_token1, + STATE(1649), 1, + sym_string, + ACTIONS(1675), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34598,8 +43449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34611,35 +43460,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10225] = 5, + sym_test_operator, + [11861] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, - sym__concat, - STATE(322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(1681), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1687), 1, + anon_sym_DQUOTE, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_BQUOTE, + ACTIONS(1695), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1697), 1, + sym_test_operator, + STATE(2113), 1, + aux_sym__literal_repeat1, + ACTIONS(1489), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 33, + ts_builtin_sym_end, + ACTIONS(1693), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(408), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1679), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1650), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1485), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -34654,37 +43534,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [11940] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(816), 1, + anon_sym_DQUOTE, + ACTIONS(1703), 1, + aux_sym__simple_variable_name_token1, + STATE(1763), 1, + sym_string, + ACTIONS(1701), 4, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1699), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(842), 11, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(844), 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [12003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(780), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1669), 1, aux_sym__simple_variable_name_token1, - sym_word, + STATE(1750), 1, + sym_string, + ACTIONS(1667), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1665), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(842), 11, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [10274] = 5, + anon_sym_CARET, + ACTIONS(844), 22, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [12066] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 1, + ACTIONS(1415), 1, + sym_file_descriptor, + ACTIONS(1708), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(1714), 1, sym__special_character, - STATE(361), 1, + ACTIONS(1717), 1, + anon_sym_DQUOTE, + ACTIONS(1720), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1723), 1, + anon_sym_BQUOTE, + ACTIONS(1729), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1732), 1, + sym_test_operator, + STATE(1914), 1, aux_sym__literal_repeat1, - ACTIONS(1366), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1362), 33, + ACTIONS(1726), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(395), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1705), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1910), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1386), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -34699,37 +43707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [10323] = 3, + [12145] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1737), 1, + aux_sym__simple_variable_name_token1, + STATE(1863), 1, + sym_string, + ACTIONS(844), 3, sym_file_descriptor, - sym__concat, - ACTIONS(1368), 35, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1735), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 30, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34741,37 +43750,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10368] = 3, + sym_test_operator, + [12206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(1741), 1, + anon_sym_DQUOTE, + ACTIONS(1743), 1, + aux_sym__simple_variable_name_token1, + STATE(1984), 1, + sym_string, + ACTIONS(838), 3, sym_file_descriptor, - sym__concat, - ACTIONS(1372), 35, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1739), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 30, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34783,31 +43804,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10413] = 5, + sym_test_operator, + [12267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 1, - sym__special_character, - ACTIONS(1378), 1, + ACTIONS(838), 1, sym_file_descriptor, - STATE(327), 1, - aux_sym__literal_repeat1, - ACTIONS(1376), 34, + ACTIONS(1615), 1, + anon_sym_DQUOTE, + ACTIONS(1677), 1, + aux_sym__simple_variable_name_token1, + STATE(1649), 1, + sym_string, + ACTIONS(1675), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 32, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -34815,8 +43847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34828,36 +43858,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + sym__special_character, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10462] = 3, + sym_test_operator, + [12328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 2, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1737), 1, + aux_sym__simple_variable_name_token1, + STATE(1863), 1, + sym_string, + ACTIONS(838), 3, sym_file_descriptor, - sym__concat, - ACTIONS(1380), 35, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1735), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 30, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34869,79 +43912,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10507] = 3, + sym_test_operator, + [12389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1384), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(816), 1, + anon_sym_DQUOTE, + ACTIONS(1703), 1, + aux_sym__simple_variable_name_token1, + STATE(1763), 1, + sym_string, + ACTIONS(1701), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + ACTIONS(1699), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_0, + anon_sym__, + ACTIONS(830), 11, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(838), 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [12452] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 1, + sym_file_descriptor, + ACTIONS(1747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1749), 1, anon_sym_DOLLAR, + ACTIONS(1751), 1, sym__special_character, + ACTIONS(1753), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1755), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1757), 1, anon_sym_BQUOTE, + ACTIONS(1761), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1763), 1, + sym_test_operator, + STATE(1914), 1, + aux_sym__literal_repeat1, + ACTIONS(1759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(395), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1745), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [10552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1388), 35, + STATE(1910), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1423), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34953,87 +44041,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_AMP, + [12531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10597] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_RPAREN, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1392), 1, - anon_sym_LF, - ACTIONS(1197), 2, + ACTIONS(1743), 1, + aux_sym__simple_variable_name_token1, + STATE(1984), 1, + sym_string, + ACTIONS(844), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1229), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ts_builtin_sym_end, + ACTIONS(1739), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1394), 35, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 30, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35045,37 +44084,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10703] = 3, + sym_test_operator, + [12592] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, + ACTIONS(1767), 1, + anon_sym_DQUOTE, + ACTIONS(1769), 1, + aux_sym__simple_variable_name_token1, + STATE(2072), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1398), 35, + sym_variable_name, + ACTIONS(1765), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35087,37 +44138,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10748] = 3, + sym_test_operator, + [12653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(1767), 1, + anon_sym_DQUOTE, + ACTIONS(1769), 1, + aux_sym__simple_variable_name_token1, + STATE(2072), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1402), 35, + sym_variable_name, + ACTIONS(1765), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35129,37 +44192,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10793] = 3, + sym_test_operator, + [12714] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(1774), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1777), 1, + anon_sym_DOLLAR, + ACTIONS(1780), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(1795), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1798), 1, + sym_test_operator, + STATE(2113), 1, + aux_sym__literal_repeat1, + ACTIONS(1415), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1328), 35, + ts_builtin_sym_end, + ACTIONS(1792), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(405), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1771), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1650), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1386), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35171,37 +44266,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [12793] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 1, anon_sym_DOLLAR, + ACTIONS(198), 1, sym__special_character, + ACTIONS(1256), 1, + sym_file_descriptor, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1507), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [10838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1406), 35, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1254), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35213,37 +44328,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [10883] = 3, + anon_sym_BQUOTE, + [12872] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1673), 1, + aux_sym__simple_variable_name_token1, + STATE(1737), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1410), 35, + sym_variable_name, + ACTIONS(1671), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35255,36 +44372,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [10928] = 5, + sym_test_operator, + [12933] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 1, + ACTIONS(1681), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, sym__special_character, - STATE(361), 1, + ACTIONS(1687), 1, + anon_sym_DQUOTE, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(1801), 1, + aux_sym__simple_variable_name_token1, + STATE(2113), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 2, + ACTIONS(1443), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1414), 33, + ts_builtin_sym_end, + ACTIONS(1693), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(405), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1679), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1650), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1423), 19, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35299,37 +44446,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [13012] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 1, anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(1341), 1, + sym_file_descriptor, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1507), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(410), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [10977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1418), 35, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1339), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35341,37 +44508,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [13091] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 1, anon_sym_DOLLAR, + ACTIONS(198), 1, sym__special_character, + ACTIONS(1181), 1, + sym_file_descriptor, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1507), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(366), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - anon_sym_AMP, - [11022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1422), 35, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1167), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35383,43 +44571,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [11067] = 6, + anon_sym_BQUOTE, + [13170] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_variable_name, - ACTIONS(1217), 1, + ACTIONS(1489), 1, sym_file_descriptor, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 11, + ACTIONS(1747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1749), 1, anon_sym_DOLLAR, + ACTIONS(1751), 1, sym__special_character, + ACTIONS(1753), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1755), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1757), 1, anon_sym_BQUOTE, + ACTIONS(1763), 1, + sym_test_operator, + ACTIONS(1803), 1, + aux_sym__simple_variable_name_token1, + STATE(1914), 1, + aux_sym__literal_repeat1, + ACTIONS(1759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(401), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1745), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - ACTIONS(1215), 20, + STATE(1910), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1485), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -35440,21 +44636,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [11118] = 3, + [13249] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(1345), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1318), 34, + ACTIONS(1503), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(406), 1, + aux_sym_command_repeat2, + STATE(1877), 1, + aux_sym__literal_repeat1, + STATE(1940), 1, + sym_concatenation, + ACTIONS(1501), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1499), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1217), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1343), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35469,40 +44697,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [13328] = 26, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(254), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(286), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, anon_sym_DOLLAR, + ACTIONS(290), 1, sym__special_character, + ACTIONS(292), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(298), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(300), 1, anon_sym_BQUOTE, + ACTIONS(304), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + STATE(328), 1, + sym_command_name, + STATE(807), 1, + aux_sym__literal_repeat1, + STATE(1418), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(294), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(296), 2, + sym_number, + sym_word, + ACTIONS(302), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11163] = 5, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1751), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2572), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(480), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13426] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(1687), 1, + anon_sym_DQUOTE, + ACTIONS(1807), 1, + aux_sym__simple_variable_name_token1, + STATE(1924), 1, + sym_string, + ACTIONS(838), 2, sym_file_descriptor, - ACTIONS(1426), 1, - sym__concat, - STATE(353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 34, + ts_builtin_sym_end, + ACTIONS(1805), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35514,164 +44812,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [11212] = 3, - ACTIONS(3), 1, + sym_test_operator, + [13486] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1379), 1, + ts_builtin_sym_end, + ACTIONS(1365), 19, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1322), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 1, - sym__concat, - STATE(362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + sym_word, + [13540] = 26, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, sym_file_descriptor, + ACTIONS(73), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, + sym__special_character, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + sym_test_operator, + ACTIONS(1011), 1, sym_variable_name, - ACTIONS(1249), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(409), 1, + sym_command_name, + STATE(1886), 1, + aux_sym__literal_repeat1, + STATE(1938), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(202), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(204), 2, + sym_number, + sym_word, + ACTIONS(210), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + STATE(1899), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2819), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + STATE(1166), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13638] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1082), 1, + ts_builtin_sym_end, + ACTIONS(1078), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11306] = 6, - ACTIONS(3), 1, + [13692] = 26, + ACTIONS(59), 1, sym_comment, - ACTIONS(1197), 2, + ACTIONS(63), 1, sym_file_descriptor, + ACTIONS(254), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, + anon_sym_DOLLAR, + ACTIONS(394), 1, + sym__special_character, + ACTIONS(396), 1, + anon_sym_DQUOTE, + ACTIONS(402), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(404), 1, + anon_sym_BQUOTE, + ACTIONS(408), 1, + sym_test_operator, + ACTIONS(1011), 1, sym_variable_name, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 10, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1183), 19, + STATE(344), 1, + sym_command_name, + STATE(981), 1, + aux_sym__literal_repeat1, + STATE(1659), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(398), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(400), 2, + sym_number, + sym_word, + ACTIONS(406), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + STATE(1664), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2572), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + STATE(924), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13790] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 1, + sym_file_descriptor, + ACTIONS(1747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1749), 1, anon_sym_DOLLAR, + ACTIONS(1751), 1, sym__special_character, + ACTIONS(1753), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1755), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1761), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1763), 1, + sym_test_operator, + STATE(1914), 1, + aux_sym__literal_repeat1, + ACTIONS(1759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(395), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1745), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, - [11357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1336), 34, + STATE(1910), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1423), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35686,175 +45127,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [13866] = 26, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(43), 1, anon_sym_DOLLAR, + ACTIONS(45), 1, sym__special_character, + ACTIONS(47), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(55), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11402] = 5, - ACTIONS(3), 1, + ACTIONS(59), 1, sym_comment, - ACTIONS(1431), 1, - sym__concat, - STATE(355), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, + ACTIONS(61), 1, + sym_test_operator, + ACTIONS(63), 1, sym_file_descriptor, + ACTIONS(1011), 1, sym_variable_name, - ACTIONS(1237), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(383), 1, + sym_command_name, + STATE(1639), 1, + aux_sym__literal_repeat1, + STATE(2130), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(49), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(51), 2, + sym_number, + sym_word, + ACTIONS(57), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + STATE(1638), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2859), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + STATE(947), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13964] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1369), 1, + ts_builtin_sym_end, + ACTIONS(1365), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11451] = 5, - ACTIONS(3), 1, + [14018] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1094), 1, + ts_builtin_sym_end, + ACTIONS(1078), 19, sym_file_descriptor, - ACTIONS(1433), 1, - sym__concat, - STATE(353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11500] = 11, - ACTIONS(3), 1, + [14072] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(698), 1, - ts_builtin_sym_end, - ACTIONS(1435), 1, - anon_sym_LF, - ACTIONS(1445), 1, - anon_sym_LT_LT_LT, - ACTIONS(1197), 2, + ACTIONS(1447), 20, sym_file_descriptor, sym_variable_name, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1441), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1443), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1437), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1445), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - [11561] = 5, - ACTIONS(3), 1, + [14124] = 26, + ACTIONS(59), 1, sym_comment, - ACTIONS(1447), 1, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(73), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(198), 1, sym__special_character, - STATE(361), 1, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + STATE(371), 1, + sym_command_name, + STATE(1886), 1, aux_sym__literal_repeat1, - ACTIONS(1345), 2, + STATE(1938), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(202), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(204), 2, + sym_number, + sym_word, + ACTIONS(210), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1885), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2819), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1166), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14222] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(838), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 33, + ACTIONS(1753), 1, + anon_sym_DQUOTE, + ACTIONS(1811), 1, + aux_sym__simple_variable_name_token1, + STATE(2080), 1, + sym_string, + ACTIONS(1809), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35869,36 +45463,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + sym__special_character, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [11610] = 5, + sym_test_operator, + [14282] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, - sym__concat, - STATE(362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, + ACTIONS(844), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1255), 33, + ACTIONS(1753), 1, + anon_sym_DQUOTE, + ACTIONS(1811), 1, + aux_sym__simple_variable_name_token1, + STATE(2080), 1, + sym_string, + ACTIONS(1809), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 31, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -35913,81 +45516,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [11659] = 3, - ACTIONS(3), 1, + sym_test_operator, + [14342] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(607), 20, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1350), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(437), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11704] = 5, + [14394] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym__concat, - ACTIONS(1266), 1, + ACTIONS(1687), 1, + anon_sym_DQUOTE, + ACTIONS(1807), 1, + aux_sym__simple_variable_name_token1, + STATE(1924), 1, + sym_string, + ACTIONS(844), 2, sym_file_descriptor, - STATE(359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 34, + ts_builtin_sym_end, + ACTIONS(1805), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35999,36 +45618,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [11753] = 5, + sym_test_operator, + [14454] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, - sym__concat, - STATE(355), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(1489), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 33, + ACTIONS(1747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1751), 1, + sym__special_character, + ACTIONS(1753), 1, + anon_sym_DQUOTE, + ACTIONS(1755), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1763), 1, + sym_test_operator, + ACTIONS(1813), 1, + aux_sym__simple_variable_name_token1, + STATE(1914), 1, + aux_sym__literal_repeat1, + ACTIONS(1759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(419), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1745), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, + sym_word, + STATE(1910), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1485), 20, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -36043,374 +45689,469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [11802] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [14530] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(1365), 19, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1354), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11847] = 11, - ACTIONS(3), 1, + [14581] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1445), 1, - anon_sym_LT_LT_LT, - ACTIONS(1453), 1, - ts_builtin_sym_end, - ACTIONS(1455), 1, - anon_sym_LF, - ACTIONS(1197), 2, + ACTIONS(1094), 1, + anon_sym_BQUOTE, + ACTIONS(1078), 18, sym_file_descriptor, sym_variable_name, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1441), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1443), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1457), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - [11908] = 3, - ACTIONS(3), 1, + [14634] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(1078), 19, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1358), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11953] = 3, - ACTIONS(3), 1, + [14685] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(1082), 1, + anon_sym_BQUOTE, + ACTIONS(1078), 18, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1358), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1076), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [11998] = 5, - ACTIONS(3), 1, + [14738] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1297), 1, - sym__special_character, - ACTIONS(1461), 1, + ACTIONS(1369), 1, + anon_sym_BQUOTE, + ACTIONS(1365), 18, sym_file_descriptor, - STATE(327), 1, - aux_sym__literal_repeat1, - ACTIONS(1459), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [12047] = 3, - ACTIONS(3), 1, + [14791] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 3, + ACTIONS(1379), 1, + anon_sym_BQUOTE, + ACTIONS(1365), 18, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1368), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + sym_test_operator, + ACTIONS(1363), 24, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_LPAREN, + 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, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_number, sym_word, - anon_sym_AMP, - [12092] = 3, + [14844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 3, - sym_file_descriptor, + ACTIONS(746), 1, sym__concat, - sym_variable_name, - ACTIONS(1372), 34, + STATE(444), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 40, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12137] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [14896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(746), 1, sym__concat, - ACTIONS(1270), 1, - sym_file_descriptor, - STATE(359), 1, + STATE(444), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 34, + ACTIONS(854), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [14947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1815), 1, + sym__special_character, + STATE(443), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 39, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12186] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [14998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, + ACTIONS(1821), 1, sym_file_descriptor, - sym__concat, + ACTIONS(1823), 1, sym_variable_name, - ACTIONS(1380), 34, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 13, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + ACTIONS(1819), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36432,41 +46173,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [12231] = 6, + [15053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_LPAREN, - ACTIONS(1465), 1, + ACTIONS(1825), 1, sym__concat, - STATE(441), 1, + STATE(440), 1, aux_sym_concatenation_repeat1, - ACTIONS(1211), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1207), 32, + ACTIONS(879), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [15104] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + anon_sym_LF, + ACTIONS(1838), 1, + anon_sym_LT_LT_LT, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1830), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1832), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1834), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1080), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36475,39 +46262,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [12282] = 3, + sym_test_operator, + [15169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1384), 34, + ACTIONS(1832), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 12, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36516,84 +46311,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + sym_test_operator, + [15224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1842), 1, + sym__special_character, + STATE(443), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 39, + anon_sym_LF, + anon_sym_RPAREN_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12327] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [15275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, - sym_file_descriptor, - ACTIONS(1471), 1, + ACTIONS(1845), 1, sym__concat, - STATE(325), 1, + STATE(440), 1, aux_sym_concatenation_repeat1, - ACTIONS(1467), 34, + ACTIONS(863), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12376] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [15326] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 3, + ACTIONS(1838), 1, + anon_sym_LT_LT_LT, + ACTIONS(1847), 1, + anon_sym_LF, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1388), 34, - anon_sym_LF, + ACTIONS(1832), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1834), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1849), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1851), 4, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36602,78 +46459,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12421] = 5, + sym_test_operator, + [15391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, + ACTIONS(1853), 1, sym__concat, - STATE(322), 1, + STATE(440), 1, aux_sym_concatenation_repeat1, - ACTIONS(1243), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1241), 33, + ACTIONS(869), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12470] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [15442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 1, + ACTIONS(861), 1, sym_file_descriptor, - ACTIONS(1235), 1, + ACTIONS(1855), 1, + anon_sym_LPAREN, + ACTIONS(1857), 1, sym__concat, - STATE(359), 1, + STATE(465), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 34, + ACTIONS(852), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -36694,26 +46554,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + sym_test_operator, + [15497] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1859), 1, + sym__concat, + STATE(494), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [12519] = 3, + anon_sym_CARET, + ACTIONS(865), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [15549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, + ACTIONS(1861), 1, sym__concat, + STATE(450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1402), 34, + ACTIONS(875), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36735,46 +46647,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12564] = 7, + sym_test_operator, + [15601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 1, - ts_builtin_sym_end, - ACTIONS(1197), 2, + ACTIONS(1863), 1, + sym__concat, + STATE(456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 9, + ACTIONS(863), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1183), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36783,25 +46691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [12617] = 3, + sym_test_operator, + [15653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - sym_variable_name, - ACTIONS(1398), 34, + ACTIONS(1867), 1, + sym_file_descriptor, + STATE(465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1865), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36812,6 +46729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36823,27 +46742,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12662] = 3, + sym_test_operator, + [15705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, + ACTIONS(1861), 1, sym__concat, + STATE(450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1394), 34, + ACTIONS(1869), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36865,74 +46788,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12707] = 6, - ACTIONS(3), 1, + sym_test_operator, + [15757] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1197), 1, - sym_variable_name, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 11, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1215), 19, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(772), 1, + sym__concat, + STATE(448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [12758] = 5, + anon_sym_CARET, + ACTIONS(877), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [15809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1471), 1, + ACTIONS(1857), 1, sym__concat, - STATE(325), 1, + ACTIONS(1875), 1, + sym_file_descriptor, + STATE(464), 1, aux_sym_concatenation_repeat1, - ACTIONS(1221), 34, + ACTIONS(1873), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36943,6 +46870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36954,27 +46883,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12807] = 3, + sym_test_operator, + [15861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, + ACTIONS(1877), 1, sym__concat, + STATE(456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1422), 34, + ACTIONS(869), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36996,27 +46929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12852] = 3, + sym_test_operator, + [15913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, + ACTIONS(1879), 1, sym__concat, + STATE(456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1418), 34, + ACTIONS(879), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37038,27 +46976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12897] = 3, + sym_test_operator, + [15965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, + ACTIONS(1861), 1, sym__concat, + STATE(455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1410), 34, + ACTIONS(1882), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37080,68 +47023,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [12942] = 3, + sym_test_operator, + [16017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, + ACTIONS(1000), 1, sym__concat, - sym_variable_name, - ACTIONS(1406), 34, + ACTIONS(998), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [12987] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 2, + ACTIONS(877), 1, sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - ACTIONS(1384), 34, + STATE(465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37152,6 +47103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37163,29 +47116,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13031] = 3, + sym_test_operator, + [16117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 3, + ACTIONS(881), 1, sym_file_descriptor, + ACTIONS(1886), 1, sym__concat, - sym_variable_name, - ACTIONS(1368), 33, + STATE(460), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -37193,6 +47150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37204,149 +47163,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13075] = 3, - ACTIONS(3), 1, + sym_test_operator, + [16169] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, + ACTIONS(1889), 1, sym__concat, - ACTIONS(1358), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + STATE(494), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [13119] = 3, + anon_sym_CARET, + ACTIONS(871), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, + ACTIONS(939), 1, sym__concat, - ACTIONS(1358), 34, + ACTIONS(937), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13163] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, - sym_file_descriptor, + ACTIONS(931), 1, sym__concat, - ACTIONS(1354), 34, + ACTIONS(929), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13207] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(871), 1, sym_file_descriptor, + ACTIONS(1891), 1, sym__concat, - ACTIONS(1350), 34, + STATE(460), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37357,6 +47334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37368,34 +47347,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13251] = 5, + sym_test_operator, + [16369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(865), 1, sym_file_descriptor, - ACTIONS(1475), 1, + ACTIONS(1893), 1, sym__concat, - STATE(397), 1, + STATE(460), 1, aux_sym_concatenation_repeat1, - ACTIONS(1255), 33, + ACTIONS(863), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -37412,206 +47394,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [13299] = 6, + sym_test_operator, + [16421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_variable_name, - ACTIONS(1217), 1, - sym_file_descriptor, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1215), 20, + ACTIONS(881), 1, + sym__concat, + ACTIONS(879), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13349] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - sym_file_descriptor, - ACTIONS(1478), 1, - sym__special_character, - STATE(399), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 33, + ACTIONS(896), 1, + sym__concat, + ACTIONS(894), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13397] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(900), 1, sym__concat, - STATE(441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1211), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1207), 32, + ACTIONS(898), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13445] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1336), 34, + sym_variable_name, + ACTIONS(1895), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 11, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [13489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1322), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37620,70 +47578,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13533] = 3, + sym_test_operator, + [16619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1821), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1318), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1823), 1, + sym_variable_name, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 13, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1368), 34, + sym_test_operator, + ACTIONS(1819), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37693,8 +47627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37706,25 +47638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [13621] = 3, + [16673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, - sym_file_descriptor, + ACTIONS(1861), 1, sym__concat, - ACTIONS(1372), 34, + STATE(455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1897), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37746,26 +47671,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13665] = 3, + sym_test_operator, + [16725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 2, - sym_file_descriptor, + ACTIONS(1861), 1, sym__concat, - ACTIONS(1380), 34, + STATE(450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1903), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1901), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37787,47 +47718,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [13709] = 9, + sym_test_operator, + [16777] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(1905), 1, + anon_sym_LF, + ACTIONS(1911), 1, anon_sym_LT_LT_LT, - ACTIONS(1197), 2, + ACTIONS(1823), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1307), 2, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1895), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1309), 2, + ACTIONS(1907), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1909), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1481), 4, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1080), 3, anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37836,192 +47773,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13765] = 3, + sym_test_operator, + [16841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 2, - sym_file_descriptor, + ACTIONS(892), 1, sym__concat, - ACTIONS(1388), 34, + ACTIONS(890), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13809] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16889] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 2, - sym_file_descriptor, + ACTIONS(908), 1, sym__concat, - ACTIONS(1394), 34, + ACTIONS(906), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13853] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, - sym_file_descriptor, + ACTIONS(912), 1, sym__concat, - ACTIONS(1398), 34, + ACTIONS(910), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13897] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [16985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, - sym_file_descriptor, + ACTIONS(916), 1, sym__concat, - ACTIONS(1402), 34, + ACTIONS(914), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [13941] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, + ACTIONS(861), 1, sym_file_descriptor, + ACTIONS(1855), 1, + anon_sym_LPAREN, + ACTIONS(1913), 1, sym__concat, - sym_variable_name, - ACTIONS(1291), 33, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 36, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -38029,6 +47987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38040,25 +48000,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [13985] = 3, + sym_test_operator, + [17087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(178), 1, sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - ACTIONS(1328), 34, + STATE(464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(151), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38069,6 +48034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38080,27 +48047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [14029] = 3, + sym_test_operator, + [17139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 3, + ACTIONS(861), 1, sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - sym_variable_name, - ACTIONS(1287), 33, + STATE(465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38111,6 +48081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38122,117 +48094,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [14073] = 3, + sym_test_operator, + [17191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, + ACTIONS(920), 1, sym__concat, - ACTIONS(1406), 34, + ACTIONS(918), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14117] = 3, - ACTIONS(3), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17239] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1412), 2, - sym_file_descriptor, + ACTIONS(772), 1, sym__concat, - ACTIONS(1410), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + STATE(448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(854), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [14161] = 3, + anon_sym_CARET, + ACTIONS(1915), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17291] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1418), 34, + ACTIONS(1911), 1, + anon_sym_LT_LT_LT, + ACTIONS(1917), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1895), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1909), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1919), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1851), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38241,488 +48240,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [14205] = 3, + sym_test_operator, + [17355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1422), 34, + ACTIONS(875), 40, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14249] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [17401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, + ACTIONS(935), 1, sym__concat, - sym_variable_name, - ACTIONS(1283), 33, + ACTIONS(933), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14293] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, + ACTIONS(950), 1, sym__concat, - sym_variable_name, - ACTIONS(1318), 33, + ACTIONS(948), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14337] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, + ACTIONS(954), 1, sym__concat, - sym_variable_name, - ACTIONS(1255), 33, + ACTIONS(952), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14381] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, + ACTIONS(935), 1, sym__concat, - sym_variable_name, - ACTIONS(1322), 33, + ACTIONS(933), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14425] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 2, - sym_file_descriptor, + ACTIONS(958), 1, sym__concat, - ACTIONS(1275), 34, + ACTIONS(956), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - anon_sym_LT, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14469] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 34, + ACTIONS(888), 1, + sym__concat, + ACTIONS(886), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14513] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 2, - sym_file_descriptor, + ACTIONS(962), 1, sym__concat, - ACTIONS(1279), 34, + ACTIONS(960), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14557] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, + ACTIONS(966), 1, sym__concat, - sym_variable_name, - ACTIONS(1336), 33, + ACTIONS(964), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14601] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, - sym_file_descriptor, + ACTIONS(970), 1, sym__concat, - sym_variable_name, - ACTIONS(1279), 33, + ACTIONS(968), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14645] = 10, - ACTIONS(3), 1, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17833] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1483), 1, - anon_sym_LF, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1307), 2, + ACTIONS(1921), 1, + sym__concat, + STATE(494), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1485), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14703] = 3, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(881), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, - sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - sym_variable_name, - ACTIONS(1275), 33, + ACTIONS(1926), 1, + sym_file_descriptor, + STATE(465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1924), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38733,6 +48769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38744,111 +48782,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [14747] = 5, + sym_test_operator, + [17937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym__special_character, - STATE(430), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 32, + ACTIONS(974), 1, + sym__concat, + ACTIONS(972), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14795] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [17985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 2, - sym_file_descriptor, + ACTIONS(978), 1, sym__concat, - ACTIONS(1255), 34, + ACTIONS(976), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14839] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, - sym_file_descriptor, + ACTIONS(1857), 1, sym__concat, - ACTIONS(1283), 34, + ACTIONS(1930), 1, + sym_file_descriptor, + STATE(464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1928), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -38869,1143 +48919,1923 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [14883] = 3, + sym_test_operator, + [18085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, + ACTIONS(982), 1, sym__concat, - sym_variable_name, - ACTIONS(1350), 33, + ACTIONS(980), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14927] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, + ACTIONS(986), 1, sym__concat, - sym_variable_name, - ACTIONS(1354), 33, + ACTIONS(984), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [14971] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, + ACTIONS(990), 1, sym__concat, - sym_variable_name, - ACTIONS(1358), 33, + ACTIONS(988), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [15015] = 5, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(996), 1, sym__concat, - STATE(514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1241), 31, + ACTIONS(994), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [15063] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, + ACTIONS(1004), 1, sym__concat, - sym_variable_name, - ACTIONS(1358), 33, + ACTIONS(1002), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [15107] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 2, - sym_file_descriptor, + ACTIONS(904), 1, sym__concat, - ACTIONS(1287), 34, + ACTIONS(902), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [18373] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1938), 1, + anon_sym_RBRACE, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1954), 1, + anon_sym_SLASH2, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 9, - anon_sym_LF, + STATE(1172), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1934), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1183), 19, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1940), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18452] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1964), 1, + anon_sym_RBRACE, + ACTIONS(1968), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [15201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 1, - sym_file_descriptor, - ACTIONS(1264), 35, - anon_sym_LF, + STATE(1233), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1962), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1966), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18531] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1972), 1, + anon_sym_RBRACE, + ACTIONS(1976), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1494), 1, - sym__concat, - STATE(479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1249), 32, - anon_sym_LF, + STATE(1232), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1970), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1974), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18610] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1980), 1, + anon_sym_RBRACE, + ACTIONS(1984), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1291), 34, - anon_sym_LF, + STATE(1224), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1978), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1982), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18689] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1988), 1, + anon_sym_RBRACE, + ACTIONS(1992), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1368), 33, - anon_sym_LF, + STATE(1227), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1986), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1990), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18768] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1996), 1, + anon_sym_RBRACE, + ACTIONS(2000), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1372), 33, - anon_sym_LF, + STATE(1220), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1994), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1998), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18847] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2004), 1, + anon_sym_RBRACE, + ACTIONS(2008), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1380), 33, - anon_sym_LF, + STATE(1221), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2002), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2006), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [18926] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1996), 1, + anon_sym_RBRACE, + ACTIONS(2010), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1291), 34, - anon_sym_LF, + STATE(1220), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1994), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1998), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19005] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2014), 1, + anon_sym_RBRACE, + ACTIONS(2018), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1384), 33, - anon_sym_LF, + STATE(1216), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2012), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2016), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19084] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2022), 1, + anon_sym_RBRACE, + ACTIONS(2026), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1287), 34, - anon_sym_LF, + STATE(1213), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2020), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2024), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19163] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2030), 1, + anon_sym_RBRACE, + ACTIONS(2034), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1388), 33, - anon_sym_LF, + STATE(1211), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2028), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2032), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19242] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2038), 1, + anon_sym_RBRACE, + ACTIONS(2042), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1394), 33, - anon_sym_LF, + STATE(1205), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2036), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2040), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19321] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2046), 1, + anon_sym_RBRACE, + ACTIONS(2050), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1398), 33, - anon_sym_LF, + STATE(1207), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2044), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2048), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19400] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2054), 1, + anon_sym_RBRACE, + ACTIONS(2058), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1402), 33, - anon_sym_LF, + STATE(1202), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2052), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2056), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19479] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2062), 1, + anon_sym_RBRACE, + ACTIONS(2066), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1283), 34, - anon_sym_LF, + STATE(1203), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2060), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2064), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19558] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2054), 1, + anon_sym_RBRACE, + ACTIONS(2068), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1328), 33, - anon_sym_LF, + STATE(1202), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2052), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2056), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19637] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2072), 1, + anon_sym_RBRACE, + ACTIONS(2076), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1255), 34, - anon_sym_LF, + STATE(1199), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2070), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2074), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19716] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2080), 1, + anon_sym_RBRACE, + ACTIONS(2084), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1406), 33, - anon_sym_LF, + STATE(1197), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2078), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19795] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2088), 1, + anon_sym_RBRACE, + ACTIONS(2092), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1221), 35, - anon_sym_LF, + STATE(1196), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2086), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2090), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19874] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(2100), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1183), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2094), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2098), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [19953] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2104), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15997] = 3, + STATE(1185), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2102), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2106), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20032] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1410), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2112), 1, + anon_sym_RBRACE, + ACTIONS(2116), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1177), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2110), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2114), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20111] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2120), 1, + anon_sym_RBRACE, + ACTIONS(2124), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1178), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2118), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2122), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20190] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2112), 1, + anon_sym_RBRACE, + ACTIONS(2126), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16041] = 3, + STATE(1177), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2110), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2114), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20269] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1279), 34, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2130), 1, + anon_sym_RBRACE, + ACTIONS(2134), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1175), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2128), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2132), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20348] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2142), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1171), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2136), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2140), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20427] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2146), 1, + anon_sym_RBRACE, + ACTIONS(2150), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16085] = 3, + STATE(1170), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2144), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2148), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, + ACTIONS(2152), 1, sym__concat, + STATE(535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1418), 33, + ACTIONS(875), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40024,28 +50854,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16129] = 3, + sym_test_operator, + [20557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 2, - sym_file_descriptor, + ACTIONS(2154), 1, sym__concat, - ACTIONS(1275), 34, + STATE(533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(879), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40064,30 +50900,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16173] = 3, + sym_test_operator, + [20608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, + ACTIONS(2157), 1, sym__concat, + STATE(533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1422), 33, + ACTIONS(869), 35, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40106,26 +50946,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16217] = 3, + sym_test_operator, + [20659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, - sym_file_descriptor, + ACTIONS(2159), 1, sym__concat, + STATE(533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1275), 33, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40146,27 +50992,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16261] = 3, + sym_test_operator, + [20710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(877), 1, sym_file_descriptor, + ACTIONS(1913), 1, sym__concat, - sym_variable_name, - ACTIONS(1279), 33, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40176,6 +51026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40187,27 +51039,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16305] = 3, + sym_test_operator, + [20761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 3, + ACTIONS(881), 1, sym_file_descriptor, + ACTIONS(2161), 1, sym__concat, - sym_variable_name, - ACTIONS(1255), 33, + STATE(537), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40217,6 +51072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40228,27 +51085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16349] = 3, + sym_test_operator, + [20812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, + ACTIONS(871), 1, sym_file_descriptor, + ACTIONS(2164), 1, sym__concat, - sym_variable_name, - ACTIONS(1283), 33, + STATE(537), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40258,6 +51118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40269,117 +51131,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16393] = 3, + sym_test_operator, + [20863] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1287), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2168), 1, + anon_sym_RBRACE, + ACTIONS(2172), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16437] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1496), 1, - anon_sym_LF, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1500), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1498), 3, + STATE(1237), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2166), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 18, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [20942] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2176), 1, + anon_sym_RBRACE, + ACTIONS(2180), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [16497] = 3, + STATE(1235), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2174), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2178), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, + ACTIONS(865), 1, sym_file_descriptor, + ACTIONS(2182), 1, sym__concat, - sym_variable_name, - ACTIONS(1291), 33, + STATE(537), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40389,6 +51284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40400,28 +51297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16541] = 3, + sym_test_operator, + [21072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, - sym_file_descriptor, + ACTIONS(2184), 1, sym__concat, - ACTIONS(1318), 34, + STATE(566), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40429,8 +51332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40442,27 +51343,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [16585] = 3, + sym_test_operator, + [21123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, + ACTIONS(904), 3, sym_file_descriptor, sym__concat, - ACTIONS(1322), 34, + sym_variable_name, + ACTIONS(902), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40470,8 +51375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40483,38 +51386,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16629] = 5, + sym_test_operator, + [21170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - sym__concat, - STATE(441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1270), 2, + ACTIONS(1004), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1268), 32, + sym__concat, + sym_variable_name, + ACTIONS(1002), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40526,30 +51430,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16677] = 5, + sym_test_operator, + [21217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1000), 3, sym_file_descriptor, - ACTIONS(1502), 1, sym__concat, - STATE(480), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 33, + sym_variable_name, + ACTIONS(998), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40568,25 +51474,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16725] = 3, + sym_test_operator, + [21264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, + ACTIONS(996), 3, sym_file_descriptor, - ACTIONS(1268), 35, + sym__concat, + sym_variable_name, + ACTIONS(994), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -40597,8 +51507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40610,27 +51518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16769] = 3, + sym_test_operator, + [21311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(990), 3, sym_file_descriptor, sym__concat, - ACTIONS(1336), 34, + sym_variable_name, + ACTIONS(988), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40638,8 +51551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40651,47 +51562,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16813] = 10, + sym_test_operator, + [21358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1504), 1, - anon_sym_LF, - ACTIONS(1197), 2, + ACTIONS(986), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1307), 2, + ACTIONS(984), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(1309), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1506), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40700,37 +51603,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [16871] = 5, + sym_test_operator, + [21405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - sym__concat, - STATE(441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(982), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1221), 32, + sym__concat, + sym_variable_name, + ACTIONS(980), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40742,30 +51650,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16919] = 5, + sym_test_operator, + [21452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(978), 3, sym_file_descriptor, - ACTIONS(1508), 1, - sym__special_character, - STATE(478), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 33, + sym__concat, + sym_variable_name, + ACTIONS(976), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40773,8 +51683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40786,37 +51694,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [16967] = 5, + sym_test_operator, + [21499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - sym__concat, - STATE(479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, + ACTIONS(974), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1255), 32, + sym__concat, + sym_variable_name, + ACTIONS(972), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40828,30 +51738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17015] = 5, + sym_test_operator, + [21546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(970), 3, sym_file_descriptor, - ACTIONS(1514), 1, sym__concat, - STATE(480), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 33, + sym_variable_name, + ACTIONS(968), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40870,87 +51782,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17063] = 10, + sym_test_operator, + [21593] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1517), 1, - anon_sym_LF, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1519), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, - anon_sym_LT, - anon_sym_GT, - anon_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(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2188), 1, + anon_sym_RBRACE, + ACTIONS(2192), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [17121] = 5, + STATE(1461), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2186), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2190), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(966), 3, sym_file_descriptor, - ACTIONS(1521), 1, sym__concat, - STATE(397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 33, + sym_variable_name, + ACTIONS(964), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40962,27 +51886,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17169] = 3, + sym_test_operator, + [21719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ACTIONS(1350), 34, + sym_variable_name, + ACTIONS(960), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40990,8 +51919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41003,27 +51930,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17213] = 3, + sym_test_operator, + [21766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(888), 3, sym_file_descriptor, sym__concat, - ACTIONS(1354), 34, + sym_variable_name, + ACTIONS(886), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41031,8 +51963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41044,27 +51974,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17257] = 3, + sym_test_operator, + [21813] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2196), 1, + anon_sym_RBRACE, + ACTIONS(2200), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1238), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2194), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2198), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [21892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, - ACTIONS(1358), 34, + sym_variable_name, + ACTIONS(933), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41072,8 +52067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41085,28 +52078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17301] = 5, + sym_test_operator, + [21939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - sym__special_character, - ACTIONS(1527), 1, + ACTIONS(954), 3, sym_file_descriptor, - STATE(399), 1, - aux_sym__literal_repeat1, - ACTIONS(1523), 33, + sym__concat, + sym_variable_name, + ACTIONS(952), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -41128,47 +52122,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17349] = 10, + sym_test_operator, + [21986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1529), 1, - anon_sym_LF, - ACTIONS(1197), 2, + ACTIONS(950), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1307), 2, + ACTIONS(948), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(1309), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1531), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41177,23 +52163,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [17407] = 3, + sym_test_operator, + [22033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 1, + ACTIONS(2202), 1, + sym__concat, + STATE(561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, sym_file_descriptor, - ACTIONS(1207), 35, + sym_variable_name, + ACTIONS(879), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -41204,8 +52202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41217,49 +52213,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [17451] = 11, + sym_test_operator, + [22084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_BQUOTE, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1533), 1, - anon_sym_LF, - ACTIONS(1197), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1492), 2, + ACTIONS(933), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(1500), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1535), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41268,25 +52253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [17511] = 3, + sym_test_operator, + [22131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, + ACTIONS(2205), 1, sym__concat, - ACTIONS(1358), 34, + STATE(561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(869), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41294,8 +52292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41307,81 +52303,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [17555] = 5, + sym_test_operator, + [22182] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1303), 1, - sym__concat, - STATE(482), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2168), 1, + anon_sym_RBRACE, + ACTIONS(2207), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17603] = 5, + STATE(1237), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2166), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - sym__concat, - STATE(441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 2, + ACTIONS(920), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1264), 32, + sym__concat, + sym_variable_name, + ACTIONS(918), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41393,30 +52406,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17651] = 5, + sym_test_operator, + [22308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 1, + ACTIONS(2209), 1, + sym__concat, + STATE(561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, - ACTIONS(1537), 1, - sym__special_character, - STATE(478), 1, - aux_sym__literal_repeat1, - ACTIONS(1295), 33, + sym_variable_name, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41424,8 +52442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41437,78 +52453,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [17699] = 10, + sym_test_operator, + [22359] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(1539), 1, - anon_sym_LF, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1541), 3, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2213), 1, + anon_sym_RBRACE, + ACTIONS(2217), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2211), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1183), 19, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2215), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22438] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2221), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [17757] = 5, + STATE(1240), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2219), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2223), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22517] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(543), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2233), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1366), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1254), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2227), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2231), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [22596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1362), 32, + ACTIONS(914), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41527,34 +52676,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17805] = 5, + sym_test_operator, + [22643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - sym__concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(912), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1221), 32, + ACTIONS(910), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -41569,31 +52720,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17853] = 5, + sym_test_operator, + [22690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, + ACTIONS(877), 1, sym_file_descriptor, - ACTIONS(1547), 1, + ACTIONS(2235), 1, sym__concat, - STATE(473), 1, + STATE(597), 1, aux_sym_concatenation_repeat1, - ACTIONS(1467), 33, + ACTIONS(875), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41612,31 +52766,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [17901] = 5, + sym_test_operator, + [22741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(904), 2, sym_file_descriptor, - ACTIONS(1537), 1, - sym__special_character, - STATE(478), 1, - aux_sym__literal_repeat1, - ACTIONS(1459), 33, + sym__concat, + ACTIONS(902), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41657,30 +52811,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [17949] = 5, + sym_test_operator, + [22788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - sym__concat, - STATE(539), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + ACTIONS(1004), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 32, + sym__concat, + ACTIONS(1002), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41688,6 +52842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41699,37 +52855,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [17997] = 5, + sym_test_operator, + [22835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - sym__concat, - STATE(514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 3, + ACTIONS(1000), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1237), 31, + sym__concat, + ACTIONS(998), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41741,31 +52899,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18045] = 5, + sym_test_operator, + [22882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(996), 2, sym_file_descriptor, - ACTIONS(1537), 1, - sym__special_character, - STATE(478), 1, - aux_sym__literal_repeat1, - ACTIONS(1376), 33, + sym__concat, + ACTIONS(994), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41786,29 +52943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [18093] = 5, + sym_test_operator, + [22929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(990), 2, sym_file_descriptor, - ACTIONS(1547), 1, sym__concat, - STATE(473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 33, + ACTIONS(988), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41816,6 +52974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41827,29 +52987,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18141] = 3, + sym_test_operator, + [22976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, + ACTIONS(986), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1422), 33, + ACTIONS(984), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41857,6 +53018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41868,29 +53031,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18185] = 3, + sym_test_operator, + [23023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, + ACTIONS(982), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1418), 33, + ACTIONS(980), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41898,6 +53062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41909,29 +53075,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18229] = 3, + sym_test_operator, + [23070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 3, + ACTIONS(978), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1410), 33, + ACTIONS(976), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41939,6 +53106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41950,29 +53119,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18273] = 3, + sym_test_operator, + [23117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, + ACTIONS(974), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1406), 33, + ACTIONS(972), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -41980,6 +53150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41991,29 +53163,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18317] = 3, + sym_test_operator, + [23164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1328), 33, + ACTIONS(968), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42021,6 +53194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42032,38 +53207,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18361] = 5, + sym_test_operator, + [23211] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - sym__concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2239), 1, + anon_sym_RBRACE, + ACTIONS(2243), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1263), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2237), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2241), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [23290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 32, + sym__concat, + ACTIONS(964), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42075,29 +53311,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18409] = 3, + sym_test_operator, + [23337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 3, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1402), 33, + ACTIONS(960), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42105,6 +53342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42116,28 +53355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18453] = 3, + sym_test_operator, + [23384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 2, + ACTIONS(888), 2, sym_file_descriptor, sym__concat, - ACTIONS(1422), 34, + ACTIONS(886), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42158,28 +53399,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [18497] = 3, + sym_test_operator, + [23431] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2247), 1, + anon_sym_RBRACE, + ACTIONS(2251), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1278), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2245), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2249), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [23510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 3, + ACTIONS(958), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1398), 33, + ACTIONS(956), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42198,29 +53502,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18541] = 3, + sym_test_operator, + [23557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1394), 33, + ACTIONS(933), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42228,6 +53534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42239,29 +53547,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18585] = 3, + sym_test_operator, + [23604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 3, + ACTIONS(954), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1388), 33, + ACTIONS(952), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42269,6 +53578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42280,38 +53591,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18629] = 5, + sym_test_operator, + [23651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - sym__concat, - STATE(552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 3, + ACTIONS(950), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1249), 31, + sym__concat, + ACTIONS(948), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42323,29 +53635,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18677] = 3, + sym_test_operator, + [23698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, + ACTIONS(881), 1, sym_file_descriptor, + ACTIONS(2253), 1, sym__concat, - sym_variable_name, - ACTIONS(1384), 33, + STATE(592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42364,28 +53680,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18721] = 3, + sym_test_operator, + [23749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ACTIONS(1372), 34, + ACTIONS(933), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42406,70 +53725,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [18765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1380), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [18809] = 5, + sym_test_operator, + [23796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(2256), 1, sym__special_character, - STATE(430), 1, + STATE(594), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 2, + ACTIONS(927), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1414), 32, + ACTIONS(922), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -42491,37 +53771,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18857] = 5, + sym_test_operator, + [23847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 1, + ACTIONS(871), 1, sym_file_descriptor, - ACTIONS(1303), 1, + ACTIONS(2259), 1, sym__concat, - STATE(482), 1, + STATE(592), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 33, + ACTIONS(869), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42533,27 +53816,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18905] = 3, + sym_test_operator, + [23898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 2, + ACTIONS(920), 2, sym_file_descriptor, sym__concat, - ACTIONS(1384), 34, + ACTIONS(918), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42574,28 +53861,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [18949] = 3, + sym_test_operator, + [23945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, + ACTIONS(865), 1, sym_file_descriptor, + ACTIONS(2261), 1, sym__concat, - sym_variable_name, - ACTIONS(1380), 33, + STATE(592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42614,28 +53906,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [18993] = 3, + sym_test_operator, + [23996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 2, + ACTIONS(916), 2, sym_file_descriptor, sym__concat, - ACTIONS(1388), 34, + ACTIONS(914), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42656,69 +53951,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [19037] = 3, + sym_test_operator, + [24043] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1394), 34, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(2269), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1284), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2263), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2267), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24122] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2273), 1, + anon_sym_RBRACE, + ACTIONS(2277), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1299), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2271), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2275), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24201] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(2279), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19081] = 3, + STATE(1284), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2263), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2267), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(912), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1372), 33, + ACTIONS(910), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42726,6 +54162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42737,32 +54175,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19125] = 3, + sym_test_operator, + [24327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, sym_file_descriptor, + ACTIONS(2281), 1, sym__concat, - ACTIONS(1398), 34, + STATE(1380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -42779,80 +54222,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [19169] = 5, + sym_test_operator, + [24380] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - sym__concat, - STATE(526), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1255), 32, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1329), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2283), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2287), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24459] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(2297), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(928), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2295), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24538] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2301), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19217] = 5, + STATE(1338), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2299), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2303), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24617] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - sym__concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1243), 2, + ACTIONS(1851), 1, + anon_sym_RPAREN, + ACTIONS(2307), 1, + anon_sym_LF, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(1823), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1241), 32, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1919), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42861,31 +54455,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19265] = 3, + sym_test_operator, + [24680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(908), 3, sym_file_descriptor, sym__concat, - ACTIONS(1402), 34, + sym_variable_name, + ACTIONS(906), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42893,8 +54486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -42906,27 +54497,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [24727] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2319), 1, + anon_sym_RBRACE, + ACTIONS(2323), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1340), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2317), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2321), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24806] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2327), 1, + anon_sym_RBRACE, + ACTIONS(2331), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, sym_word, - anon_sym_AMP, - [19309] = 3, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1342), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2325), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2329), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [24885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(958), 2, sym_file_descriptor, sym__concat, - ACTIONS(1328), 34, + ACTIONS(956), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42947,34 +54662,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [19353] = 5, + sym_test_operator, + [24932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 1, - sym__concat, - STATE(526), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, + ACTIONS(892), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1249), 32, + ACTIONS(890), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -42989,112 +54705,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19401] = 3, + sym_test_operator, + [24979] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1406), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2339), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym__special_character, - STATE(543), 1, - aux_sym__literal_repeat1, - ACTIONS(1416), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1414), 32, - anon_sym_LF, + STATE(1348), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2333), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2337), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19493] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(900), 3, sym_file_descriptor, sym__concat, - ACTIONS(1410), 34, + sym_variable_name, + ACTIONS(898), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -43102,8 +54798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43115,69 +54809,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19537] = 3, + sym_test_operator, + [25105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1418), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2343), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19581] = 3, + STATE(1349), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2341), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2345), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(896), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1318), 33, + ACTIONS(894), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -43196,29 +54913,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19625] = 3, + sym_test_operator, + [25231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(881), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1322), 33, + ACTIONS(879), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -43237,34 +54957,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19669] = 5, + sym_test_operator, + [25278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, + ACTIONS(927), 1, sym_file_descriptor, - ACTIONS(1303), 1, - sym__concat, - STATE(482), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 33, + ACTIONS(2349), 1, + sym__special_character, + STATE(618), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -43281,111 +55005,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [19717] = 5, + sym_test_operator, + [25329] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - sym__concat, - STATE(539), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2352), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19765] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1560), 1, - sym__concat, - STATE(547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1249), 32, - anon_sym_LF, + STATE(1348), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2333), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2337), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25408] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2356), 1, + anon_sym_RBRACE, + ACTIONS(2360), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19813] = 3, + STATE(1358), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2354), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2358), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 2, + ACTIONS(931), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1562), 34, + ACTIONS(929), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -43407,67 +55167,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19857] = 3, + sym_test_operator, + [25534] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1336), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2364), 1, + anon_sym_RBRACE, + ACTIONS(2368), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19901] = 3, + STATE(1352), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2362), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2366), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 2, + ACTIONS(939), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1566), 34, + ACTIONS(937), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -43489,69 +55271,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [19945] = 5, + sym_test_operator, + [25660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1570), 1, - sym__special_character, - STATE(543), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 32, + ACTIONS(2372), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [25707] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2376), 1, + anon_sym_RBRACE, + ACTIONS(2380), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19993] = 3, + STATE(1366), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2374), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2378), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [25786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(908), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 34, + sym__concat, + ACTIONS(906), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -43562,6 +55407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43573,38 +55420,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20037] = 5, + sym_test_operator, + [25833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - sym__concat, - STATE(514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 3, + ACTIONS(892), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1221), 31, + sym__concat, + ACTIONS(890), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43616,26 +55464,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20085] = 3, + sym_test_operator, + [25880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(900), 2, sym_file_descriptor, sym__concat, - ACTIONS(1368), 34, + ACTIONS(898), 37, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -43646,6 +55495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43657,245 +55508,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20129] = 5, + sym_test_operator, + [25927] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1573), 1, - sym__concat, - STATE(547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1255), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2384), 1, + anon_sym_RBRACE, + ACTIONS(2388), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1350), 33, - anon_sym_LF, + STATE(1369), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2382), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2386), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26006] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(910), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(912), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [26053] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(914), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(916), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [26100] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(937), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(939), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [26147] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2392), 1, + anon_sym_RBRACE, + ACTIONS(2396), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1354), 33, - anon_sym_LF, + STATE(1377), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2390), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2394), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26226] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(929), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(931), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [26273] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(918), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(920), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [26320] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2400), 1, + anon_sym_RBRACE, + ACTIONS(2404), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1358), 33, - anon_sym_LF, + STATE(1379), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2398), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2402), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26399] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2408), 1, + anon_sym_RBRACE, + ACTIONS(2412), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20309] = 3, + STATE(1381), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2406), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2410), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26478] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1358), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2400), 1, + anon_sym_RBRACE, + ACTIONS(2414), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1379), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2398), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2402), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26557] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2418), 1, + anon_sym_RBRACE, + ACTIONS(2422), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1393), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2416), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2420), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26636] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2426), 1, + anon_sym_RBRACE, + ACTIONS(2430), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20353] = 5, + STATE(1383), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2424), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2428), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - sym__concat, - STATE(552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 3, + ACTIONS(896), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1255), 31, + sym__concat, + ACTIONS(894), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43907,34 +56192,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20401] = 5, + sym_test_operator, + [26762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(881), 2, sym_file_descriptor, - ACTIONS(1303), 1, sym__concat, - STATE(482), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1264), 33, + ACTIONS(879), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -43951,34 +56236,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [20449] = 3, + sym_test_operator, + [26809] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2434), 1, + anon_sym_RBRACE, + ACTIONS(2438), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1399), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2432), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2436), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [26888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 4, + ACTIONS(931), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1418), 31, + ACTIONS(929), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -43990,69 +56340,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20492] = 3, + sym_test_operator, + [26935] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1406), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2442), 1, + anon_sym_RBRACE, + ACTIONS(2446), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1401), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2440), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2444), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(2454), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20535] = 3, + STATE(1406), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2448), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2452), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(939), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1275), 32, + ACTIONS(937), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -44060,6 +56491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -44071,76 +56504,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [20578] = 5, + sym_test_operator, + [27140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - sym_file_descriptor, - ACTIONS(1579), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(732), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2458), 1, + anon_sym_RBRACE, + ACTIONS(2462), 1, + sym_regex, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1459), 32, - anon_sym_LF, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1408), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2456), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2460), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20625] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27219] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(1080), 1, + anon_sym_RPAREN, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(2464), 1, + anon_sym_LF, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1279), 32, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1907), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -44149,1614 +56617,2608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [20668] = 3, + sym_test_operator, + [27282] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1283), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2468), 1, + anon_sym_RBRACE, + ACTIONS(2472), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1279), 32, - anon_sym_LF, + STATE(1409), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2466), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2470), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27361] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2458), 1, + anon_sym_RBRACE, + ACTIONS(2474), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - sym__concat, - STATE(571), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1221), 31, - anon_sym_LF, + STATE(1408), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2456), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2460), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27440] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2476), 1, + sym__special_character, + STATE(652), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(927), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [27491] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2481), 1, + anon_sym_RBRACE, + ACTIONS(2485), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1275), 32, - anon_sym_LF, + STATE(1413), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2479), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2483), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27570] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2489), 1, + anon_sym_RBRACE, + ACTIONS(2493), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20844] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 1, - sym__concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1221), 30, - anon_sym_LF, + STATE(1411), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2487), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2491), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27649] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2497), 1, + anon_sym_RBRACE, + ACTIONS(2501), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1318), 32, - anon_sym_LF, + STATE(1417), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2495), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2499), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27728] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 1, - sym__concat, - STATE(565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1255), 31, - anon_sym_LF, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2505), 1, + anon_sym_RBRACE, + ACTIONS(2509), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1420), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2503), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2507), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27807] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2513), 1, + anon_sym_RBRACE, + ACTIONS(2517), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 33, - anon_sym_LF, + STATE(1428), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2511), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2515), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27886] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(2525), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21024] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - sym__concat, - STATE(694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 31, - anon_sym_LF, + STATE(1432), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2519), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2523), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [27965] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2529), 1, + anon_sym_RBRACE, + ACTIONS(2533), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1562), 33, - anon_sym_LF, + STATE(1436), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2527), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2531), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28044] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(2535), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1566), 33, - anon_sym_LF, + STATE(1432), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2519), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2523), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28123] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2539), 1, + anon_sym_RBRACE, + ACTIONS(2543), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21157] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1590), 1, - sym__special_character, - STATE(570), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1340), 30, - anon_sym_LF, + STATE(1456), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2537), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2541), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28202] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(2551), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 1, - sym__concat, - STATE(565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1249), 31, - anon_sym_LF, + STATE(1440), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2545), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2549), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28281] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(2559), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - sym__concat, - STATE(572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1255), 30, - anon_sym_LF, + STATE(1481), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2553), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2557), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28360] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2563), 1, + anon_sym_RBRACE, + ACTIONS(2567), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1422), 31, - anon_sym_LF, + STATE(1463), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2561), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2565), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28439] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1255), 32, - anon_sym_LF, + STATE(1466), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2569), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2573), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28518] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2583), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1410), 31, - anon_sym_LF, + STATE(1470), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2577), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2581), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28597] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2587), 1, + anon_sym_RBRACE, + ACTIONS(2591), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1406), 31, - anon_sym_LF, + STATE(1471), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2585), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2589), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28676] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2593), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1328), 31, - anon_sym_LF, + STATE(1470), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2577), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2581), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28755] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2597), 1, + anon_sym_RBRACE, + ACTIONS(2601), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1255), 32, - anon_sym_LF, + STATE(1476), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2595), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2599), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28834] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2605), 1, + anon_sym_RBRACE, + ACTIONS(2609), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21556] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1299), 1, - sym_file_descriptor, - ACTIONS(1579), 1, - sym__special_character, - STATE(732), 1, - aux_sym__literal_repeat1, - ACTIONS(1295), 32, - anon_sym_LF, + STATE(1473), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2603), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2607), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28913] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2617), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1283), 32, - anon_sym_LF, + STATE(1362), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2611), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2615), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [28992] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2625), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1291), 32, - anon_sym_LF, + STATE(1482), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2619), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2623), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29071] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2629), 1, + anon_sym_RBRACE, + ACTIONS(2633), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1380), 32, - anon_sym_LF, + STATE(1484), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2627), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2631), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29150] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(2641), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1402), 31, - anon_sym_LF, + STATE(1486), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2635), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2639), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29229] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(2649), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1398), 31, - anon_sym_LF, + STATE(1487), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2643), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2647), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29308] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(2651), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1394), 31, - anon_sym_LF, + STATE(1486), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2635), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2639), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29387] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2655), 1, + anon_sym_RBRACE, + ACTIONS(2659), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1388), 31, - anon_sym_LF, + STATE(1491), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2653), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2657), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(2667), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1384), 31, - anon_sym_LF, + STATE(1489), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2661), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2665), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29545] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2671), 1, + anon_sym_RBRACE, + ACTIONS(2675), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1562), 33, - anon_sym_LF, + STATE(1496), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2669), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2673), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2679), 1, + anon_sym_RBRACE, + ACTIONS(2683), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1380), 31, - anon_sym_LF, + STATE(1497), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2677), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2681), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29703] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [29750] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(879), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [22033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 4, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(881), 26, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1372), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [29797] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(894), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(896), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [29844] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2687), 1, + anon_sym_RBRACE, + ACTIONS(2691), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1368), 31, - anon_sym_LF, + STATE(1499), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2685), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2689), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [29923] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(2699), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22119] = 3, - ACTIONS(3), 1, + STATE(1501), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2693), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2697), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30002] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1293), 4, - sym_file_descriptor, + ACTIONS(898), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(900), 26, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1291), 31, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30049] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(948), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(950), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30096] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(952), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [22162] = 5, - ACTIONS(3), 1, + anon_sym_CARET, + ACTIONS(954), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30143] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1598), 1, - sym__special_character, - STATE(676), 1, - aux_sym__literal_repeat1, - ACTIONS(1366), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1362), 31, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(933), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30190] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(890), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(892), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30237] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2703), 1, + anon_sym_RBRACE, + ACTIONS(2707), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1566), 33, - anon_sym_LF, + STATE(1502), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2701), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2705), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30316] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(2709), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22252] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - sym_file_descriptor, - ACTIONS(1600), 1, - sym__concat, - STATE(611), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1467), 32, - anon_sym_LF, + STATE(1501), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2693), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2697), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30395] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(2717), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1287), 31, - anon_sym_LF, + STATE(1507), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2711), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2715), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30474] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2721), 1, + anon_sym_RBRACE, + ACTIONS(2725), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1287), 32, - anon_sym_LF, + STATE(1504), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2719), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2723), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + sym_file_descriptor, + ACTIONS(1823), 1, + sym_variable_name, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 13, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [22385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1358), 31, + sym_test_operator, + ACTIONS(1819), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -45772,35 +59234,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + [30606] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2729), 1, + anon_sym_RBRACE, + ACTIONS(2733), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22428] = 3, + STATE(1511), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2727), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2731), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 4, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1358), 31, + ACTIONS(2309), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 10, anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -45809,4344 +59329,6290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [22471] = 3, + sym_test_operator, + [30738] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1354), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2737), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1350), 31, - anon_sym_LF, + STATE(1512), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2735), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2739), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30817] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2745), 1, + anon_sym_RBRACE, + ACTIONS(2749), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1283), 31, - anon_sym_LF, + STATE(1516), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2743), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2747), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22600] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [30896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 33, + ACTIONS(2751), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [30943] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2755), 1, + anon_sym_RBRACE, + ACTIONS(2759), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym__concat, - STATE(572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1249), 30, - anon_sym_LF, + STATE(1518), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2753), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2757), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31022] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2763), 1, + anon_sym_RBRACE, + ACTIONS(2767), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_file_descriptor, - ACTIONS(1579), 1, - sym__special_character, - STATE(732), 1, - aux_sym__literal_repeat1, - ACTIONS(1376), 32, - anon_sym_LF, + STATE(1519), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2761), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2765), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31101] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2755), 1, + anon_sym_RBRACE, + ACTIONS(2769), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1291), 32, - anon_sym_LF, + STATE(1518), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2753), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2757), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31180] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2773), 1, + anon_sym_RBRACE, + ACTIONS(2777), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1287), 32, - anon_sym_LF, + STATE(1524), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2771), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2775), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31259] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2781), 1, + anon_sym_RBRACE, + ACTIONS(2785), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1380), 32, - anon_sym_LF, + STATE(1522), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2779), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2783), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2789), 1, + anon_sym_RBRACE, + ACTIONS(2793), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1322), 32, - anon_sym_LF, + STATE(1528), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2787), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2791), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31417] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2797), 1, + anon_sym_RBRACE, + ACTIONS(2801), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1255), 31, - anon_sym_LF, + STATE(1529), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2795), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2799), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31496] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2805), 1, + anon_sym_RBRACE, + ACTIONS(2809), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 1, - sym_file_descriptor, - ACTIONS(1604), 1, - sym__concat, - STATE(616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 32, - anon_sym_LF, + STATE(1531), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2803), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2807), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31575] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2813), 1, + anon_sym_RBRACE, + ACTIONS(2817), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1336), 32, - anon_sym_LF, + STATE(1533), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2811), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2815), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31654] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2821), 1, + anon_sym_RBRACE, + ACTIONS(2825), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 33, - anon_sym_LF, + STATE(1539), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2819), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2823), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31733] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2813), 1, + anon_sym_RBRACE, + ACTIONS(2827), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1336), 31, - anon_sym_LF, + STATE(1533), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2811), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2815), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31812] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2831), 1, + anon_sym_RBRACE, + ACTIONS(2835), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1279), 31, - anon_sym_LF, + STATE(1548), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2829), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2833), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31891] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2839), 1, + anon_sym_RBRACE, + ACTIONS(2843), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 1, - sym_file_descriptor, - ACTIONS(1606), 1, - sym__concat, - STATE(616), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 32, - anon_sym_LF, + STATE(1543), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2837), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2841), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [31970] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2847), 1, + anon_sym_RBRACE, + ACTIONS(2851), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1275), 31, - anon_sym_LF, + STATE(1557), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2845), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2849), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32049] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2855), 1, + anon_sym_RBRACE, + ACTIONS(2859), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1322), 31, - anon_sym_LF, + STATE(1559), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2853), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2857), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32128] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2863), 1, + anon_sym_RBRACE, + ACTIONS(2867), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1318), 31, - anon_sym_LF, + STATE(1561), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2861), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2865), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32207] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2871), 1, + anon_sym_RBRACE, + ACTIONS(2875), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1350), 32, - anon_sym_LF, + STATE(1563), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2869), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2873), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32286] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2879), 1, + anon_sym_RBRACE, + ACTIONS(2883), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1354), 32, - anon_sym_LF, + STATE(1565), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2877), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2881), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32365] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2871), 1, + anon_sym_RBRACE, + ACTIONS(2885), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1358), 32, - anon_sym_LF, + STATE(1563), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2869), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2873), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32444] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2889), 1, + anon_sym_RBRACE, + ACTIONS(2893), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1358), 32, - anon_sym_LF, + STATE(1592), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2887), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2891), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32523] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23519] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1598), 1, - sym__special_character, - STATE(676), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2897), 1, + anon_sym_RBRACE, + ACTIONS(2901), 1, + sym_regex, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1414), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1368), 32, - anon_sym_LF, + STATE(1568), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2895), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2899), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32602] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2905), 1, + anon_sym_RBRACE, + ACTIONS(2909), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1255), 32, - anon_sym_LF, + STATE(1610), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2903), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2907), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32681] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2913), 1, + anon_sym_RBRACE, + ACTIONS(2917), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1372), 32, - anon_sym_LF, + STATE(1623), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2911), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2915), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32760] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2921), 1, + anon_sym_RBRACE, + ACTIONS(2925), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1418), 32, - anon_sym_LF, + STATE(1621), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2919), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2923), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32839] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2929), 1, + anon_sym_RBRACE, + ACTIONS(2933), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1384), 32, - anon_sym_LF, + STATE(1619), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2927), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2931), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [32918] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(956), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(958), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [32965] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2937), 1, + anon_sym_RBRACE, + ACTIONS(2941), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1388), 32, - anon_sym_LF, + STATE(1618), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2935), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2939), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33044] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(906), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [23824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(908), 26, sym__concat, - sym_variable_name, - ACTIONS(1394), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [33091] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(886), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [23867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(888), 26, sym__concat, - ts_builtin_sym_end, - ACTIONS(1372), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [33138] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [23910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(962), 26, sym__concat, - sym_variable_name, - ACTIONS(1398), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [33185] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(964), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(966), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [33232] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2929), 1, + anon_sym_RBRACE, + ACTIONS(2943), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1318), 33, - anon_sym_LF, + STATE(1619), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2927), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2931), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33311] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2947), 1, + anon_sym_RBRACE, + ACTIONS(2951), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1322), 33, - anon_sym_LF, + STATE(1614), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2945), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2949), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33390] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2955), 1, + anon_sym_RBRACE, + ACTIONS(2959), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1336), 33, - anon_sym_LF, + STATE(1616), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2953), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2957), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33469] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1368), 32, - anon_sym_LF, + STATE(1609), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2961), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2965), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33548] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2971), 1, + anon_sym_RBRACE, + ACTIONS(2975), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1345), 1, - sym_file_descriptor, - ACTIONS(1609), 1, - sym__special_character, - STATE(638), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 32, - anon_sym_LF, + STATE(1608), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2969), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2973), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33627] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2979), 1, + anon_sym_RBRACE, + ACTIONS(2983), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1291), 32, - anon_sym_LF, + STATE(1606), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2977), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2981), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33706] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(2991), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1350), 33, - anon_sym_LF, + STATE(1604), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2985), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2989), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33785] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2995), 1, + anon_sym_RBRACE, + ACTIONS(2999), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1354), 33, - anon_sym_LF, + STATE(1603), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2993), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2997), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33864] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(3001), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1358), 33, - anon_sym_LF, + STATE(1604), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2985), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2989), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [33943] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3005), 1, + anon_sym_RBRACE, + ACTIONS(3009), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1358), 33, - anon_sym_LF, + STATE(1596), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3003), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3007), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34022] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(3017), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1368), 33, - anon_sym_LF, + STATE(1601), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3011), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3015), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34101] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3021), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1372), 33, - anon_sym_LF, + STATE(1591), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3019), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3023), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34180] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3029), 1, + anon_sym_RBRACE, + ACTIONS(3033), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1380), 33, - anon_sym_LF, + STATE(1590), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3027), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3031), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34259] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3037), 1, + anon_sym_RBRACE, + ACTIONS(3041), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1402), 32, - anon_sym_LF, + STATE(1588), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3035), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3039), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3045), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1384), 33, - anon_sym_LF, + STATE(1586), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3043), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3047), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34417] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3053), 1, + anon_sym_RBRACE, + ACTIONS(3057), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 1, - sym_file_descriptor, - ACTIONS(1264), 34, - anon_sym_LF, + STATE(1585), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3051), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3055), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34496] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3045), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1388), 33, - anon_sym_LF, + STATE(1586), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3043), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3047), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34575] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3063), 1, + anon_sym_RBRACE, + ACTIONS(3067), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1394), 33, - anon_sym_LF, + STATE(1581), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3061), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3065), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34654] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3071), 1, + anon_sym_RBRACE, + ACTIONS(3075), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1398), 33, - anon_sym_LF, + STATE(1583), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3069), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3073), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34733] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3079), 1, + anon_sym_RBRACE, + ACTIONS(3083), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1402), 33, - anon_sym_LF, + STATE(1576), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3077), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3081), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34812] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3087), 1, + anon_sym_RBRACE, + ACTIONS(3091), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1328), 33, - anon_sym_LF, + STATE(1575), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3085), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3089), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34891] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1612), 1, - sym__special_character, - STATE(667), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3095), 1, + anon_sym_RBRACE, + ACTIONS(3099), 1, + sym_regex, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1414), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1410), 33, - anon_sym_LF, + STATE(1573), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3093), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3097), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [34970] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3103), 1, + anon_sym_RBRACE, + ACTIONS(3107), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1418), 33, - anon_sym_LF, + STATE(1571), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3101), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3105), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35049] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(968), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [24993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - sym__special_character, - STATE(570), 1, - aux_sym__literal_repeat1, - ACTIONS(1416), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1414), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(970), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [35096] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(972), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [25040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(974), 26, sym__concat, - sym_variable_name, - ACTIONS(1328), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [35143] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(976), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [25083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 2, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(978), 26, sym__concat, - ACTIONS(1422), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [35190] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(980), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(982), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [35237] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3111), 1, + anon_sym_RBRACE, + ACTIONS(3115), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1406), 32, - anon_sym_LF, + STATE(1569), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3109), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3113), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35316] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3103), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1318), 32, - anon_sym_LF, + STATE(1571), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3101), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3105), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35395] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3121), 1, + anon_sym_RBRACE, + ACTIONS(3125), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1410), 32, - anon_sym_LF, + STATE(1550), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3119), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3123), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35474] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3129), 1, + anon_sym_RBRACE, + ACTIONS(3133), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1322), 32, - anon_sym_LF, + STATE(1553), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3127), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3131), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35553] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3137), 1, + anon_sym_RBRACE, + ACTIONS(3141), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - sym_file_descriptor, - ACTIONS(1268), 34, - anon_sym_LF, + STATE(1542), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3135), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3139), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35632] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3145), 1, + anon_sym_RBRACE, + ACTIONS(3149), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1336), 32, - anon_sym_LF, + STATE(1538), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3143), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3147), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35711] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3153), 1, + anon_sym_RBRACE, + ACTIONS(3157), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 1, - sym__special_character, - STATE(667), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 31, - anon_sym_LF, + STATE(1535), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3151), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3155), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25431] = 3, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35790] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, + ACTIONS(792), 1, sym__concat, - sym_variable_name, - ACTIONS(1350), 32, - anon_sym_LF, - anon_sym_SEMI, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 13, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(877), 24, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [35841] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3161), 1, + anon_sym_RBRACE, + ACTIONS(3165), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1354), 32, - anon_sym_LF, + STATE(1520), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3159), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3163), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35920] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3169), 1, + anon_sym_RBRACE, + ACTIONS(3173), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1358), 32, - anon_sym_LF, + STATE(1515), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3167), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3171), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [35999] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(984), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [25560] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 1, - sym_file_descriptor, - ACTIONS(1619), 1, - sym__special_character, - STATE(638), 1, - aux_sym__literal_repeat1, - ACTIONS(1523), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(986), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36046] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(988), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [25607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(990), 26, sym__concat, - sym_variable_name, - ACTIONS(1358), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36093] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(994), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [25650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(996), 26, sym__concat, - sym_variable_name, - ACTIONS(1418), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36140] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1000), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36187] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3161), 1, + anon_sym_RBRACE, + ACTIONS(3175), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1422), 32, - anon_sym_LF, + STATE(1520), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3159), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3163), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36266] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(3183), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1368), 32, - anon_sym_LF, + STATE(1475), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3177), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3181), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36345] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3187), 1, + anon_sym_RBRACE, + ACTIONS(3191), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25779] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - sym__special_character, - STATE(676), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 31, - anon_sym_LF, + STATE(1506), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3185), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3189), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36424] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(3199), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1291), 33, - anon_sym_LF, + STATE(1452), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3193), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3197), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36503] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(3207), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1372), 32, - anon_sym_LF, + STATE(1451), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3201), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3205), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36582] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3211), 1, + anon_sym_RBRACE, + ACTIONS(3215), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 1, - sym_file_descriptor, - ACTIONS(1207), 34, - anon_sym_LF, + STATE(1449), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3209), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3213), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36661] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3219), 1, + anon_sym_RBRACE, + ACTIONS(3223), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25955] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1624), 1, - sym__special_character, - STATE(726), 1, - aux_sym__literal_repeat1, - ACTIONS(1378), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1376), 31, - anon_sym_LF, + STATE(1447), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3217), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3221), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36740] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1002), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [26002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 2, - sym_file_descriptor, + anon_sym_CARET, + ACTIONS(1004), 26, sym__concat, - ACTIONS(1287), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36787] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 13, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(904), 26, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36834] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3227), 1, + anon_sym_RBRACE, + ACTIONS(3231), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1380), 32, - anon_sym_LF, + STATE(1446), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3225), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36913] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3219), 1, + anon_sym_RBRACE, + ACTIONS(3233), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1384), 32, - anon_sym_LF, + STATE(1447), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3217), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3221), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [36992] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3237), 1, + anon_sym_RBRACE, + ACTIONS(3241), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1388), 32, - anon_sym_LF, + STATE(1442), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3235), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3239), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37071] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(3249), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1394), 32, - anon_sym_LF, + STATE(1444), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3243), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3247), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37150] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3253), 1, + anon_sym_RBRACE, + ACTIONS(3257), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1422), 33, - anon_sym_LF, + STATE(1435), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3251), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3255), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37229] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3261), 1, + anon_sym_RBRACE, + ACTIONS(3265), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1398), 32, - anon_sym_LF, + STATE(1434), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3259), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3263), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37308] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3269), 1, + anon_sym_RBRACE, + ACTIONS(3273), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1402), 32, - anon_sym_LF, + STATE(1427), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3267), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3271), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37387] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3277), 1, + anon_sym_RBRACE, + ACTIONS(3281), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1600), 1, - sym__concat, - STATE(611), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 32, - anon_sym_LF, + STATE(1423), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3275), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3279), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3285), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1328), 32, - anon_sym_LF, + STATE(1564), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3283), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3287), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37545] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3293), 1, + anon_sym_RBRACE, + ACTIONS(3297), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1406), 32, - anon_sym_LF, + STATE(1400), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3295), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3301), 1, + anon_sym_RBRACE, + ACTIONS(3305), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1418), 33, - anon_sym_LF, + STATE(1540), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3303), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37703] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3277), 1, + anon_sym_RBRACE, + ACTIONS(3307), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1410), 32, - anon_sym_LF, + STATE(1423), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3275), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3279), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37782] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3311), 1, + anon_sym_RBRACE, + ACTIONS(3315), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26565] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1626), 1, - sym__concat, - STATE(706), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1249), 31, - anon_sym_LF, + STATE(1390), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3309), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3313), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37861] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(3323), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1384), 32, - anon_sym_LF, + STATE(1392), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3317), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3321), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [37940] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(3331), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1418), 32, - anon_sym_LF, + STATE(1372), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3325), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3329), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38019] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3335), 1, + anon_sym_RBRACE, + ACTIONS(3339), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1410), 33, - anon_sym_LF, + STATE(1370), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3333), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3337), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38098] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3343), 1, + anon_sym_RBRACE, + ACTIONS(3347), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1422), 32, - anon_sym_LF, + STATE(1364), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3341), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3345), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38177] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(3349), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1406), 33, - anon_sym_LF, + STATE(1362), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2611), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2615), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3353), 1, + anon_sym_RBRACE, + ACTIONS(3357), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1328), 33, - anon_sym_LF, + STATE(1359), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3351), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3355), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26870] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1402), 33, + ACTIONS(3359), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [38382] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3363), 1, + anon_sym_RBRACE, + ACTIONS(3367), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1287), 32, - anon_sym_LF, + STATE(1353), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3361), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3365), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38461] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3371), 1, + anon_sym_RBRACE, + ACTIONS(3375), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1398), 33, - anon_sym_LF, + STATE(1355), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3373), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38540] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3379), 1, + anon_sym_RBRACE, + ACTIONS(3383), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1358), 32, - anon_sym_LF, + STATE(1339), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3381), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38619] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3387), 1, + anon_sym_RBRACE, + ACTIONS(3391), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1358), 32, - anon_sym_LF, + STATE(1335), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3385), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3389), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38698] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3395), 1, + anon_sym_RBRACE, + ACTIONS(3399), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1628), 1, - sym__concat, - STATE(706), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1255), 31, - anon_sym_LF, + STATE(1332), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3393), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3397), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27132] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(178), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1354), 32, + ACTIONS(3401), 1, + sym__special_character, + STATE(618), 1, + aux_sym__literal_repeat1, + ACTIONS(151), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -50163,437 +65629,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [27175] = 3, + sym_test_operator, + [38828] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1350), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3405), 1, + anon_sym_RBRACE, + ACTIONS(3409), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1388), 32, - anon_sym_LF, + STATE(1330), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3403), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3407), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38907] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3413), 1, + anon_sym_RBRACE, + ACTIONS(3417), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1394), 33, - anon_sym_LF, + STATE(1328), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3411), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3415), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27304] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [38986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1388), 33, + ACTIONS(854), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [39031] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3405), 1, + anon_sym_RBRACE, + ACTIONS(3419), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1384), 33, - anon_sym_LF, + STATE(1330), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3403), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3407), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39110] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3423), 1, + anon_sym_RBRACE, + ACTIONS(3427), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1318), 33, - anon_sym_LF, + STATE(1324), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3421), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3425), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39189] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3431), 1, + anon_sym_RBRACE, + ACTIONS(3435), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1322), 33, - anon_sym_LF, + STATE(1326), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3429), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3433), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39268] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3439), 1, + anon_sym_RBRACE, + ACTIONS(3443), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1275), 33, - anon_sym_LF, + STATE(1318), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3437), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3441), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39347] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3447), 1, + anon_sym_RBRACE, + ACTIONS(3451), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27519] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 1, - sym__concat, - STATE(694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 31, - anon_sym_LF, + STATE(1317), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3445), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3449), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39426] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3455), 1, + anon_sym_RBRACE, + ACTIONS(3459), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1279), 33, - anon_sym_LF, + STATE(1315), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3453), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3457), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27609] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(3461), 1, + sym__special_character, + STATE(594), 1, + aux_sym__literal_repeat1, + ACTIONS(1899), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1336), 33, + sym_variable_name, + ACTIONS(1897), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -50605,27 +66197,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [27652] = 3, + sym_test_operator, + [39556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, - sym_file_descriptor, + ACTIONS(2235), 1, sym__concat, - ACTIONS(1283), 33, + ACTIONS(3465), 1, + sym_file_descriptor, + STATE(597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3463), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -50644,36 +66242,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [27695] = 3, + sym_test_operator, + [39607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, + ACTIONS(2235), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1283), 32, + ACTIONS(3469), 1, + sym_file_descriptor, + STATE(595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3467), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -50685,351 +66288,692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [27738] = 3, + sym_test_operator, + [39658] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1394), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3473), 1, + anon_sym_RBRACE, + ACTIONS(3477), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1255), 33, - anon_sym_LF, + STATE(1312), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3471), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3475), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39737] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3481), 1, + anon_sym_RBRACE, + ACTIONS(3485), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1398), 32, - anon_sym_LF, + STATE(1311), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3479), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3483), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39816] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3473), 1, + anon_sym_RBRACE, + ACTIONS(3487), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27867] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 1, - sym__concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1237), 30, - anon_sym_LF, + STATE(1312), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3471), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3475), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39895] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3491), 1, + anon_sym_RBRACE, + ACTIONS(3495), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1221), 34, - anon_sym_LF, + STATE(1307), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3489), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3493), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [39974] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3499), 1, + anon_sym_RBRACE, + ACTIONS(3503), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym__special_character, - STATE(726), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1340), 31, - anon_sym_LF, + STATE(1309), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3497), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3501), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40053] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3507), 1, + anon_sym_RBRACE, + ACTIONS(3511), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28004] = 5, + STATE(1298), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3509), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40132] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(726), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3515), 1, + anon_sym_RBRACE, + ACTIONS(3519), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1461), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1459), 31, - anon_sym_LF, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1297), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3513), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3517), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40211] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3523), 1, + anon_sym_RBRACE, + ACTIONS(3527), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28051] = 3, + STATE(1295), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3521), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3525), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40290] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1279), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3531), 1, + anon_sym_RBRACE, + ACTIONS(3535), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1293), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3529), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3533), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40369] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3539), 1, + anon_sym_RBRACE, + ACTIONS(3543), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1292), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3537), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3541), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40448] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3531), 1, + anon_sym_RBRACE, + ACTIONS(3545), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [28094] = 3, + STATE(1293), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3529), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3533), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 2, - sym_file_descriptor, + ACTIONS(2152), 1, sym__concat, - ACTIONS(1275), 33, + STATE(534), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51050,36 +66994,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [28137] = 3, + sym_test_operator, + [40578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, + ACTIONS(2152), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1336), 32, + STATE(535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -51091,117 +67040,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [28180] = 3, + sym_test_operator, + [40629] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1380), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3549), 1, + anon_sym_RBRACE, + ACTIONS(3553), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1288), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3547), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3551), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40708] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3557), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28223] = 5, + STATE(1290), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3555), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3559), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40787] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, - sym_file_descriptor, - ACTIONS(1634), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(732), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3565), 1, + anon_sym_RBRACE, + ACTIONS(3569), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1340), 32, - anon_sym_LF, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1283), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3563), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3567), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40866] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3573), 1, + anon_sym_RBRACE, + ACTIONS(3577), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28270] = 3, + STATE(1282), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3571), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3575), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [40945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(3461), 1, + sym__special_character, + STATE(594), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, sym_file_descriptor, - sym__concat, - ACTIONS(1372), 33, + sym_variable_name, + ACTIONS(1882), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -51213,234 +67327,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [28313] = 3, + sym_test_operator, + [40996] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1368), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3581), 1, + anon_sym_RBRACE, + ACTIONS(3585), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1291), 33, - anon_sym_LF, + STATE(1277), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3579), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3583), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41075] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3589), 1, + anon_sym_RBRACE, + ACTIONS(3593), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1279), 32, - anon_sym_LF, + STATE(1275), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3587), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3591), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41154] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3597), 1, + anon_sym_RBRACE, + ACTIONS(3601), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28442] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - aux_sym__simple_variable_name_token1, - STATE(1716), 1, - sym_string, - ACTIONS(605), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1637), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 21, + STATE(1273), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3595), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3599), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [28493] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41233] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1275), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3589), 1, + anon_sym_RBRACE, + ACTIONS(3603), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28536] = 3, + STATE(1275), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3587), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3591), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(1875), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1322), 32, + ACTIONS(3401), 1, + sym__special_character, + STATE(618), 1, + aux_sym__literal_repeat1, + ACTIONS(1873), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -51457,199 +67614,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [28579] = 3, + sym_test_operator, + [41363] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1318), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3607), 1, + anon_sym_RBRACE, + ACTIONS(3611), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - sym__concat, - STATE(571), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1469), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1467), 31, - anon_sym_LF, + STATE(1267), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3605), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3609), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41442] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3615), 1, + anon_sym_RBRACE, + ACTIONS(3619), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [28669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - sym__special_character, - STATE(570), 1, - aux_sym__literal_repeat1, - ACTIONS(1366), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1362), 30, - anon_sym_LF, + STATE(1269), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3613), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3617), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41521] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3623), 1, + anon_sym_RBRACE, + ACTIONS(3627), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [28716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1402), 32, - anon_sym_LF, + STATE(1262), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3621), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3625), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41600] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3631), 1, + anon_sym_RBRACE, + ACTIONS(3635), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28759] = 3, + STATE(1261), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3629), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3633), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, + ACTIONS(2184), 1, sym__concat, - ACTIONS(1358), 33, + STATE(563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -51661,35 +67899,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [28802] = 3, + sym_test_operator, + [41730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, + ACTIONS(2184), 1, sym__concat, - ACTIONS(1358), 33, + STATE(566), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -51701,1023 +67945,1817 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [28845] = 3, + sym_test_operator, + [41781] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1287), 33, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3639), 1, + anon_sym_RBRACE, + ACTIONS(3643), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1257), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3637), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3641), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41860] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3647), 1, + anon_sym_RBRACE, + ACTIONS(3651), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1328), 32, - anon_sym_LF, + STATE(1252), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3645), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3649), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [41939] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3655), 1, + anon_sym_RBRACE, + ACTIONS(3659), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28931] = 3, - ACTIONS(3), 1, + STATE(1251), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3653), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3657), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42018] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, + ACTIONS(772), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1406), 32, - anon_sym_LF, - anon_sym_SEMI, + STATE(448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 14, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(877), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [42069] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3647), 1, + anon_sym_RBRACE, + ACTIONS(3661), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1410), 32, - anon_sym_LF, + STATE(1252), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3645), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3649), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42148] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3665), 1, + anon_sym_RBRACE, + ACTIONS(3669), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 33, - anon_sym_LF, + STATE(1247), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3663), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3667), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42227] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3673), 1, + anon_sym_RBRACE, + ACTIONS(3677), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29060] = 5, + STATE(1249), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3671), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3675), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, - sym__special_character, - STATE(726), 1, - aux_sym__literal_repeat1, - ACTIONS(1299), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1295), 31, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3679), 7, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3681), 29, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [29107] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [42355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1354), 33, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3679), 7, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3681), 29, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [42404] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3687), 1, + anon_sym_RBRACE, + ACTIONS(3691), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1255), 33, - anon_sym_LF, + STATE(1212), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3685), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3689), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42483] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3695), 1, + anon_sym_RBRACE, + ACTIONS(3699), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1221), 34, - anon_sym_LF, + STATE(1189), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3693), 4, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3697), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42562] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3703), 1, + anon_sym_RBRACE, + ACTIONS(3707), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29236] = 3, + STATE(1187), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3701), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3705), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1422), 32, + ACTIONS(3709), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [42686] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3713), 1, + anon_sym_RBRACE, + ACTIONS(3717), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1283), 33, - anon_sym_LF, + STATE(1180), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3711), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3715), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42765] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3713), 1, + anon_sym_RBRACE, + ACTIONS(3719), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1350), 33, - anon_sym_LF, + STATE(1180), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3711), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3715), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42844] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3723), 1, + anon_sym_RBRACE, + ACTIONS(3727), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1237), 31, - anon_sym_LF, + STATE(1152), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3721), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3725), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [42923] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3731), 1, + anon_sym_RBRACE, + ACTIONS(3735), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1410), 31, - anon_sym_LF, + STATE(1167), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3729), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3733), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43002] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3739), 1, + anon_sym_RBRACE, + ACTIONS(3743), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1328), 30, - anon_sym_LF, + STATE(1128), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3741), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43081] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(3751), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1402), 30, - anon_sym_LF, + STATE(1126), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3745), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3749), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43160] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(3759), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1398), 30, - anon_sym_LF, + STATE(1113), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3753), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3757), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43239] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3763), 1, + anon_sym_RBRACE, + ACTIONS(3767), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1394), 30, - anon_sym_LF, + STATE(1111), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3761), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3765), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43318] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3771), 1, + anon_sym_RBRACE, + ACTIONS(3775), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1388), 30, - anon_sym_LF, + STATE(1109), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3769), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3773), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43397] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3763), 1, + anon_sym_RBRACE, + ACTIONS(3777), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1384), 30, - anon_sym_LF, + STATE(1111), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3761), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3765), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43476] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3781), 1, + anon_sym_RBRACE, + ACTIONS(3785), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1380), 30, - anon_sym_LF, + STATE(1103), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3779), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3783), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43555] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3789), 1, + anon_sym_RBRACE, + ACTIONS(3793), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1372), 30, - anon_sym_LF, + STATE(1105), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3787), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3791), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43634] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3797), 1, + anon_sym_RBRACE, + ACTIONS(3801), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29785] = 3, - ACTIONS(3), 1, + STATE(1081), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3795), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3799), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43713] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 4, - sym_file_descriptor, + ACTIONS(828), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1368), 30, - anon_sym_LF, - anon_sym_SEMI, + STATE(1097), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 14, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(877), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [43764] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3805), 1, + anon_sym_RBRACE, + ACTIONS(3809), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1422), 30, - anon_sym_LF, + STATE(1080), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3803), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3807), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43843] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3813), 1, + anon_sym_RBRACE, + ACTIONS(3817), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29869] = 3, + STATE(1078), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3811), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3815), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [43922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1418), 30, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3819), 7, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3681), 29, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [43971] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3823), 1, + anon_sym_RBRACE, + ACTIONS(3827), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29911] = 3, + STATE(1076), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3821), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3825), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 4, + ACTIONS(3829), 1, + ts_builtin_sym_end, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1410), 30, + ACTIONS(3831), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 9, anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -52726,69 +69764,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [29953] = 3, + sym_test_operator, + [44105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1358), 30, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3835), 1, + anon_sym_RBRACE, + ACTIONS(3839), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1075), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3833), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3837), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + sym_variable_name, + ACTIONS(1821), 2, + sym_file_descriptor, + ts_builtin_sym_end, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 13, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [29995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1358), 30, + sym_test_operator, + ACTIONS(1819), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -52807,115 +69883,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [30037] = 3, + [44237] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1354), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3823), 1, + anon_sym_RBRACE, + ACTIONS(3841), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1350), 30, - anon_sym_LF, + STATE(1076), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3825), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44316] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3845), 1, + anon_sym_RBRACE, + ACTIONS(3849), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30121] = 5, + STATE(1071), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3843), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3847), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, - sym__special_character, - STATE(776), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 3, + ACTIONS(1913), 1, + sym__concat, + ACTIONS(1930), 1, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1340), 29, + STATE(538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1928), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -52927,28 +70036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [30167] = 3, + sym_test_operator, + [44446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(1913), 1, + sym__concat, + ACTIONS(1926), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1221), 32, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1924), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -52965,285 +70082,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [30209] = 3, + sym_test_operator, + [44497] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1336), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3853), 1, + anon_sym_RBRACE, + ACTIONS(3857), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30251] = 5, + STATE(1073), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3851), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3855), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44576] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 1, - sym_file_descriptor, - ACTIONS(1646), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(826), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3861), 1, + anon_sym_RBRACE, + ACTIONS(3865), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1523), 31, - anon_sym_LF, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1066), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3859), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3863), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44655] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3869), 1, + anon_sym_RBRACE, + ACTIONS(3873), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1322), 30, - anon_sym_LF, + STATE(1065), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3867), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3871), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44734] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(3881), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1318), 30, - anon_sym_LF, + STATE(1063), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3879), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44813] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(3889), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1268), 32, - anon_sym_LF, + STATE(1061), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3883), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3887), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44892] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3893), 1, + anon_sym_RBRACE, + ACTIONS(3897), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30423] = 19, + STATE(1055), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3891), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3895), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [44971] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(95), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - sym_variable_name, - STATE(231), 1, - sym_command_name, - STATE(579), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(3899), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - STATE(787), 1, - sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(101), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(109), 2, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(519), 6, + STATE(1061), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3883), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(3887), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [30497] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 2, + ACTIONS(1930), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1275), 32, + ACTIONS(3401), 1, + sym__special_character, + STATE(618), 1, + aux_sym__literal_repeat1, + ACTIONS(1928), 36, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -53255,388 +70549,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [30539] = 5, + sym_test_operator, + [45101] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(823), 1, - aux_sym__literal_repeat1, - ACTIONS(1527), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1523), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(3907), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1291), 30, - anon_sym_LF, + STATE(1047), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3901), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3905), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45180] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3911), 1, + anon_sym_RBRACE, + ACTIONS(3915), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 1, - sym_file_descriptor, - ACTIONS(1207), 33, - anon_sym_LF, + STATE(1050), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3909), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3913), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45259] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(3923), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1279), 32, - anon_sym_LF, + STATE(1376), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3917), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3921), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3927), 1, + anon_sym_RBRACE, + ACTIONS(3931), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1287), 30, - anon_sym_LF, + STATE(1433), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3925), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3929), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45417] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3935), 1, + anon_sym_RBRACE, + ACTIONS(3939), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [30753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1255), 32, - anon_sym_LF, + STATE(1042), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3933), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3937), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45496] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3943), 1, + anon_sym_RBRACE, + ACTIONS(3947), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30795] = 3, + STATE(1040), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3941), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3945), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1283), 32, + ACTIONS(3949), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [30837] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [45620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1283), 30, + ACTIONS(2370), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [30879] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [45665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1287), 32, + ACTIONS(2370), 39, anon_sym_LF, + anon_sym_RPAREN_RPAREN, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [30921] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [45710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 4, + ACTIONS(1875), 1, sym_file_descriptor, + ACTIONS(1913), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1255), 30, + STATE(538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1873), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -53648,33 +71083,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [30963] = 3, + sym_test_operator, + [45761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 2, + ACTIONS(1867), 1, sym_file_descriptor, + ACTIONS(1913), 1, sym__concat, - ACTIONS(1291), 32, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1865), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -53686,189 +71129,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31005] = 3, + sym_test_operator, + [45812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1279), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(3951), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [31047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1275), 30, - anon_sym_LF, + STATE(1376), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3917), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3921), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45891] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(3959), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [31089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_file_descriptor, - ACTIONS(1221), 33, - anon_sym_LF, + STATE(1037), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3953), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3957), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [45970] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3963), 1, + anon_sym_RBRACE, + ACTIONS(3967), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1035), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3961), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3965), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46049] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3971), 1, + anon_sym_RBRACE, + ACTIONS(3975), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [31131] = 5, + STATE(1034), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3969), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3973), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46128] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, - STATE(776), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3963), 1, + anon_sym_RBRACE, + ACTIONS(3977), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1414), 29, - anon_sym_LF, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1035), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3961), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3965), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46207] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3981), 1, + anon_sym_RBRACE, + ACTIONS(3985), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1371), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3979), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3983), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46286] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3989), 1, + anon_sym_RBRACE, + ACTIONS(3993), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [31177] = 3, + STATE(1022), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3987), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3991), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, - sym_file_descriptor, + ACTIONS(2152), 1, sym__concat, - ACTIONS(1318), 32, + STATE(534), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1897), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53883,31 +71594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31219] = 3, + sym_test_operator, + [46416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, - sym_file_descriptor, + ACTIONS(2152), 1, sym__concat, - ACTIONS(1322), 32, + STATE(535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1903), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1901), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53922,151 +71640,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31261] = 3, + sym_test_operator, + [46467] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1336), 32, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3997), 1, + anon_sym_RBRACE, + ACTIONS(4001), 1, + sym_regex, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1030), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3995), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3999), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [31303] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [46593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 32, + ACTIONS(4005), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [31345] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [46640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1350), 32, + ACTIONS(4007), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(2370), 38, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP, - [31387] = 3, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [46687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, - sym_file_descriptor, + ACTIONS(4009), 1, + anon_sym_LPAREN, + ACTIONS(4011), 1, sym__concat, - ACTIONS(1354), 32, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(861), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(852), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54078,35 +71880,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31429] = 3, + sym_test_operator, + [46740] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 2, + ACTIONS(1082), 1, + ts_builtin_sym_end, + ACTIONS(4013), 1, + anon_sym_LF, + ACTIONS(4021), 1, + anon_sym_LT_LT_LT, + ACTIONS(1823), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1562), 32, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(3831), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(4017), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4019), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4015), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54115,36 +71933,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [31471] = 3, + sym_test_operator, + [46803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(178), 1, sym_file_descriptor, + ACTIONS(1913), 1, sym__concat, - ACTIONS(1358), 32, + STATE(538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(151), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54156,128 +71978,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31513] = 19, + sym_test_operator, + [46854] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(95), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(97), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(99), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - sym_variable_name, - STATE(267), 1, - sym_command_name, - STATE(579), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4025), 1, + anon_sym_RBRACE, + ACTIONS(4029), 1, + anon_sym_SLASH2, + STATE(2285), 1, aux_sym__literal_repeat1, - STATE(787), 1, - sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(101), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(109), 2, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(519), 6, + STATE(1043), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4023), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(37), 8, + ACTIONS(4027), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [31587] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [46933] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1358), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4033), 1, + anon_sym_RBRACE, + ACTIONS(4037), 1, + anon_sym_SLASH2, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [31629] = 3, + STATE(1039), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4031), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4035), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(861), 1, sym_file_descriptor, + ACTIONS(1913), 1, sym__concat, - ACTIONS(1368), 32, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54289,34 +72144,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + sym_test_operator, + [47063] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4039), 1, + sym__special_character, + STATE(652), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [31671] = 3, + anon_sym_CARET, + ACTIONS(750), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [47114] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1372), 32, + ACTIONS(4021), 1, + anon_sym_LT_LT_LT, + ACTIONS(4041), 1, + ts_builtin_sym_end, + ACTIONS(4043), 1, anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(3831), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(4017), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4019), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4045), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54325,29 +72243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31713] = 3, + sym_test_operator, + [47177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 2, + ACTIONS(912), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1566), 32, + sym__concat, + ACTIONS(910), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -54357,6 +72272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54368,111 +72285,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [31755] = 3, + sym_test_operator, + [47223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1380), 32, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [47299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_AMP, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4053), 3, + anon_sym_LF, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(3681), 28, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [47353] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, + ACTIONS(734), 1, sym__special_character, + ACTIONS(736), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(740), 1, anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + ACTIONS(4063), 1, + sym_variable_name, + STATE(438), 1, + aux_sym__literal_repeat1, + STATE(929), 1, + sym__expression, + STATE(3625), 1, + sym_variable_assignment, + STATE(4019), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, + ACTIONS(4061), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [31797] = 3, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1384), 32, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4067), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4065), 3, anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(3681), 28, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [31839] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [47489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 2, + ACTIONS(986), 2, sym_file_descriptor, sym__concat, - ACTIONS(1388), 32, + ACTIONS(984), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54484,34 +72541,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31881] = 3, + sym_test_operator, + [47535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 2, + ACTIONS(982), 2, sym_file_descriptor, sym__concat, - ACTIONS(1394), 32, + ACTIONS(980), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54523,34 +72584,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31923] = 3, + sym_test_operator, + [47581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, + ACTIONS(978), 2, sym_file_descriptor, sym__concat, - ACTIONS(1398), 32, + ACTIONS(976), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54562,34 +72627,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [31965] = 3, + sym_test_operator, + [47627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(974), 2, sym_file_descriptor, sym__concat, - ACTIONS(1402), 32, + ACTIONS(972), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54601,112 +72670,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [47673] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, + anon_sym_DOLLAR, + ACTIONS(734), 1, + sym__special_character, + ACTIONS(736), 1, + anon_sym_DQUOTE, + ACTIONS(738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(740), 1, anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + ACTIONS(4063), 1, + sym_variable_name, + STATE(438), 1, + aux_sym__literal_repeat1, + STATE(931), 1, + sym__expression, + STATE(3618), 1, + sym_variable_assignment, + STATE(4019), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, + ACTIONS(4069), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [32007] = 3, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1328), 32, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4071), 3, anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(3681), 28, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [32049] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [47809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1406), 32, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4077), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4075), 3, anon_sym_LF, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(3681), 28, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [32091] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [47863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(970), 2, sym_file_descriptor, sym__concat, - ACTIONS(1410), 32, + ACTIONS(968), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54718,35 +72868,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32133] = 3, + sym_test_operator, + [47909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 32, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4081), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4079), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3681), 28, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [47963] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4085), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4083), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3681), 28, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [48017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 1, + sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(875), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54758,36 +73007,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [32175] = 5, + sym_test_operator, + [48067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - sym__special_character, - STATE(823), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, + ACTIONS(966), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1340), 30, + sym__concat, + ACTIONS(964), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54799,33 +73050,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32221] = 3, + sym_test_operator, + [48113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(962), 2, sym_file_descriptor, sym__concat, - ACTIONS(1418), 32, + ACTIONS(960), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54837,34 +73093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32263] = 3, + sym_test_operator, + [48159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 2, + ACTIONS(888), 2, sym_file_descriptor, sym__concat, - ACTIONS(1422), 32, + ACTIONS(886), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54876,34 +73136,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32305] = 5, + sym_test_operator, + [48205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(958), 3, sym_file_descriptor, - ACTIONS(1655), 1, - sym__special_character, - STATE(826), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 31, + sym__concat, + sym_variable_name, + ACTIONS(956), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54918,26 +73178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32351] = 3, + sym_test_operator, + [48251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, + ACTIONS(4011), 1, sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(861), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1422), 31, + ACTIONS(852), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -54945,6 +73211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54956,27 +73224,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32393] = 3, + sym_test_operator, + [48301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, + ACTIONS(4011), 1, sym__concat, + STATE(973), 1, + aux_sym_concatenation_repeat1, + ACTIONS(178), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1418), 31, + ACTIONS(151), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -54984,6 +73256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -54995,35 +73269,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32435] = 3, + sym_test_operator, + [48351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 4, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1406), 30, + ACTIONS(933), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55035,33 +73312,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [32477] = 3, + sym_test_operator, + [48397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, + ACTIONS(954), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1406), 31, + ACTIONS(952), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55073,89 +73355,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [32519] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(159), 1, - anon_sym_DOLLAR, - ACTIONS(161), 1, - sym__special_character, - ACTIONS(163), 1, - anon_sym_DQUOTE, - ACTIONS(167), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, - anon_sym_BQUOTE, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1175), 1, sym_word, - STATE(198), 1, - sym_command_name, - STATE(314), 1, - aux_sym__literal_repeat1, - STATE(488), 1, - sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(165), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(302), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(37), 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, - [32593] = 3, + sym_test_operator, + [48443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(950), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1328), 31, + ACTIONS(948), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55167,31 +73398,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [48489] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, + anon_sym_DOLLAR, + ACTIONS(734), 1, + sym__special_character, + ACTIONS(736), 1, + anon_sym_DQUOTE, + ACTIONS(738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(740), 1, anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + ACTIONS(4063), 1, + sym_variable_name, + STATE(438), 1, + aux_sym__literal_repeat1, + STATE(994), 1, + sym__expression, + STATE(3590), 1, + sym_variable_assignment, + STATE(4019), 1, + sym_subscript, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(722), 4, + sym_raw_string, + sym_ansi_c_string, + sym_number, sym_word, + ACTIONS(4087), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [32635] = 3, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 3, + ACTIONS(881), 1, sym_file_descriptor, + ACTIONS(4089), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1402), 31, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55206,34 +73503,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32677] = 3, + sym_test_operator, + [48621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 3, + ACTIONS(935), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1398), 31, + ACTIONS(933), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55245,31 +73547,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32719] = 3, + sym_test_operator, + [48667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, + ACTIONS(4092), 1, + sym__special_character, + STATE(955), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1394), 31, + sym_variable_name, + ACTIONS(922), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55284,34 +73592,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + sym_test_operator, + [48717] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(854), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [32761] = 3, + anon_sym_CARET, + ACTIONS(1915), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [48763] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 3, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(1823), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1388), 31, - anon_sym_LF, - anon_sym_SEMI, + sym_variable_name, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4095), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55320,37 +73685,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32803] = 3, + sym_test_operator, + [48821] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1384), 31, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(4097), 1, anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4099), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55359,34 +73735,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32845] = 3, + sym_test_operator, + [48881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, + ACTIONS(871), 1, sym_file_descriptor, + ACTIONS(4101), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1380), 31, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55401,34 +73778,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32887] = 3, + sym_test_operator, + [48931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(920), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1372), 31, + ACTIONS(918), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55440,27 +73822,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32929] = 3, + sym_test_operator, + [48977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, + ACTIONS(4103), 1, sym__concat, + STATE(1157), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1903), 3, + sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1368), 31, + ACTIONS(1901), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -55479,27 +73866,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [32971] = 3, + sym_test_operator, + [49027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, + ACTIONS(4103), 1, sym__concat, + STATE(1160), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 3, + sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1291), 31, + ACTIONS(1897), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -55518,31 +73911,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33013] = 3, + sym_test_operator, + [49077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 3, + ACTIONS(865), 1, sym_file_descriptor, + ACTIONS(4105), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1287), 31, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55557,34 +73956,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33055] = 3, + sym_test_operator, + [49127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(916), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1358), 31, + ACTIONS(914), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55596,31 +74000,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33097] = 3, + sym_test_operator, + [49173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(908), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1358), 31, + sym_variable_name, + ACTIONS(906), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55635,34 +74042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33139] = 3, + sym_test_operator, + [49219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(958), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1354), 31, + ACTIONS(956), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55674,42 +74086,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33181] = 7, + sym_test_operator, + [49265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(1641), 1, - aux_sym__simple_variable_name_token1, - STATE(1716), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(892), 3, sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(890), 35, anon_sym_LF, - ACTIONS(1637), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -55730,18 +74129,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [33231] = 3, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [49311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(900), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1350), 31, + sym_variable_name, + ACTIONS(898), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55756,31 +74171,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33273] = 3, + sym_test_operator, + [49357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, + ACTIONS(896), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1283), 31, + sym_variable_name, + ACTIONS(894), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55795,26 +74214,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33315] = 3, + sym_test_operator, + [49403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 2, + ACTIONS(4107), 1, + sym__concat, + STATE(1009), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1264), 32, + ACTIONS(863), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -55835,30 +74260,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [33357] = 3, + sym_test_operator, + [49453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 3, + ACTIONS(881), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1255), 31, + sym_variable_name, + ACTIONS(879), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55873,38 +74302,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33399] = 5, + sym_test_operator, + [49499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(927), 1, + sym_file_descriptor, + ACTIONS(4109), 1, sym__special_character, - STATE(892), 1, + STATE(972), 1, aux_sym__literal_repeat1, - ACTIONS(1416), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1414), 30, + ACTIONS(922), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55916,25 +74349,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [33445] = 3, + sym_test_operator, + [49549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 3, + ACTIONS(4112), 1, + sym__concat, + STATE(1009), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(1221), 31, + ACTIONS(869), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -55942,6 +74380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55953,27 +74393,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33487] = 3, + sym_test_operator, + [49599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, + ACTIONS(4011), 1, sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1867), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1336), 31, + ACTIONS(1865), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -55981,6 +74425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55992,35 +74438,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33529] = 3, + sym_test_operator, + [49649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(4011), 1, + sym__concat, + STATE(973), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1875), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 32, + ts_builtin_sym_end, + ACTIONS(1873), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56032,30 +74483,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [33571] = 3, + sym_test_operator, + [49699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1279), 31, + sym_variable_name, + ACTIONS(929), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56070,89 +74525,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33613] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(249), 1, - anon_sym_DOLLAR, - ACTIONS(251), 1, - sym__special_character, - ACTIONS(253), 1, - anon_sym_DQUOTE, - ACTIONS(257), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, - anon_sym_BQUOTE, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1181), 1, - sym_word, - STATE(218), 1, - sym_command_name, - STATE(493), 1, - aux_sym__literal_repeat1, - STATE(679), 1, - sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(255), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(263), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(380), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(37), 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, - [33687] = 3, + sym_test_operator, + [49745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(996), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1275), 31, + ACTIONS(994), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56164,31 +74569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33729] = 3, + sym_test_operator, + [49791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(939), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1322), 31, + sym_variable_name, + ACTIONS(937), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56203,34 +74611,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33771] = 3, + sym_test_operator, + [49837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(1000), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1318), 31, + ACTIONS(998), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56242,35 +74655,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33813] = 3, + sym_test_operator, + [49883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(1004), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1275), 31, + ACTIONS(1002), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56282,34 +74698,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [33855] = 3, + sym_test_operator, + [49929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(178), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1279), 31, + ACTIONS(4114), 1, + sym__special_character, + STATE(972), 1, + aux_sym__literal_repeat1, + ACTIONS(151), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56321,34 +74744,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + sym_test_operator, + [49979] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(792), 1, + sym__concat, + STATE(1421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(854), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [33897] = 3, + anon_sym_CARET, + ACTIONS(1915), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [50029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 3, + ACTIONS(904), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1255), 31, + ACTIONS(902), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56360,26 +74831,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [33939] = 3, + sym_test_operator, + [50075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(904), 3, sym_file_descriptor, - ACTIONS(1221), 33, + sym__concat, + sym_variable_name, + ACTIONS(902), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -56398,32 +74874,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [33981] = 3, + sym_test_operator, + [50121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1283), 31, + ACTIONS(1002), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56438,34 +74917,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34023] = 3, + sym_test_operator, + [50167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(1000), 3, sym_file_descriptor, - ACTIONS(1264), 33, + sym__concat, + sym_variable_name, + ACTIONS(998), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56477,31 +74960,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34065] = 3, + sym_test_operator, + [50213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 3, + ACTIONS(996), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1287), 31, + ACTIONS(994), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56516,31 +75003,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34107] = 3, + sym_test_operator, + [50259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, + ACTIONS(990), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1291), 31, + ACTIONS(988), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56555,34 +75046,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34149] = 3, + sym_test_operator, + [50305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 1, + ACTIONS(4116), 1, + sym__special_character, + STATE(955), 1, + aux_sym__literal_repeat1, + ACTIONS(1899), 2, sym_file_descriptor, - ACTIONS(1268), 33, + sym_variable_name, + ACTIONS(1897), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56594,31 +75091,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34191] = 3, + sym_test_operator, + [50355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(3465), 1, sym_file_descriptor, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, - ACTIONS(1318), 31, + STATE(963), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3463), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56633,31 +75135,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34233] = 3, + sym_test_operator, + [50405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(3469), 1, sym_file_descriptor, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, - ACTIONS(1322), 31, + STATE(959), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3467), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56672,31 +75180,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34275] = 3, + sym_test_operator, + [50455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(986), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1336), 31, + ACTIONS(984), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56711,31 +75224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34317] = 3, + sym_test_operator, + [50501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 3, + ACTIONS(982), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1350), 31, + ACTIONS(980), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56750,31 +75267,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + sym_test_operator, + [50547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4122), 1, anon_sym_AMP, - [34359] = 3, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4120), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3681), 28, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [50601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(978), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1354), 31, + ACTIONS(976), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56789,31 +75357,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34401] = 3, + sym_test_operator, + [50647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(974), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1358), 31, + ACTIONS(972), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56828,31 +75400,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34443] = 3, + sym_test_operator, + [50693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1358), 31, + ACTIONS(968), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56867,31 +75443,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + sym_test_operator, + [50739] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3709), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - [34485] = 3, + anon_sym_CARET, + ACTIONS(4124), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [50785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 3, + ACTIONS(877), 1, sym_file_descriptor, + ACTIONS(4118), 1, sym__concat, - sym_variable_name, - ACTIONS(1368), 31, + STATE(963), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56906,30 +75530,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34527] = 3, + sym_test_operator, + [50835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 2, + ACTIONS(966), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1562), 32, + ACTIONS(964), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56944,32 +75574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34569] = 3, + sym_test_operator, + [50881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1372), 31, + ACTIONS(960), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56984,31 +75617,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34611] = 3, + sym_test_operator, + [50927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, + ACTIONS(888), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1380), 31, + ACTIONS(886), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57023,34 +75660,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34653] = 3, + sym_test_operator, + [50973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, + ACTIONS(908), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1384), 31, + ACTIONS(906), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57062,30 +75703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34695] = 3, + sym_test_operator, + [51019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 2, + ACTIONS(912), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1566), 32, + ACTIONS(910), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57100,32 +75745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34737] = 3, + sym_test_operator, + [51065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 3, + ACTIONS(916), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1388), 31, + ACTIONS(914), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57140,34 +75788,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [34779] = 3, + sym_test_operator, + [51111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, + ACTIONS(892), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1394), 31, + ACTIONS(890), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57179,31 +75832,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34821] = 3, + sym_test_operator, + [51157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 3, + ACTIONS(935), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1398), 31, + ACTIONS(933), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57218,31 +75875,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34863] = 3, + sym_test_operator, + [51203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 3, + ACTIONS(954), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1402), 31, + ACTIONS(952), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57257,34 +75918,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34905] = 3, + sym_test_operator, + [51249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(4126), 1, sym__concat, - sym_variable_name, - ACTIONS(1328), 31, + STATE(1009), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(879), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57296,31 +75963,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34947] = 3, + sym_test_operator, + [51299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, + ACTIONS(950), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1406), 31, + ACTIONS(948), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57335,34 +76006,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [34989] = 3, + sym_test_operator, + [51345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 3, + ACTIONS(900), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1410), 31, + ACTIONS(898), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57374,31 +76049,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35031] = 3, + sym_test_operator, + [51391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, + ACTIONS(4129), 1, sym__concat, + STATE(1093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1418), 31, + ACTIONS(863), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57413,34 +76094,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35073] = 3, + sym_test_operator, + [51441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, + ACTIONS(1875), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1422), 31, + ACTIONS(4114), 1, + sym__special_character, + STATE(972), 1, + aux_sym__literal_repeat1, + ACTIONS(1873), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57452,33 +76140,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35115] = 3, + sym_test_operator, + [51491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(896), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 32, + sym__concat, + ACTIONS(894), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57490,38 +76182,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35157] = 5, + sym_test_operator, + [51537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1660), 1, - sym__special_character, - STATE(892), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 2, + ACTIONS(881), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1340), 30, + sym__concat, + ACTIONS(879), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57533,44 +76225,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35203] = 7, + sym_test_operator, + [51583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DQUOTE, - ACTIONS(1667), 1, - aux_sym__simple_variable_name_token1, - STATE(1815), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 35, anon_sym_LF, - ACTIONS(1663), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 20, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57585,79 +76268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [35253] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(41), 1, sym__special_character, - ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - sym_file_descriptor, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1177), 1, - sym_word, - STATE(233), 1, - sym_command_name, - STATE(751), 1, - aux_sym__literal_repeat1, - STATE(895), 1, - sym_concatenation, - STATE(3340), 1, - sym_subscript, - ACTIONS(45), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(53), 2, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(400), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(37), 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, - [35327] = 3, + sym_word, + sym_test_operator, + [51629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 2, + ACTIONS(920), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1207), 32, + sym__concat, + sym_variable_name, + ACTIONS(918), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57669,30 +76310,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35369] = 3, + sym_test_operator, + [51675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 3, + ACTIONS(4131), 1, + sym__concat, + STATE(1093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1562), 31, + ACTIONS(869), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57707,112 +76356,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35411] = 3, + sym_test_operator, + [51725] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1566), 31, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4133), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4051), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [51801] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4135), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35453] = 7, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [51877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1673), 1, - aux_sym__simple_variable_name_token1, - STATE(1943), 1, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4139), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1019), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4137), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, - ACTIONS(605), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1669), 9, - anon_sym_BANG, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4141), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [51953] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 18, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4143), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4051), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [35502] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 2, + ACTIONS(920), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1562), 31, + ACTIONS(918), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57827,26 +76631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35543] = 3, + sym_test_operator, + [52075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 3, + ACTIONS(4103), 1, + sym__concat, + STATE(1157), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1221), 30, + ACTIONS(1869), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -57865,29 +76675,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35584] = 3, + sym_test_operator, + [52125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 2, + ACTIONS(4103), 1, + sym__concat, + STATE(1160), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1566), 31, + ts_builtin_sym_end, + ACTIONS(1882), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -57903,33 +76720,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35625] = 3, + sym_test_operator, + [52175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 3, + ACTIONS(931), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1237), 30, + sym__concat, + ACTIONS(929), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57941,33 +76764,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35666] = 3, + sym_test_operator, + [52221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(939), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1221), 31, + sym__concat, + ACTIONS(937), 36, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57979,30 +76807,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35707] = 3, + sym_test_operator, + [52267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 3, + ACTIONS(916), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1562), 30, + ACTIONS(914), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58017,67 +76850,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [35748] = 3, + sym_test_operator, + [52313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1566), 30, - anon_sym_LF, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, + anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4143), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1020), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4145), 4, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4147), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52389] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, + ACTIONS(1946), 1, sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4139), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35789] = 3, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(912), 3, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1221), 31, + sym__concat, + sym_variable_name, + ACTIONS(910), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58092,33 +77009,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35830] = 3, + sym_test_operator, + [52511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1926), 1, sym_file_descriptor, - ACTIONS(1221), 32, + ACTIONS(1924), 37, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -58130,481 +77052,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [35871] = 3, + sym_test_operator, + [52557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1237), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35912] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2024), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(4149), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1677), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [35978] = 16, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52633] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2082), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1697), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36044] = 16, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2085), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1699), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36110] = 16, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2088), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1701), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1030), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3995), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36176] = 16, + ACTIONS(3999), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2077), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(4151), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1703), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36242] = 16, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [52937] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2007), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(4151), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1705), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1033), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4153), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36308] = 16, + ACTIONS(4155), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [53013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(1974), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3981), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1707), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36374] = 16, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [53089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2096), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3963), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1709), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36440] = 7, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [53165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_DQUOTE, - ACTIONS(1715), 1, - aux_sym__simple_variable_name_token1, - STATE(1924), 1, - sym_string, - ACTIONS(605), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1711), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 18, - anon_sym_RPAREN, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -58613,3587 +77555,4011 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [36488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, - anon_sym_DQUOTE, - ACTIONS(1719), 1, aux_sym__simple_variable_name_token1, - STATE(1836), 1, - sym_string, - ACTIONS(1717), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_word, sym_test_operator, - anon_sym_AMP, - [36534] = 16, + [53211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2078), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3955), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(1721), 4, - anon_sym_LF, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1719), 6, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36600] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_DQUOTE, - ACTIONS(1729), 1, - aux_sym__simple_variable_name_token1, - STATE(2023), 1, - sym_string, - ACTIONS(599), 4, + ACTIONS(4051), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - ACTIONS(1723), 4, - anon_sym_BANG, anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(1725), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(605), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [36649] = 15, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [53287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACE, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1751), 1, - sym_regex, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3919), 1, + anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1396), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1735), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36710] = 15, + [53363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1753), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4157), 1, anon_sym_RBRACE, - ACTIONS(1757), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1230), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1755), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36771] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(1759), 1, - anon_sym_RBRACE, - ACTIONS(1763), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1633), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1761), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36832] = 15, + [53439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4159), 1, anon_sym_RBRACE, - ACTIONS(1769), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1637), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1767), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36893] = 15, + [53515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1771), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4163), 1, anon_sym_RBRACE, - ACTIONS(1775), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1640), 2, + STATE(1044), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4161), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1773), 7, + ACTIONS(4165), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36954] = 15, + [53591] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1777), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4167), 1, anon_sym_RBRACE, - ACTIONS(1781), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1779), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37015] = 15, + [53667] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1783), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4167), 1, anon_sym_RBRACE, - ACTIONS(1787), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1624), 2, + STATE(1045), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4169), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1785), 7, + ACTIONS(4171), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37076] = 15, + [53743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1789), 1, - anon_sym_RBRACE, - ACTIONS(1793), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1622), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1791), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37137] = 15, + sym_test_operator, + [53789] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4163), 1, anon_sym_RBRACE, - ACTIONS(1799), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1616), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37198] = 15, + [53865] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1801), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4173), 1, anon_sym_RBRACE, - ACTIONS(1805), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1649), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1803), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37259] = 15, + [53941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1930), 1, + sym_file_descriptor, + ACTIONS(4114), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(972), 1, + aux_sym__literal_repeat1, + ACTIONS(1928), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1807), 1, - anon_sym_RBRACE, - ACTIONS(1811), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1647), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1809), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37320] = 16, + sym_test_operator, + [53991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(1004), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1002), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1821), 1, sym__special_character, - ACTIONS(1823), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(1833), 1, - sym_regex, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2356), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1813), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [37383] = 15, + sym_test_operator, + [54037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 9, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1817), 21, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1835), 1, - anon_sym_RBRACE, - ACTIONS(1839), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1485), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1837), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37444] = 15, + sym_test_operator, + [54089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1841), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3903), 1, anon_sym_RBRACE, - ACTIONS(1845), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1602), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1843), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37505] = 15, + [54165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1821), 1, + sym_file_descriptor, + ACTIONS(1823), 1, + sym_variable_name, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 12, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(1847), 1, - anon_sym_RBRACE, - ACTIONS(1851), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1634), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + sym_word, + sym_test_operator, + ACTIONS(1819), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [54217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(998), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1849), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37566] = 15, + sym_test_operator, + [54263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(996), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(994), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1853), 1, - anon_sym_RBRACE, - ACTIONS(1857), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1600), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [54309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(988), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1855), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37627] = 15, + sym_test_operator, + [54355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(986), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(984), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [54401] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1859), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3911), 1, anon_sym_RBRACE, - ACTIONS(1863), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1626), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1861), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37688] = 15, + [54477] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1865), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3911), 1, anon_sym_RBRACE, - ACTIONS(1869), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1530), 2, + STATE(1050), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3909), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1867), 7, + ACTIONS(3913), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37749] = 15, + [54553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4177), 1, anon_sym_RBRACE, - ACTIONS(1875), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1374), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1873), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37810] = 15, + [54629] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1877), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4177), 1, anon_sym_RBRACE, - ACTIONS(1881), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1592), 2, + STATE(1051), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4179), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1879), 7, + ACTIONS(4181), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37871] = 15, + [54705] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1883), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3885), 1, anon_sym_RBRACE, - ACTIONS(1887), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1586), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1885), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37932] = 15, + [54781] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1847), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1634), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37993] = 15, + [54857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(982), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(980), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [54903] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1891), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4183), 1, anon_sym_RBRACE, - ACTIONS(1895), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1562), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1893), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38054] = 15, + [54979] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1877), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4185), 1, anon_sym_RBRACE, - ACTIONS(1897), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1592), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1879), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38115] = 15, + [55055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4189), 1, anon_sym_RBRACE, - ACTIONS(1903), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1635), 2, + STATE(1068), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4187), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1901), 7, + ACTIONS(4191), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38176] = 15, + [55131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1905), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4193), 1, anon_sym_RBRACE, - ACTIONS(1909), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1654), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1907), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38237] = 15, + [55207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1859), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4193), 1, anon_sym_RBRACE, - ACTIONS(1911), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1626), 2, + STATE(1069), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4195), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1861), 7, + ACTIONS(4197), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38298] = 15, + [55283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1913), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4189), 1, anon_sym_RBRACE, - ACTIONS(1917), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1574), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1915), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38359] = 15, + [55359] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1919), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4199), 1, anon_sym_RBRACE, - ACTIONS(1923), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1539), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1921), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38420] = 15, + [55435] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1925), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3845), 1, anon_sym_RBRACE, - ACTIONS(1929), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1572), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1927), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38481] = 15, + [55511] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1931), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3853), 1, anon_sym_RBRACE, - ACTIONS(1935), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1613), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1933), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38542] = 15, + [55587] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1937), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3853), 1, anon_sym_RBRACE, - ACTIONS(1941), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1568), 2, + STATE(1073), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3851), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1939), 7, + ACTIONS(3855), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38603] = 15, + [55663] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4201), 1, anon_sym_RBRACE, - ACTIONS(1947), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1612), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1945), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38664] = 16, + [55739] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2377), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38727] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1971), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4201), 1, anon_sym_RBRACE, - ACTIONS(1975), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1614), 2, + STATE(1074), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4203), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1973), 7, + ACTIONS(4205), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38788] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2378), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38851] = 16, + [55815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - ACTIONS(1979), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2381), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38914] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1961), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1981), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2382), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38977] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(1983), 1, + ACTIONS(3823), 1, anon_sym_RBRACE, - ACTIONS(1987), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1608), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1985), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39038] = 15, + [55891] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1989), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3813), 1, anon_sym_RBRACE, - ACTIONS(1993), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1598), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1991), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39099] = 15, + [55967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(978), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(976), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1995), 1, - anon_sym_RBRACE, - ACTIONS(1999), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1553), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1997), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39160] = 15, + sym_test_operator, + [56013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2001), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4207), 1, anon_sym_RBRACE, - ACTIONS(2005), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1542), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2003), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39221] = 15, + [56089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2007), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4209), 1, anon_sym_RBRACE, - ACTIONS(2011), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1534), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2009), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39282] = 15, + [56165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(974), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(972), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2017), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1532), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2015), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39343] = 15, + sym_test_operator, + [56211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(970), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(968), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2019), 1, - anon_sym_RBRACE, - ACTIONS(2023), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1528), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2021), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39404] = 15, + sym_test_operator, + [56257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2025), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1532), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2015), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39465] = 16, + sym_test_operator, + [56303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - sym_regex, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2217), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [39528] = 16, + sym_test_operator, + [56349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(888), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(886), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2029), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2404), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [39591] = 15, + sym_test_operator, + [56395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + sym__concat, + STATE(1090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1500), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2033), 7, + sym_test_operator, + [56445] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4214), 1, + sym__special_character, + STATE(1464), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [39652] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(750), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [56495] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2037), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4218), 1, anon_sym_RBRACE, - ACTIONS(2041), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1561), 2, + STATE(1083), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4216), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2039), 7, + ACTIONS(4220), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39713] = 16, + [56571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(4222), 1, + sym__concat, + STATE(1093), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - ACTIONS(2043), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2413), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [39776] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2045), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2417), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [39839] = 15, + sym_test_operator, + [56621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(956), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2047), 1, - anon_sym_RBRACE, - ACTIONS(2051), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1498), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39900] = 16, + sym_test_operator, + [56667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(948), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2053), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2418), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [39963] = 15, + sym_test_operator, + [56713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1491), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2057), 7, + sym_test_operator, + [56759] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4225), 1, + sym__concat, + STATE(1119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [40024] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(865), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [56809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(954), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(952), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2065), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1467), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [56855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(948), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2063), 7, + sym_test_operator, + [56901] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4227), 1, + sym__concat, + STATE(1119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [40085] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(871), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [56951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(952), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2067), 1, - anon_sym_RBRACE, - ACTIONS(2071), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1559), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [56997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2069), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40146] = 15, + sym_test_operator, + [57043] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2073), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4229), 1, anon_sym_RBRACE, - ACTIONS(2077), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1535), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2075), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40207] = 16, + [57119] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1961), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2079), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2393), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(4229), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4231), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [40270] = 15, + ACTIONS(4233), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [57195] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2081), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4218), 1, anon_sym_RBRACE, - ACTIONS(2085), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1543), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2083), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40331] = 15, + [57271] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2087), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4235), 1, anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1533), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2089), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40392] = 15, + [57347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2093), 1, - anon_sym_RBRACE, - ACTIONS(2097), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1544), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2095), 7, + sym_test_operator, + [57393] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4237), 1, + sym__special_character, + STATE(1108), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [40453] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(927), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [57443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2099), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3781), 1, anon_sym_RBRACE, - ACTIONS(2103), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1523), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2101), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40514] = 15, + [57519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(4240), 1, sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2105), 1, - anon_sym_RBRACE, - ACTIONS(2109), 1, - sym_regex, - STATE(2285), 1, + STATE(1110), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1552), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2107), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40575] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(927), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(922), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2093), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1544), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2095), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40636] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2113), 1, - anon_sym_RBRACE, - ACTIONS(2117), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1497), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2115), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40697] = 15, + sym_test_operator, + [57569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2073), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3789), 1, anon_sym_RBRACE, - ACTIONS(2119), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1535), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2075), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40758] = 15, + [57645] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2121), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3789), 1, anon_sym_RBRACE, - ACTIONS(2125), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1487), 2, + STATE(1105), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3787), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2123), 7, + ACTIONS(3791), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40819] = 15, + [57721] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2127), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4243), 1, anon_sym_RBRACE, - ACTIONS(2131), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1486), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2129), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40880] = 15, + [57797] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2133), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4243), 1, anon_sym_RBRACE, - ACTIONS(2137), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1529), 2, + STATE(1106), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4245), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2135), 7, + ACTIONS(4247), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40941] = 15, + [57873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(886), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_RBRACE, - ACTIONS(2143), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1416), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2141), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41002] = 15, + sym_test_operator, + [57919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(920), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(918), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_RBRACE, - ACTIONS(2149), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1519), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2147), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41063] = 15, + sym_test_operator, + [57965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2151), 1, - anon_sym_RBRACE, - ACTIONS(2155), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1514), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41124] = 15, + sym_test_operator, + [58011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4011), 1, + sym__concat, + STATE(970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1926), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1924), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_RBRACE, - ACTIONS(2161), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1510), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2159), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41185] = 8, - ACTIONS(3), 1, + sym_test_operator, + [58061] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - aux_sym__simple_variable_name_token1, - STATE(2305), 1, - sym_string, - ACTIONS(599), 4, + ACTIONS(4249), 1, + sym__concat, + STATE(1119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 13, + anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_PLUS, - ACTIONS(2163), 4, - anon_sym_BANG, anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(2165), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, anon_sym_STAR, - anon_sym_AT, - ACTIONS(605), 13, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(881), 23, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -62202,31222 +81568,57171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_BANG_EQ, anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [41232] = 15, + [58111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(964), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_RBRACE, - ACTIONS(2175), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1355), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2173), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41293] = 15, + sym_test_operator, + [58157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(968), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2177), 1, - anon_sym_RBRACE, - ACTIONS(2181), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1518), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2179), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41354] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2183), 1, - anon_sym_RBRACE, - ACTIONS(2187), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1408), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2185), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41415] = 15, + sym_test_operator, + [58203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(916), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(914), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2189), 1, - anon_sym_RBRACE, - ACTIONS(2193), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1399), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2191), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41476] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2195), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1503), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2197), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41537] = 15, + sym_test_operator, + [58249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(912), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(910), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2205), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1505), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2203), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41598] = 16, + sym_test_operator, + [58295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(972), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2207), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2406), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41661] = 16, + sym_test_operator, + [58341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(4011), 1, + sym__concat, + STATE(973), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1930), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1928), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(2209), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2407), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41724] = 15, + sym_test_operator, + [58391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2195), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3763), 1, anon_sym_RBRACE, - ACTIONS(2211), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1503), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2197), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41785] = 15, + [58467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(976), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2213), 1, - anon_sym_RBRACE, - ACTIONS(2217), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1402), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2215), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41846] = 15, + sym_test_operator, + [58513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2219), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(2223), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1502), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2221), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41907] = 15, + [58589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(980), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2229), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1447), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2227), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41968] = 15, + sym_test_operator, + [58635] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(4252), 1, + anon_sym_LF, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2309), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2311), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4254), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2231), 1, - anon_sym_RBRACE, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1445), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2233), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42029] = 15, + sym_test_operator, + [58695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(984), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(2241), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1496), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2239), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42090] = 15, + sym_test_operator, + [58741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(988), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2243), 1, - anon_sym_RBRACE, - ACTIONS(2247), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1437), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2245), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42151] = 15, + sym_test_operator, + [58787] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2249), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4256), 1, anon_sym_RBRACE, - ACTIONS(2253), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1434), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2251), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42212] = 15, + [58863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2255), 1, - anon_sym_RBRACE, - ACTIONS(2259), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1476), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2257), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42273] = 15, + sym_test_operator, + [58909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2261), 1, - anon_sym_RBRACE, - ACTIONS(2265), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1431), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2263), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42334] = 15, + sym_test_operator, + [58955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1002), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1434), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [59001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(902), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2251), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42395] = 15, + sym_test_operator, + [59047] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2269), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4258), 1, anon_sym_RBRACE, - ACTIONS(2273), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1471), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42456] = 15, + [59123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4260), 1, + sym__concat, + STATE(1012), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2275), 1, - anon_sym_RBRACE, - ACTIONS(2279), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1282), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2277), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42517] = 15, + sym_test_operator, + [59173] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2281), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4264), 1, anon_sym_RBRACE, - ACTIONS(2285), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1525), 2, + STATE(1133), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4262), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2283), 7, + ACTIONS(4266), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42578] = 15, + [59249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(906), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1242), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2289), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42639] = 15, + sym_test_operator, + [59295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(958), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(956), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(2297), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1495), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2295), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42700] = 15, + sym_test_operator, + [59341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(890), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(2303), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1450), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42761] = 15, + sym_test_operator, + [59387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(898), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2183), 1, - anon_sym_RBRACE, - ACTIONS(2305), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1408), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2185), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42822] = 15, + sym_test_operator, + [59433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(894), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(2311), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1511), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2309), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42883] = 15, + sym_test_operator, + [59479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(879), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2313), 1, - anon_sym_RBRACE, - ACTIONS(2317), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1466), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2315), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42944] = 15, + sym_test_operator, + [59525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(927), 1, + sym_file_descriptor, + ACTIONS(4268), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1147), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, - anon_sym_RBRACE, - ACTIONS(2323), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1424), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2321), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43005] = 15, + sym_test_operator, + [59575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(929), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2325), 1, - anon_sym_RBRACE, - ACTIONS(2329), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1422), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2327), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43066] = 15, + sym_test_operator, + [59621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(937), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2335), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1509), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43127] = 15, + sym_test_operator, + [59667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2337), 1, - anon_sym_RBRACE, - ACTIONS(2341), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1482), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2339), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43188] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2347), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1473), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2345), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43249] = 15, + sym_test_operator, + [59713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2349), 1, - anon_sym_RBRACE, - ACTIONS(2353), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1451), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2351), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43310] = 15, + sym_test_operator, + [59759] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2355), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4271), 1, anon_sym_RBRACE, - ACTIONS(2359), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1458), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2357), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43371] = 15, + [59835] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2299), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4271), 1, anon_sym_RBRACE, - ACTIONS(2361), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1450), 2, + STATE(1138), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4273), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 7, + ACTIONS(4275), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43432] = 15, + [59911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(900), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(898), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2363), 1, - anon_sym_RBRACE, - ACTIONS(2367), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1388), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2365), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43493] = 15, + sym_test_operator, + [59957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(896), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(894), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2369), 1, - anon_sym_RBRACE, - ACTIONS(2373), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1454), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2371), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43554] = 15, + sym_test_operator, + [60003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2349), 1, - anon_sym_RBRACE, - ACTIONS(2375), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1451), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2351), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43615] = 15, + sym_test_operator, + [60049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4277), 1, + sym__concat, + STATE(1173), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(863), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2381), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1407), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2379), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43676] = 15, + sym_test_operator, + [60099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2383), 1, - anon_sym_RBRACE, - ACTIONS(2387), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1405), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2385), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43737] = 15, + sym_test_operator, + [60145] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(4279), 1, + anon_sym_LF, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2309), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2311), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4281), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 21, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2389), 1, - anon_sym_RBRACE, - ACTIONS(2393), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1443), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2391), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43798] = 15, + sym_test_operator, + [60205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4283), 1, + sym__concat, + STATE(1173), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2395), 1, - anon_sym_RBRACE, - ACTIONS(2399), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1400), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2397), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43859] = 15, + sym_test_operator, + [60255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(931), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(929), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2401), 1, - anon_sym_RBRACE, - ACTIONS(2405), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1449), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2403), 7, + sym_test_operator, + [60301] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4285), 1, + sym__special_character, + STATE(1162), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [43920] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(927), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [60351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACE, - ACTIONS(1737), 1, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2407), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1396), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [60397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1735), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43981] = 15, + sym_test_operator, + [60447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4288), 1, + sym__concat, + STATE(1462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2409), 1, - anon_sym_RBRACE, - ACTIONS(2413), 1, - sym_regex, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1394), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [60497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(852), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2411), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44042] = 15, + sym_test_operator, + [60547] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2415), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4264), 1, anon_sym_RBRACE, - ACTIONS(2419), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1569), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2417), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44103] = 15, + [60623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2421), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4290), 1, anon_sym_RBRACE, - ACTIONS(2425), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1429), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2423), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44164] = 15, + [60699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(151), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2427), 1, - anon_sym_RBRACE, - ACTIONS(2431), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1418), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2429), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44225] = 15, + sym_test_operator, + [60749] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2433), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2130), 1, anon_sym_RBRACE, - ACTIONS(2437), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1391), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2435), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44286] = 15, + [60825] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2112), 1, anon_sym_RBRACE, - ACTIONS(2443), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1379), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2441), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44347] = 15, + [60901] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2445), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3723), 1, anon_sym_RBRACE, - ACTIONS(2449), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1630), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2447), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44408] = 16, + [60977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(4292), 1, + sym__concat, + STATE(1173), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - ACTIONS(2451), 1, - anon_sym_RPAREN_RPAREN, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2415), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [44471] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2461), 1, - sym__special_character, - ACTIONS(2463), 1, - anon_sym_DQUOTE, - ACTIONS(2465), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, anon_sym_BQUOTE, - ACTIONS(2473), 1, - sym_regex, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2412), 1, - sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2453), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2178), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2368), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [44534] = 15, + sym_test_operator, + [61027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2475), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4297), 1, anon_sym_RBRACE, - ACTIONS(2479), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1440), 2, + STATE(1179), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4295), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2477), 7, + ACTIONS(4299), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44595] = 15, + [61103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2481), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4297), 1, anon_sym_RBRACE, - ACTIONS(2485), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1446), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2483), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44656] = 15, + [61179] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1771), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2096), 1, anon_sym_RBRACE, - ACTIONS(2487), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1640), 2, + STATE(1183), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2094), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1773), 7, + ACTIONS(2098), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44717] = 15, + [61255] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2489), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2096), 1, anon_sym_RBRACE, - ACTIONS(2493), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1594), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2491), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44778] = 15, + [61331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2495), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2104), 1, anon_sym_RBRACE, - ACTIONS(2499), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1413), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2497), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44839] = 15, + [61407] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2501), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4301), 1, anon_sym_RBRACE, - ACTIONS(2505), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1338), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2503), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44900] = 15, + [61483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2507), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3731), 1, anon_sym_RBRACE, - ACTIONS(2511), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1435), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2509), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [61559] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(828), 1, + sym__concat, + STATE(1097), 1, + aux_sym_concatenation_repeat1, + ACTIONS(854), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [44961] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1915), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [61609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2475), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3731), 1, anon_sym_RBRACE, - ACTIONS(2513), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1440), 2, + STATE(1167), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3729), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2477), 7, + ACTIONS(3733), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45022] = 15, + [61685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2515), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4303), 1, anon_sym_RBRACE, - ACTIONS(2519), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1350), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2517), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45083] = 15, + [61761] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1891), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4307), 1, anon_sym_RBRACE, - ACTIONS(2521), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1562), 2, + STATE(1191), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4305), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1893), 7, + ACTIONS(4309), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45144] = 15, + [61837] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2523), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4307), 1, anon_sym_RBRACE, - ACTIONS(2527), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1417), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2525), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45205] = 15, + [61913] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2529), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4303), 1, anon_sym_RBRACE, - ACTIONS(2533), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + STATE(1192), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4311), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2531), 7, + ACTIONS(4313), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45266] = 15, + [61989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2535), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4315), 1, anon_sym_RBRACE, - ACTIONS(2539), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1415), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2537), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45327] = 15, + [62065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2541), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4315), 1, anon_sym_RBRACE, - ACTIONS(2545), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1412), 2, + STATE(1168), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4317), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2543), 7, + ACTIONS(4319), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45388] = 15, + [62141] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2547), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3713), 1, anon_sym_RBRACE, - ACTIONS(2551), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1409), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2549), 7, + ACTIONS(4051), 8, anon_sym_EQ, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [62217] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4321), 1, + sym__special_character, + STATE(1108), 1, + aux_sym__literal_repeat1, + ACTIONS(153), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [45449] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(750), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [62267] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2553), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4323), 1, anon_sym_RBRACE, - ACTIONS(2557), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1411), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2555), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45510] = 15, + [62343] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2559), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4325), 1, anon_sym_RBRACE, - ACTIONS(2563), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1345), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2561), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45571] = 15, + [62419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4288), 1, + sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1903), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1901), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(2569), 1, - anon_sym_SLASH, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1340), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [62469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + sym__concat, + STATE(1462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1899), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1897), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2567), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45632] = 15, + sym_test_operator, + [62519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 37, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [62565] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2547), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2072), 1, anon_sym_RBRACE, - ACTIONS(2571), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1409), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2549), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45693] = 15, + [62641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2573), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2054), 1, anon_sym_RBRACE, - ACTIONS(2577), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1406), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2575), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45754] = 15, + [62717] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2579), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4329), 1, anon_sym_RBRACE, - ACTIONS(2583), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1362), 2, + STATE(1204), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4327), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2581), 7, + ACTIONS(4331), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45815] = 15, + [62793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2585), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4329), 1, anon_sym_RBRACE, - ACTIONS(2589), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1360), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2587), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45876] = 15, + [62869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2591), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2038), 1, anon_sym_RBRACE, - ACTIONS(2595), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1352), 2, + STATE(1205), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2036), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2593), 7, + ACTIONS(2040), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45937] = 15, + [62945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4103), 1, + sym__concat, + STATE(1157), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [62995] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2597), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2038), 1, anon_sym_RBRACE, - ACTIONS(2601), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1398), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2599), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45998] = 15, + [63071] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2603), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2046), 1, anon_sym_RBRACE, - ACTIONS(2607), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1389), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2605), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46059] = 16, + [63147] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - sym_regex, - ACTIONS(2611), 1, - sym__special_character, - STATE(2116), 1, - aux_sym__literal_repeat1, - STATE(2217), 1, - sym__expression, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1949), 3, + ACTIONS(4333), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [46122] = 15, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [63223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2613), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4335), 1, anon_sym_RBRACE, - ACTIONS(2617), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1456), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2615), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46183] = 15, + [63299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2619), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4339), 1, anon_sym_RBRACE, - ACTIONS(2623), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1331), 2, + STATE(1209), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4337), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2621), 7, + ACTIONS(4341), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46244] = 15, + [63375] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2625), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4339), 1, anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2627), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46305] = 15, + [63451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2631), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4335), 1, anon_sym_RBRACE, - ACTIONS(2635), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1327), 2, + STATE(1210), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4343), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2633), 7, + ACTIONS(4345), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46366] = 15, + [63527] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2625), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4347), 1, anon_sym_RBRACE, - ACTIONS(2637), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2627), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46427] = 15, + [63603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4349), 1, anon_sym_RBRACE, - ACTIONS(2643), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1384), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2641), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46488] = 15, + [63679] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2645), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2014), 1, anon_sym_RBRACE, - ACTIONS(2649), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1382), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2647), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46549] = 15, + [63755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2565), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3703), 1, anon_sym_RBRACE, - ACTIONS(2651), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1340), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2567), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46610] = 15, + [63831] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2653), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1996), 1, anon_sym_RBRACE, - ACTIONS(2657), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1324), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2655), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46671] = 15, + [63907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(4351), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1110), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [63957] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2659), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4355), 1, anon_sym_RBRACE, - ACTIONS(2663), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1309), 2, + STATE(1223), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4353), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2661), 7, + ACTIONS(4357), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46732] = 15, + [64033] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2665), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4355), 1, anon_sym_RBRACE, - ACTIONS(2669), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1460), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2667), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46793] = 15, + [64109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1867), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1865), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64159] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1759), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4359), 1, anon_sym_RBRACE, - ACTIONS(2671), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1633), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1761), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46854] = 15, + [64235] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1980), 1, anon_sym_RBRACE, - ACTIONS(2677), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1358), 2, + STATE(1224), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(1978), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2675), 7, + ACTIONS(1982), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46915] = 15, + [64311] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1980), 1, anon_sym_RBRACE, - ACTIONS(2683), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1351), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2681), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46976] = 15, + [64387] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2685), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(1988), 1, anon_sym_RBRACE, - ACTIONS(2689), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1638), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2687), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47037] = 15, + [64463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1875), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1873), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [64513] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2691), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4361), 1, anon_sym_RBRACE, - ACTIONS(2695), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1314), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2693), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47098] = 15, + [64589] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2697), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4363), 1, anon_sym_RBRACE, - ACTIONS(2701), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1312), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2699), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47159] = 15, + [64665] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2703), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4365), 1, anon_sym_RBRACE, - ACTIONS(2707), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1444), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2705), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47220] = 15, + [64741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2709), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4369), 1, anon_sym_RBRACE, - ACTIONS(2713), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1335), 2, + STATE(1230), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4367), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2711), 7, + ACTIONS(4371), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47281] = 15, + [64817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2715), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4369), 1, anon_sym_RBRACE, - ACTIONS(2719), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1341), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2717), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47342] = 15, + [64893] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2721), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4363), 1, anon_sym_RBRACE, - ACTIONS(2725), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1442), 2, + STATE(1231), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4373), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2723), 7, + ACTIONS(4375), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [64969] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [47403] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(877), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [65015] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2709), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4377), 1, anon_sym_RBRACE, - ACTIONS(2727), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1335), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2711), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47464] = 15, + [65091] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2729), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4379), 1, anon_sym_RBRACE, - ACTIONS(2733), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1333), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2731), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47525] = 15, + [65167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2735), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2176), 1, anon_sym_RBRACE, - ACTIONS(2739), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1354), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2737), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47586] = 15, + [65243] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2741), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2168), 1, anon_sym_RBRACE, - ACTIONS(2745), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1320), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2743), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47647] = 15, + [65319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2747), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4383), 1, anon_sym_RBRACE, - ACTIONS(2751), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1318), 2, + STATE(1239), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4381), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2749), 7, + ACTIONS(4385), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47708] = 15, + [65395] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2753), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4383), 1, anon_sym_RBRACE, - ACTIONS(2757), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1364), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2755), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47769] = 15, + [65471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2735), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2221), 1, anon_sym_RBRACE, - ACTIONS(2759), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1354), 2, + STATE(1240), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2219), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2737), 7, + ACTIONS(2223), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47830] = 15, + [65547] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2761), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2221), 1, anon_sym_RBRACE, - ACTIONS(2765), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1648), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2763), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47891] = 15, + [65623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2767), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2213), 1, anon_sym_RBRACE, - ACTIONS(2771), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1650), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2769), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47952] = 15, + [65699] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2773), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4387), 1, anon_sym_RBRACE, - ACTIONS(2777), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1344), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2775), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48013] = 15, + [65775] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2779), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4389), 1, anon_sym_RBRACE, - ACTIONS(2783), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1299), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2781), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48074] = 15, + [65851] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2785), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4393), 1, anon_sym_RBRACE, - ACTIONS(2789), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1297), 2, + STATE(1244), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4391), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2787), 7, + ACTIONS(4395), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48135] = 15, + [65927] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2791), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4393), 1, anon_sym_RBRACE, - ACTIONS(2795), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1321), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2793), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48196] = 15, + [66003] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2797), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4389), 1, anon_sym_RBRACE, - ACTIONS(2801), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1316), 2, + STATE(1245), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4397), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2799), 7, + ACTIONS(4399), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48257] = 15, + [66079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2803), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4401), 1, anon_sym_RBRACE, - ACTIONS(2807), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1256), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2805), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48318] = 15, + [66155] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2613), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4403), 1, anon_sym_RBRACE, - ACTIONS(2809), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1456), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2615), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48379] = 15, + [66231] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2811), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4407), 1, anon_sym_RBRACE, - ACTIONS(2815), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1357), 2, + STATE(1218), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4405), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2813), 7, + ACTIONS(4409), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48440] = 15, + [66307] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4411), 1, anon_sym_RBRACE, - ACTIONS(2821), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1453), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2819), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48501] = 15, + [66383] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2823), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4411), 1, anon_sym_RBRACE, - ACTIONS(2827), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1228), 2, + STATE(1225), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4413), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2825), 7, + ACTIONS(4415), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48562] = 15, + [66459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2829), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4407), 1, anon_sym_RBRACE, - ACTIONS(2833), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1349), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2831), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48623] = 15, + [66535] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2835), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4417), 1, anon_sym_RBRACE, - ACTIONS(2839), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1283), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2837), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48684] = 15, + [66611] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2841), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3665), 1, anon_sym_RBRACE, - ACTIONS(2845), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1280), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2843), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48745] = 15, + [66687] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2847), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3673), 1, anon_sym_RBRACE, - ACTIONS(2851), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1292), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2849), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48806] = 15, + [66763] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2853), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3673), 1, anon_sym_RBRACE, - ACTIONS(2857), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1294), 2, + STATE(1249), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3671), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2855), 7, + ACTIONS(3675), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48867] = 15, + [66839] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2859), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2247), 1, anon_sym_RBRACE, - ACTIONS(2863), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1651), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2861), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48928] = 15, + [66915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [66961] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 1, + anon_sym_BQUOTE, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(4419), 1, + anon_sym_LF, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4423), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(4421), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 20, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [67023] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2865), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4425), 1, anon_sym_RBRACE, - ACTIONS(2869), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1326), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2867), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48989] = 15, + [67099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1867), 1, + sym_file_descriptor, + ACTIONS(1865), 37, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [67145] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2847), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4425), 1, anon_sym_RBRACE, - ACTIONS(2871), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1292), 2, + STATE(1250), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4427), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2849), 7, + ACTIONS(4429), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49050] = 15, + [67221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4433), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4431), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3681), 28, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [67275] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2873), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3647), 1, anon_sym_RBRACE, - ACTIONS(2877), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1480), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2875), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49111] = 15, + [67351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2879), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3639), 1, anon_sym_RBRACE, - ACTIONS(2883), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1271), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2881), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49172] = 15, + [67427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2885), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2265), 1, anon_sym_RBRACE, - ACTIONS(2889), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1291), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2887), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49233] = 15, + [67503] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2891), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4435), 1, anon_sym_RBRACE, - ACTIONS(2895), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1265), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2893), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49294] = 15, + [67579] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2897), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4437), 1, anon_sym_RBRACE, - ACTIONS(2901), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1257), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2899), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49355] = 15, + [67655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2903), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4441), 1, anon_sym_RBRACE, - ACTIONS(2907), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1655), 2, + STATE(1264), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4439), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2905), 7, + ACTIONS(4443), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49416] = 15, + [67731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2891), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4445), 1, anon_sym_RBRACE, - ACTIONS(2909), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1265), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2893), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49477] = 15, + [67807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2911), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4445), 1, anon_sym_RBRACE, - ACTIONS(2915), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1206), 2, + STATE(1265), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4447), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2913), 7, + ACTIONS(4449), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49538] = 15, + [67883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2917), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4441), 1, anon_sym_RBRACE, - ACTIONS(2921), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1334), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2919), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49599] = 15, + [67959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2923), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4453), 1, anon_sym_RBRACE, - ACTIONS(2927), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1244), 2, + STATE(1302), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4451), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2925), 7, + ACTIONS(4455), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49660] = 15, + [68035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2929), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4457), 1, anon_sym_RBRACE, - ACTIONS(2933), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1241), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2931), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [68111] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3949), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [49721] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4459), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [68157] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2865), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3607), 1, anon_sym_RBRACE, - ACTIONS(2935), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1326), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2867), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [68233] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [49782] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [68279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2937), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3615), 1, anon_sym_RBRACE, - ACTIONS(2941), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1290), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2939), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49843] = 15, + [68355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2943), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3615), 1, anon_sym_RBRACE, - ACTIONS(2947), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 2, + STATE(1269), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3613), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2945), 7, + ACTIONS(3617), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49904] = 15, + [68431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2949), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4463), 1, anon_sym_RBRACE, - ACTIONS(2953), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1277), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2951), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49965] = 15, + [68507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2955), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4453), 1, anon_sym_RBRACE, - ACTIONS(2959), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1250), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2957), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50026] = 15, + [68583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2961), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4463), 1, anon_sym_RBRACE, - ACTIONS(2965), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1272), 2, + STATE(1271), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4465), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2963), 7, + ACTIONS(4467), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [68659] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [50087] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 25, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [68705] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2967), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2293), 1, anon_sym_RBRACE, - ACTIONS(2971), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1267), 2, + STATE(928), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2291), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2969), 7, + ACTIONS(2295), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50148] = 15, + [68781] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2973), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3589), 1, anon_sym_RBRACE, - ACTIONS(2977), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1469), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2975), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50209] = 15, + [68857] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2979), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3581), 1, anon_sym_RBRACE, - ACTIONS(2983), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1507), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2981), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50270] = 15, + [68933] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2985), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2293), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1192), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2987), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50331] = 15, + [69009] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2979), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4469), 1, anon_sym_RBRACE, - ACTIONS(2991), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1507), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2981), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50392] = 15, + [69085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2993), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4471), 1, anon_sym_RBRACE, - ACTIONS(2997), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1225), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2995), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50453] = 15, + [69161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2999), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4475), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1223), 2, + STATE(1285), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4473), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3001), 7, + ACTIONS(4477), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50514] = 15, + [69237] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2213), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4479), 1, anon_sym_RBRACE, - ACTIONS(3005), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1402), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2215), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50575] = 15, + [69313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3007), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4479), 1, anon_sym_RBRACE, - ACTIONS(3011), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1300), 2, + STATE(1286), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4481), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3009), 7, + ACTIONS(4483), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50636] = 15, + [69389] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4475), 1, anon_sym_RBRACE, - ACTIONS(3017), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1289), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3015), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50697] = 15, + [69465] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3019), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4485), 1, anon_sym_RBRACE, - ACTIONS(3023), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1278), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3021), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50758] = 15, + [69541] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3025), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3549), 1, anon_sym_RBRACE, - ACTIONS(3029), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1370), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3027), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50819] = 15, + [69617] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3031), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3557), 1, anon_sym_RBRACE, - ACTIONS(3035), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1475), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3033), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50880] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 1, - anon_sym_DQUOTE, - ACTIONS(3043), 1, - aux_sym__simple_variable_name_token1, - STATE(2168), 1, - sym_string, - ACTIONS(599), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(3037), 4, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(3039), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(605), 13, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [50927] = 15, + [69693] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3045), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3557), 1, anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1231), 2, + STATE(1290), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3555), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3047), 7, + ACTIONS(3559), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50988] = 15, + [69769] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4487), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1227), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3053), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51049] = 15, + [69845] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3057), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4487), 1, anon_sym_RBRACE, - ACTIONS(3061), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1221), 2, + STATE(1291), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4489), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3059), 7, + ACTIONS(4491), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51110] = 15, + [69921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3063), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3531), 1, anon_sym_RBRACE, - ACTIONS(3067), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1204), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3065), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51171] = 15, + [69997] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3069), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3523), 1, anon_sym_RBRACE, - ACTIONS(3073), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1201), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3071), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51232] = 15, + [70073] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2999), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2285), 1, anon_sym_RBRACE, - ACTIONS(3075), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1223), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3001), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51293] = 15, + [70149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4260), 1, + sym__concat, + STATE(1012), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [70199] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4260), 1, + sym__concat, + STATE(1018), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [70249] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3077), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4493), 1, anon_sym_RBRACE, - ACTIONS(3081), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1260), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3079), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51354] = 15, + [70325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(990), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(988), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [70371] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3083), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4495), 1, anon_sym_RBRACE, - ACTIONS(3087), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3085), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51415] = 15, + [70447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3089), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4497), 1, anon_sym_RBRACE, - ACTIONS(3093), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1262), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3091), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51476] = 15, + [70523] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3069), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4501), 1, anon_sym_RBRACE, - ACTIONS(3095), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1201), 2, + STATE(1304), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4499), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3071), 7, + ACTIONS(4503), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51537] = 15, + [70599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3077), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4505), 1, anon_sym_RBRACE, - ACTIONS(3097), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1260), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3079), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51598] = 15, + [70675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3099), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4505), 1, anon_sym_RBRACE, - ACTIONS(3103), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1258), 2, + STATE(1305), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4507), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3101), 7, + ACTIONS(4509), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51659] = 15, + [70751] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3105), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4501), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1596), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3107), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51720] = 15, + [70827] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4511), 1, anon_sym_RBRACE, - ACTIONS(3115), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1254), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3113), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51781] = 15, + [70903] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3491), 1, anon_sym_RBRACE, - ACTIONS(3121), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1268), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3119), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51842] = 15, + [70979] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3499), 1, anon_sym_RBRACE, - ACTIONS(3127), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1214), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3125), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51903] = 15, + [71055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3129), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3499), 1, anon_sym_RBRACE, - ACTIONS(3133), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1581), 2, + STATE(1309), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3497), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3131), 7, + ACTIONS(3501), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51964] = 16, + [71131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, - anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1685), 1, sym__special_character, - ACTIONS(1687), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(3135), 1, - sym_regex, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2034), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1675), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1719), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [52027] = 15, + sym_test_operator, + [71177] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3137), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4517), 1, anon_sym_RBRACE, - ACTIONS(3141), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1212), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3139), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52088] = 15, + [71253] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4517), 1, anon_sym_RBRACE, - ACTIONS(3147), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1236), 2, + STATE(1310), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4519), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3145), 7, + ACTIONS(4521), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52149] = 15, + [71329] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3149), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3473), 1, anon_sym_RBRACE, - ACTIONS(3153), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1234), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3151), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52210] = 15, + [71405] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3155), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3455), 1, anon_sym_RBRACE, - ACTIONS(3159), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1219), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3157), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52271] = 15, + [71481] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3161), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4525), 1, anon_sym_RBRACE, - ACTIONS(3165), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1642), 2, + STATE(1336), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4523), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3163), 7, + ACTIONS(4527), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52332] = 15, + [71557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3155), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4529), 1, anon_sym_RBRACE, - ACTIONS(3167), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1219), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3157), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52393] = 15, + [71633] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3169), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4531), 1, anon_sym_RBRACE, - ACTIONS(3173), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1218), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3171), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52454] = 15, + [71709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [71755] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3175), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4539), 1, anon_sym_RBRACE, - ACTIONS(3179), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1198), 2, + STATE(1320), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4537), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3177), 7, + ACTIONS(4541), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52515] = 15, + [71831] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3181), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4543), 1, anon_sym_RBRACE, - ACTIONS(3185), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1246), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3183), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52576] = 15, + [71907] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3187), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4543), 1, anon_sym_RBRACE, - ACTIONS(3191), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1577), 2, + STATE(1321), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4545), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3189), 7, + ACTIONS(4547), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52637] = 15, + [71983] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3193), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4539), 1, anon_sym_RBRACE, - ACTIONS(3197), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1217), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3195), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52698] = 15, + [72059] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3199), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4549), 1, anon_sym_RBRACE, - ACTIONS(3203), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1323), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3201), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52759] = 15, + [72135] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3205), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3423), 1, anon_sym_RBRACE, - ACTIONS(3209), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1216), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3207), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52820] = 15, + [72211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3211), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4525), 1, anon_sym_RBRACE, - ACTIONS(3215), 1, - anon_sym_SLASH, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1239), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3213), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52881] = 15, + [72287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3217), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3431), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, - sym_regex, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1200), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3219), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52942] = 14, + [72363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3431), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1516), 2, + STATE(1326), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3429), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3225), 7, + ACTIONS(3433), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53000] = 14, + [72439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4551), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1379), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2441), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53058] = 15, + [72515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2045), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(4551), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1719), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1327), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4553), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [53118] = 14, + ACTIONS(4555), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [72591] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4049), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1202), 2, + STATE(1337), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4557), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3229), 7, + ACTIONS(4559), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53176] = 14, + [72667] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3405), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53234] = 14, + [72743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3217), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4561), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1200), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3219), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53292] = 14, + [72819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3233), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4563), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1203), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3235), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53350] = 14, + [72895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2327), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1268), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3119), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53408] = 14, + [72971] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3237), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3395), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53466] = 14, + [73047] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3237), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2335), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1270), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3239), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53524] = 14, + [73123] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3233), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4567), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1351), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4565), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4569), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53582] = 14, + [73199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3241), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4567), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1205), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3243), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53640] = 14, + [73275] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3241), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2364), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1352), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2362), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2366), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53698] = 14, + [73351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4571), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53756] = 14, + [73427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(871), 1, + sym_file_descriptor, + ACTIONS(4573), 1, + sym__concat, + STATE(1090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [73477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + sym__special_character, + STATE(955), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [73527] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3245), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4575), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53814] = 14, + [73603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3247), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2364), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53872] = 14, + [73679] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2356), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53930] = 14, + [73755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3249), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4579), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1344), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4577), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4581), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53988] = 14, + [73831] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3175), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4583), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54046] = 14, + [73907] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3251), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4585), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54104] = 14, + [73983] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4587), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54162] = 14, + [74059] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3255), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4587), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1347), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4589), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4591), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54220] = 14, + [74135] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3257), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4579), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54278] = 14, + [74211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4595), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1361), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4593), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4597), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54336] = 14, + [74287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3261), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4599), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54394] = 14, + [74363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3261), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4595), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1207), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3263), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54452] = 14, + [74439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3265), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3363), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54510] = 14, + [74515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3265), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4585), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1208), 2, + STATE(1365), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4601), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3267), 7, + ACTIONS(4603), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54568] = 14, + [74591] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1753), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4605), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54626] = 14, + [74667] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3155), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3371), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54684] = 14, + [74743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3149), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3371), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1355), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3369), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3373), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54742] = 14, + [74819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4607), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54800] = 14, + [74895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3137), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4609), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1212), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3139), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54858] = 14, + [74971] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2392), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54916] = 14, + [75047] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4607), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1210), 2, + STATE(1357), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4611), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3271), 7, + ACTIONS(4613), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54974] = 14, + [75123] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3137), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4617), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1566), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4615), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4619), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55032] = 15, + [75199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, - anon_sym_DOLLAR, - ACTIONS(1685), 1, - sym__special_character, - ACTIONS(1687), 1, - anon_sym_DQUOTE, - ACTIONS(1689), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, - anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(2034), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1719), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [55092] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2400), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55150] = 14, + [75275] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3273), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2613), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55208] = 14, + [75351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3069), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4617), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55266] = 14, + [75427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2979), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3343), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55324] = 14, + [75503] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + anon_sym_RBRACE, + ACTIONS(4635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4638), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(4641), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(4644), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(4650), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(4653), 1, anon_sym_BQUOTE, - ACTIONS(3275), 1, - anon_sym_RBRACE, + ACTIONS(4659), 1, + sym_test_operator, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(4621), 2, + sym_number, + sym_word, + ACTIONS(4647), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1237), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4624), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3277), 7, + ACTIONS(4632), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55382] = 14, + [75579] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3275), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4664), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1382), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4662), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4666), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55440] = 14, + [75655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3083), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3285), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1564), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3283), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3287), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55498] = 14, + [75731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3285), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1236), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3145), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55556] = 14, + [75807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4664), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1238), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3281), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55614] = 14, + [75883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2426), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1383), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2424), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2428), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55672] = 14, + [75959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3283), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2426), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1240), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3285), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55730] = 14, + [76035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(4668), 1, + sym__concat, + STATE(1090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3283), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55788] = 14, + sym_test_operator, + [76085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3287), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2418), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55846] = 14, + [76161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3289), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4670), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55904] = 14, + [76237] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3089), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4672), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55962] = 14, + [76313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3291), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56020] = 14, + ACTIONS(1926), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1924), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [76363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2999), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4674), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56078] = 14, + [76439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3293), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4678), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1395), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4676), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4680), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56136] = 14, + [76515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1930), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1928), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [76565] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3293), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4682), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1226), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3295), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56194] = 14, + [76641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3057), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4686), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1385), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4684), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4688), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56252] = 14, + [76717] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3297), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4690), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1273), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3299), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56310] = 14, + [76793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3077), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4690), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1388), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4692), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4694), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56368] = 14, + [76869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3301), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4686), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56426] = 14, + [76945] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3303), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4678), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56484] = 14, + [77021] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3305), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4672), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1398), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4696), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4698), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56542] = 14, + [77097] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3307), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4700), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56600] = 14, + [77173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(3469), 1, + sym_file_descriptor, + ACTIONS(4702), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1147), 1, + aux_sym__literal_repeat1, + ACTIONS(3467), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [77223] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3307), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4704), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1247), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3309), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56658] = 14, + [77299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3311), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4706), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56716] = 14, + [77375] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3311), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2450), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1248), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3313), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56774] = 14, + [77451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3297), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3311), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56832] = 14, + [77527] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2955), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2458), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1250), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2957), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56890] = 14, + [77603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2985), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4708), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56948] = 14, + [77679] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3315), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4710), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57006] = 14, + [77755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2967), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4714), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1410), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4712), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4716), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57064] = 14, - ACTIONS(3), 1, + [77831] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(4718), 1, sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3315), 1, - anon_sym_RBRACE, - STATE(2285), 1, + STATE(1162), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1249), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3317), 7, + ACTIONS(153), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [57122] = 14, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(750), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77881] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2961), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4714), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57180] = 14, + [77957] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2489), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1279), 2, + STATE(1411), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2487), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3321), 7, + ACTIONS(2491), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57238] = 14, + [78033] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2489), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57296] = 14, + [78109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3323), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2481), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1276), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3325), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57354] = 14, + [78185] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2961), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4720), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1272), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2963), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57412] = 14, + [78261] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2955), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4722), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57470] = 14, + [78337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3327), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4726), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1284), 2, + STATE(1415), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4724), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3329), 7, + ACTIONS(4728), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57528] = 14, + [78413] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3327), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4726), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57586] = 14, + [78489] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3323), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4722), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1416), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4730), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4732), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57644] = 14, + [78565] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3331), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4734), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1285), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3333), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57702] = 14, + [78641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3335), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4736), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57760] = 14, + [78717] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2943), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2513), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57818] = 14, + [78793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(852), 37, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57876] = 14, + sym_test_operator, + [78839] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1851), 1, + anon_sym_BQUOTE, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(4738), 1, + anon_sym_LF, + ACTIONS(1823), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4423), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(4740), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1817), 20, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [78901] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3337), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2521), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [78977] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4742), 1, + sym__concat, + STATE(1431), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [57934] = 14, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(865), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3339), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4746), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1437), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4744), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4748), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57992] = 15, + [79103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1685), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1687), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1689), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1760), 1, - aux_sym__literal_repeat1, - STATE(1964), 1, - sym__expression, - ACTIONS(1681), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1675), 3, + ACTIONS(3319), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1719), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1947), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [58052] = 14, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [79179] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4750), 1, + sym__concat, + STATE(1431), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(871), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(2281), 1, + sym__concat, + STATE(1380), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [79279] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3341), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3319), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1392), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3317), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3321), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58110] = 14, + [79355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2853), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4752), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58168] = 14, + [79431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2917), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4746), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58226] = 14, + [79507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3343), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2547), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1440), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2545), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2549), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58284] = 14, + [79583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2891), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4752), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1397), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4754), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4756), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [79659] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4758), 1, + sym__concat, + STATE(1431), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [58342] = 15, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(881), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2611), 1, - sym__special_character, - STATE(2116), 1, - aux_sym__literal_repeat1, - STATE(2374), 1, - sym__expression, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1949), 3, + ACTIONS(2547), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [58402] = 14, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [79785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3345), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3301), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58460] = 14, + [79861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2897), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3277), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58518] = 14, + [79937] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3269), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58576] = 14, + [80013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3349), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2539), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58634] = 14, + [80089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3345), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4761), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1211), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3351), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58692] = 14, + [80165] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2287), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4763), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1242), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2289), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58750] = 15, + [80241] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1821), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1823), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2408), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1813), 3, + ACTIONS(4765), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2118), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [58810] = 14, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [80317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2865), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4767), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58868] = 14, + [80393] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2847), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4771), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1438), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4769), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4773), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58926] = 14, + [80469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2785), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4775), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58984] = 14, + [80545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2779), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4775), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1439), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4777), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4779), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59042] = 14, + [80621] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3353), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4771), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1301), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3355), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59100] = 14, + [80697] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3353), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4781), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59158] = 14, + [80773] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2779), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3237), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1299), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2781), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59216] = 14, + [80849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3357), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3245), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1304), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3359), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59274] = 14, + [80925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3357), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3245), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1444), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3243), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3247), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59332] = 14, + [81001] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3361), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4783), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1307), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3363), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59390] = 14, + [81077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3361), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4783), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1445), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4785), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4787), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59448] = 14, + [81153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2829), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3219), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59506] = 14, + [81229] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3365), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3211), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59564] = 14, + [81305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3367), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4791), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1458), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4789), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4793), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59622] = 14, + [81381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3369), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4795), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59680] = 14, + [81457] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3371), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4797), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59738] = 14, + [81533] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3373), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4791), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59796] = 14, + [81609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3375), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4767), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1460), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4799), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4801), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59854] = 14, + [81685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3377), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4803), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59912] = 14, + [81761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4805), 1, + sym__concat, + STATE(1469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(863), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [81811] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3379), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4807), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59970] = 14, + [81887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3381), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2571), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60028] = 14, + [81963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4809), 1, + sym__concat, + STATE(1469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [82013] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3381), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2579), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1302), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3383), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [82089] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4811), 1, + sym__special_character, + STATE(1464), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [60086] = 14, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(927), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82139] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3385), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4816), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1472), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4814), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4818), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60144] = 14, + [82215] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3387), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4816), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60202] = 14, + [82291] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3387), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2605), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1305), 2, + STATE(1473), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2603), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3389), 7, + ACTIONS(2607), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60260] = 14, + [82367] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4822), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1454), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4820), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4824), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60318] = 14, + [82443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4826), 1, + sym__concat, + STATE(1469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [82493] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2605), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1306), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3393), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60376] = 14, + [82569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2753), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2597), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60434] = 14, + [82645] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3395), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4829), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60492] = 14, + [82721] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2715), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4831), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60550] = 15, + [82797] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2611), 1, - sym__special_character, - STATE(2116), 1, - aux_sym__literal_repeat1, - STATE(2196), 1, - sym__expression, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [60610] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2709), 1, + ACTIONS(4835), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1479), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4833), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4837), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60668] = 14, + [82873] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2735), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4839), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60726] = 14, + [82949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2697), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4835), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1312), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2699), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60784] = 14, + [83025] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2275), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4839), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1455), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4841), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4843), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60842] = 14, + [83101] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3397), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4831), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1480), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4845), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4847), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60900] = 14, + [83177] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3397), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4849), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1303), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3399), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60958] = 14, + [83253] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2811), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4851), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61016] = 14, + [83329] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3401), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2629), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61074] = 14, + [83405] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3401), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2637), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1311), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3403), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61132] = 14, + [83481] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2697), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4855), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1488), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4853), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4857), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61190] = 14, + [83557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3405), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4855), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1361), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3407), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61248] = 14, + [83633] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2691), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2663), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1489), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2661), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2665), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61306] = 14, + [83709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3409), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2663), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61364] = 14, + [83785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2655), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61422] = 14, + [83861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3405), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4859), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61480] = 14, + [83937] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4861), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61538] = 14, + [84013] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4865), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1359), 2, + STATE(1494), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4863), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3413), 7, + ACTIONS(4867), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61596] = 14, + [84089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2659), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4865), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1309), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2661), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61654] = 14, + [84165] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3415), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4861), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1495), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4869), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4871), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61712] = 14, + [84241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(4288), 1, + sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [84291] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1944), 1, + anon_sym_DOLLAR, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3415), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4873), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1308), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3417), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61770] = 14, + [84367] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2659), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4875), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61828] = 14, + [84443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2687), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61886] = 14, + [84519] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2695), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1358), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2675), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61944] = 14, + [84595] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3419), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4879), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1503), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4877), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4881), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62002] = 14, + [84671] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2645), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4879), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62060] = 14, + [84747] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2653), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2721), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1504), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2719), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2723), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62118] = 14, + [84823] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3421), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2721), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1371), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3423), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62176] = 14, + [84899] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2811), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2713), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1357), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2813), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62234] = 14, + [84975] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3425), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4883), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1365), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3427), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62292] = 14, + [85051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3425), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4885), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62350] = 14, + [85127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2565), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4889), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1509), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4887), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4891), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62408] = 14, + [85203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3421), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4822), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62466] = 14, + [85279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2501), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4889), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62524] = 14, + [85355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3429), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4885), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1377), 2, + STATE(1510), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4893), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3431), 7, + ACTIONS(4895), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62582] = 14, + [85431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4897), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62640] = 14, + [85507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3433), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4899), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62698] = 14, + [85583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3435), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2745), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1366), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3437), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62756] = 14, + [85659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3435), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2755), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62814] = 14, + [85735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3429), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4901), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62872] = 14, + [85811] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3439), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4905), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1521), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4903), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4907), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62930] = 14, + [85887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2625), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3179), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62988] = 14, + [85963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3441), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4905), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63046] = 14, + [86039] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2631), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2781), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1522), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2779), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2783), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63104] = 14, + [86115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3443), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2781), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1385), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3445), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63162] = 14, + [86191] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3443), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2773), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63220] = 14, + [86267] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3447), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3187), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63278] = 14, + [86343] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3449), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4909), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63336] = 14, + [86419] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3451), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4911), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63394] = 14, + [86495] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3453), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4915), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1526), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4913), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4917), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63452] = 14, + [86571] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3455), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4915), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63510] = 14, + [86647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2665), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4911), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1527), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4919), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4921), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63568] = 14, + [86723] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3457), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4923), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63626] = 15, + [86799] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(1946), 1, + sym__special_character, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2611), 1, - sym__special_character, - STATE(2116), 1, - aux_sym__literal_repeat1, - STATE(2217), 1, - sym__expression, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(1949), 3, + ACTIONS(4925), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [63686] = 14, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [86875] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2805), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1384), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2641), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63744] = 14, + [86951] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3459), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2813), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63802] = 14, + [87027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3433), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4929), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1209), 2, + STATE(1541), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4927), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3461), 7, + ACTIONS(4931), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63860] = 14, + [87103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3459), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4929), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1367), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3463), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63918] = 14, + [87179] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3465), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2839), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1543), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2837), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2841), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63976] = 14, + [87255] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3467), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2839), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64034] = 14, + [87331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3469), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3187), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1506), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3185), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3189), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64092] = 14, + [87407] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3469), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4933), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1332), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3471), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64150] = 14, + [87483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3473), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4933), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1386), 2, + STATE(1513), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4935), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3475), 7, + ACTIONS(4937), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64208] = 14, + [87559] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3473), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4941), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1402), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4939), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4943), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64266] = 14, + [87635] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3477), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3161), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1387), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3479), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64324] = 14, + [87711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3477), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2831), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64382] = 14, + [87787] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3481), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4945), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64440] = 14, + [87863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3483), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4947), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64498] = 14, + [87939] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3485), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3153), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64556] = 14, + [88015] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3487), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4949), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64614] = 14, + [88091] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2553), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64672] = 14, + [88167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3487), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4953), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1343), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3489), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64730] = 14, + [88243] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3491), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4957), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1544), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4955), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4959), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64788] = 14, + [88319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3491), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4963), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1368), 2, + STATE(1552), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4961), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3493), 7, + ACTIONS(4965), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64846] = 14, + [88395] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4963), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1374), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1873), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64904] = 14, + [88471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3495), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4949), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1555), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4967), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4969), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64962] = 14, + [88547] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3495), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4971), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1369), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3497), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65020] = 14, + [88623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(1871), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4971), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1545), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4973), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4975), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65078] = 15, + [88699] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2461), 1, - sym__special_character, - ACTIONS(2463), 1, - anon_sym_DQUOTE, - ACTIONS(2465), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, - anon_sym_BQUOTE, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2392), 1, - sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2178), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2368), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [65138] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2547), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4977), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65196] = 14, + [88775] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3499), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4957), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65254] = 14, + [88851] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2433), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4979), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65312] = 15, + [88927] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(2459), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(2463), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2412), 1, - sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, + ACTIONS(1960), 1, sym_test_operator, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 3, + ACTIONS(4981), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym__literal_repeat1, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2178), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2368), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [65372] = 14, + ACTIONS(4051), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [89003] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2287), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4945), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1403), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4983), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4985), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65430] = 14, + [89079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3499), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2863), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1378), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3501), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [89155] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_QMARK, + ACTIONS(4989), 1, + anon_sym_AMP, + ACTIONS(4059), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3683), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4987), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + ACTIONS(3681), 28, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, anon_sym_PERCENT, - [65488] = 14, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [89209] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3503), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2871), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65546] = 14, + [89285] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACE, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4993), 1, + anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1567), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4991), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4995), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65604] = 14, + [89361] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2529), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4993), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65662] = 14, + [89437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2409), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2897), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1568), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2895), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(2899), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65720] = 14, + [89513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2897), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65778] = 14, + [89589] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2507), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4941), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65836] = 14, + [89665] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3505), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2889), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1436), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3507), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65894] = 14, + [89741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3505), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4997), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65952] = 14, + [89817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2481), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(4999), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66010] = 14, + [89893] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3509), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5001), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66068] = 14, + [89969] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3509), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3121), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1274), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3511), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, + [90045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 38, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, anon_sym_PERCENT, - [66126] = 14, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2475), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3129), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66184] = 14, + [90165] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2363), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3129), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1553), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3127), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3131), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66242] = 14, + [90241] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2343), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5003), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66300] = 14, + [90317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2369), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5003), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1554), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5005), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5007), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66358] = 14, + [90393] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3513), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3103), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66416] = 14, + [90469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3515), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3095), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66474] = 14, + [90545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3517), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5011), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1599), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5009), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5013), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66532] = 14, + [90621] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3519), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5015), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66590] = 14, + [90697] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3519), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5017), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1419), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3521), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66648] = 14, + [90773] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3523), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5021), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1578), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5019), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5023), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66706] = 14, + [90849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3523), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5025), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1420), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3525), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66764] = 14, + [90925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2507), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5025), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1435), 2, + STATE(1579), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5027), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2509), 7, + ACTIONS(5029), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66822] = 14, + [91001] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3527), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5021), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1438), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3529), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66880] = 14, + [91077] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3527), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5031), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66938] = 14, + [91153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2349), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3063), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66996] = 14, + [91229] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2325), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3071), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1422), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2327), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67054] = 14, + [91305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3531), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3071), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1583), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3069), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3073), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67112] = 14, + [91381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3533), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5033), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1439), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3535), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67170] = 14, + [91457] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3531), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5033), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 2, + STATE(1584), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5035), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3537), 7, + ACTIONS(5037), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67228] = 14, + [91533] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2325), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3045), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67286] = 14, + [91609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3533), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3037), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67344] = 14, + [91685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3539), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5011), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67402] = 14, + [91761] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5039), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67460] = 14, + [91837] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3541), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5041), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67518] = 14, + [91913] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3543), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5045), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1593), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5043), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5047), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67576] = 14, + [91989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2337), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5049), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67634] = 14, + [92065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3545), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5049), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1483), 2, + STATE(1594), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5051), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3547), 7, + ACTIONS(5053), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67692] = 14, + [92141] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2355), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5001), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1600), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5055), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5057), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67750] = 14, + [92217] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2313), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5059), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67808] = 14, + [92293] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2299), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5061), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67866] = 14, + [92369] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2249), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5045), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67924] = 14, + [92445] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3545), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5063), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67982] = 14, + [92521] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2261), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3005), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68040] = 14, + [92597] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2337), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3013), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1482), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2339), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68098] = 14, + [92673] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2269), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(3013), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1601), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(3011), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(3015), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68156] = 14, + [92749] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2255), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5065), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68214] = 14, + [92825] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2281), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5065), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1602), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5067), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5069), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68272] = 14, + [92901] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3549), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2987), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1526), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3551), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68330] = 14, + [92977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2331), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2979), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, + ACTIONS(1958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1373), 3, + sym_concatenation, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68388] = 14, + [93053] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3549), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2921), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68446] = 15, + [93129] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1936), 1, anon_sym_LPAREN, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1821), 1, - sym__special_character, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, + ACTIONS(1942), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2422), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1813), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [68506] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2307), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5071), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68564] = 14, + [93205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3553), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5073), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1477), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3555), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68622] = 14, + [93281] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3553), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5077), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1611), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5075), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5079), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68680] = 14, + [93357] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3557), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5081), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1512), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3559), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68738] = 14, + [93433] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3557), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5081), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1612), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5083), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5085), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68796] = 14, + [93509] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_RBRACE, - ACTIONS(3569), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(3572), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(3575), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(3578), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3584), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5077), 1, + anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(3587), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3561), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3566), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68854] = 14, + [93585] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2255), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5087), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1476), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2257), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68912] = 14, + [93661] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2281), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2947), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1525), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2283), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68970] = 14, + [93737] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3590), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2955), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1540), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3592), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69028] = 14, + [93813] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2307), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2955), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1511), 2, + STATE(1616), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(2953), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2309), 7, + ACTIONS(2957), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69086] = 14, + [93889] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3590), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5089), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69144] = 14, + [93965] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(2183), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(5089), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1617), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(5091), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + ACTIONS(5093), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69202] = 14, + [94041] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1936), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(1946), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(3594), 1, + ACTIONS(1960), 1, + sym_test_operator, + ACTIONS(2929), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(1932), 2, + sym_number, + sym_word, + ACTIONS(1950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1484), 2, + STATE(1373), 3, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_array, + aux_sym_expansion_repeat2, + ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_POUND, + STATE(2252), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3596), 7, + ACTIONS(4051), 8, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69260] = 14, + [94117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5095), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1624), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(922), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2213), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69318] = 14, + sym_test_operator, + [94166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(988), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3598), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1478), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3600), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69376] = 14, + sym_test_operator, + [94211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(970), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(968), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3598), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69434] = 14, + sym_test_operator, + [94256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(972), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3602), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1479), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3604), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69492] = 14, + sym_test_operator, + [94301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(976), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3594), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69550] = 14, + sym_test_operator, + [94346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(974), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(972), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3606), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69608] = 14, + sym_test_operator, + [94391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(978), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(976), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2613), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69666] = 14, + sym_test_operator, + [94436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(982), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(980), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3602), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69724] = 14, + sym_test_operator, + [94481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(986), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(984), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3608), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69782] = 14, + sym_test_operator, + [94526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(990), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(988), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69840] = 14, + sym_test_operator, + [94571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(996), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(994), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3612), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69898] = 14, + sym_test_operator, + [94616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69956] = 14, + sym_test_operator, + [94661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1000), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(998), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3614), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1488), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3616), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70014] = 14, + sym_test_operator, + [94706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3614), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [94751] = 21, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(43), 1, + anon_sym_DOLLAR, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, + anon_sym_BQUOTE, + ACTIONS(59), 1, + sym_comment, + ACTIONS(61), 1, + sym_test_operator, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(1011), 1, + sym_variable_name, + ACTIONS(5098), 1, + sym__special_character, + STATE(387), 1, + sym_command_name, + STATE(1639), 1, + aux_sym__literal_repeat1, + STATE(2130), 1, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(4009), 1, + sym_subscript, + ACTIONS(49), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(51), 2, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(57), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(947), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70072] = 14, + [94832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5100), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1666), 1, + aux_sym__literal_repeat1, + ACTIONS(178), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(151), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3618), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70130] = 14, + sym_test_operator, + [94881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(900), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(898), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3620), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70188] = 14, + sym_test_operator, + [94926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(896), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(894), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3622), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70246] = 14, + sym_test_operator, + [94971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2105), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70304] = 14, + sym_test_operator, + [95016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1004), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1002), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70362] = 14, + sym_test_operator, + [95061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3624), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70420] = 14, + sym_test_operator, + [95106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3626), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70478] = 15, + sym_test_operator, + [95151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(931), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(929), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2196), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [70538] = 14, + sym_test_operator, + [95196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(980), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2189), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + sym_word, + sym_test_operator, + [95241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + sym__special_character, + STATE(1892), 1, + aux_sym__literal_repeat1, + ACTIONS(1899), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1897), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70596] = 15, + sym_test_operator, + [95290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1959), 1, sym__special_character, - ACTIONS(1961), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2359), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [70656] = 15, + sym_test_operator, + [95335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(5104), 1, + sym__concat, + STATE(1897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3465), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3463), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1821), 1, sym__special_character, - ACTIONS(1823), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2357), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1813), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [70716] = 14, + sym_test_operator, + [95384] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5104), 1, + sym__concat, + STATE(1894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3469), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3467), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3628), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70774] = 14, + sym_test_operator, + [95433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(912), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(910), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70832] = 14, + sym_test_operator, + [95478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(916), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(914), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2195), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70890] = 14, + sym_test_operator, + [95523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(937), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2067), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70948] = 14, + sym_test_operator, + [95568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(929), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3630), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71006] = 14, + sym_test_operator, + [95613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(920), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(918), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3630), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1474), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3632), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71064] = 14, + sym_test_operator, + [95658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71122] = 14, + sym_test_operator, + [95703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5100), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1666), 1, + aux_sym__literal_repeat1, + ACTIONS(1875), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1873), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1489), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3636), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71180] = 14, + sym_test_operator, + [95752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(852), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71238] = 14, + sym_test_operator, + [95797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(5106), 1, + sym__concat, + STATE(1695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2151), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71296] = 14, + sym_test_operator, + [95846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(902), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3638), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1515), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3640), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71354] = 14, + sym_test_operator, + [95891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1002), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3638), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71412] = 14, + sym_test_operator, + [95936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2151), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1514), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71470] = 14, - ACTIONS(3), 1, + sym_test_operator, + [95981] = 21, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(404), 1, anon_sym_BQUOTE, - ACTIONS(3217), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(408), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + ACTIONS(5108), 1, + sym__special_character, + STATE(334), 1, + sym_command_name, + STATE(981), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1659), 1, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(4009), 1, + sym_subscript, + ACTIONS(398), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(400), 2, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(406), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(924), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71528] = 14, + [96062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1536), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3644), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71586] = 14, + sym_test_operator, + [96107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5110), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1666), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(922), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71644] = 14, + sym_test_operator, + [96156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(984), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71702] = 14, + sym_test_operator, + [96201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(980), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3646), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71760] = 14, + sym_test_operator, + [96246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(976), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3648), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71818] = 14, + sym_test_operator, + [96291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(972), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3650), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1517), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3652), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71876] = 14, + sym_test_operator, + [96336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(968), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3650), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71934] = 14, + sym_test_operator, + [96381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(964), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71992] = 14, + sym_test_operator, + [96426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3656), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72050] = 14, + sym_test_operator, + [96471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(886), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3658), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72108] = 14, + sym_test_operator, + [96516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5113), 1, + sym__concat, + STATE(1832), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1869), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(2081), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72166] = 14, + sym_test_operator, + [96565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(956), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2073), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72224] = 14, + sym_test_operator, + [96610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5113), 1, + sym__concat, + STATE(1829), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1882), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3622), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1317), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3660), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72282] = 15, + sym_test_operator, + [96659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1821), 1, sym__special_character, - ACTIONS(1823), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2356), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1813), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [72342] = 14, + sym_test_operator, + [96704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2495), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1413), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2497), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72400] = 14, + sym_test_operator, + [96749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2415), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72458] = 14, + sym_test_operator, + [96794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(3469), 1, + sym_file_descriptor, + ACTIONS(5115), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1732), 1, + aux_sym__literal_repeat1, + ACTIONS(3467), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3662), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1541), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3664), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72516] = 14, + sym_test_operator, + [96843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(952), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3662), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72574] = 14, + sym_test_operator, + [96888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(948), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3666), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72632] = 14, + sym_test_operator, + [96933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2047), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1498), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72690] = 14, + sym_test_operator, + [96978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 1, + sym_file_descriptor, + ACTIONS(5117), 1, + sym__concat, + STATE(1685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3668), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72748] = 14, + sym_test_operator, + [97027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1937), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72806] = 14, + sym_test_operator, + [97072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(888), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(886), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3670), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72864] = 14, + sym_test_operator, + [97117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3668), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1494), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3672), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72922] = 14, + sym_test_operator, + [97162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5120), 1, sym__special_character, - ACTIONS(1741), 1, + STATE(1689), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(922), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2047), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72980] = 14, + sym_test_operator, + [97211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(937), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1891), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73038] = 14, + sym_test_operator, + [97256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(871), 1, + sym_file_descriptor, + ACTIONS(5123), 1, + sym__concat, + STATE(1685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73096] = 14, + sym_test_operator, + [97305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(920), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(918), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73154] = 14, + sym_test_operator, + [97350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3674), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73212] = 14, + sym_test_operator, + [97395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3676), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73270] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + ACTIONS(958), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(956), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3678), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1578), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3680), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73328] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3129), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73386] = 14, + sym_test_operator, + [97440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(865), 1, + sym_file_descriptor, + ACTIONS(5125), 1, + sym__concat, + STATE(1685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3682), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73444] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73502] = 14, + sym_test_operator, + [97489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(894), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2013), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73560] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3678), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73618] = 14, + sym_test_operator, + [97534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(898), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73676] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2401), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73736] = 15, + sym_test_operator, + [97579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(916), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(914), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1821), 1, sym__special_character, - ACTIONS(1823), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2364), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1813), 3, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73796] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3670), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1404), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3686), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73854] = 14, + sym_test_operator, + [97624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(912), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(910), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3688), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1564), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3690), 7, + sym_test_operator, + [97669] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 13, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [73912] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, - anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2425), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(904), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97714] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1002), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1004), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97759] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1000), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97804] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(994), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(996), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97849] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(988), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(990), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97894] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(984), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(986), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97939] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(980), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(982), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97984] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(976), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(978), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98029] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(972), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(974), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98074] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(968), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(970), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1867), 1, + sym_file_descriptor, + ACTIONS(1865), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [98164] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(964), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(966), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(929), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [98254] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(962), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98299] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(886), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(888), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(906), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [98389] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(956), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(958), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(890), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [98479] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98524] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(952), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(954), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98569] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(948), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(950), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(898), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [98659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(894), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [98704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [98749] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5131), 1, + anon_sym_RPAREN, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5139), 1, + sym__special_character, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2480), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5129), 5, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_POUND, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(5133), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + [98822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 1, + sym__concat, + STATE(1735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(863), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [98871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(948), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [98916] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5155), 1, + sym__concat, + STATE(1735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99010] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(877), 24, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [99055] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(918), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(920), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + sym__special_character, + STATE(1892), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1882), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [99149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 1, + sym_file_descriptor, + ACTIONS(5157), 1, + sym__special_character, + STATE(1732), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [99198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(952), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(929), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [99288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + sym__concat, + STATE(1735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 1, + sym_file_descriptor, + ACTIONS(1924), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(937), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [99427] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(914), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(916), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99472] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(910), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(912), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99607] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(906), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(908), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [99742] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(890), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(892), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99787] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(898), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(900), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99832] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(894), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(896), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99877] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(879), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(881), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99922] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(929), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(931), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99967] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(937), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(939), 24, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100012] = 21, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(286), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + anon_sym_DOLLAR, + ACTIONS(292), 1, + anon_sym_DQUOTE, + ACTIONS(298), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(300), 1, + anon_sym_BQUOTE, + ACTIONS(304), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + ACTIONS(5163), 1, + sym__special_character, + STATE(329), 1, + sym_command_name, + STATE(807), 1, + aux_sym__literal_repeat1, + STATE(1418), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(294), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(296), 2, + sym_number, + sym_word, + ACTIONS(302), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(480), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(952), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(984), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(988), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(948), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(898), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(894), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(894), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100457] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(910), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(912), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(898), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100547] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(914), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(916), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100592] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(937), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(939), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100637] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(929), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(931), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100682] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(918), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(920), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(994), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(890), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(998), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [100952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(956), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [100997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(906), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [101087] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 14, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(877), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101177] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101222] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(879), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(881), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101267] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(894), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(896), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101312] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(898), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(900), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101357] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(948), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(950), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(964), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101447] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(952), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(954), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101492] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(935), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101537] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(890), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(892), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, + sym__special_character, + STATE(1666), 1, + aux_sym__literal_repeat1, + ACTIONS(1930), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1928), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [101631] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(956), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(958), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101676] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(906), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(908), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101721] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(886), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(888), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101766] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(962), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101811] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(964), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(966), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(910), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [101901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(914), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [101946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(918), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [101991] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(968), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(970), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102081] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(972), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(974), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(948), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102216] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(976), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(978), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(952), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + sym_file_descriptor, + ACTIONS(5167), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(1928), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(956), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(910), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102490] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(980), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(982), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(914), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(886), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102715] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(984), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(986), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + sym__concat, + STATE(1832), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(875), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(960), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [102899] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(988), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(990), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 36, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [102989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(968), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(929), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(972), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(918), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103169] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(994), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(996), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(976), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103259] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1000), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + sym__concat, + STATE(1823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(879), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(980), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(984), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(988), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(886), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103578] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5172), 1, + sym__concat, + STATE(1823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(869), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(994), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(998), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + sym__concat, + STATE(1823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(863), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1002), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(906), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(956), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [103946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(910), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [103991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5176), 1, + sym__special_character, + STATE(1624), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(914), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(918), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(948), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(952), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(886), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 1, + sym__concat, + STATE(1897), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [104494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(964), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104584] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1002), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1004), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [104629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(968), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(972), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(976), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104764] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(904), 24, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [104809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(980), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(984), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(988), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [104944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(910), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [104989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(914), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(937), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1002), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + sym__concat, + STATE(1728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105263] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(902), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(929), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(918), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105447] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 14, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(877), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [105492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 1, + sym__special_character, + STATE(1689), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 1, + sym_file_descriptor, + ACTIONS(5180), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 1, + sym__concat, + STATE(1874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(894), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + sym_file_descriptor, + ACTIONS(5167), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(1873), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [105823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(948), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(952), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [105958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(890), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(898), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(890), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [106093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(968), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [106138] = 21, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + ACTIONS(5186), 1, + sym__special_character, + STATE(370), 1, + sym_command_name, + STATE(1886), 1, + aux_sym__literal_repeat1, + STATE(1938), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(202), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(204), 2, + sym_number, + sym_word, + ACTIONS(210), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1166), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(178), 1, + sym_file_descriptor, + ACTIONS(5167), 1, + sym__special_character, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(151), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [106268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(956), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(906), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [106403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(886), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(960), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 1, + sym__special_character, + STATE(1892), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(922), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(964), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106587] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + sym__concat, + STATE(1874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(968), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(972), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5193), 1, + sym__concat, + STATE(1874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(863), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(976), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106820] = 21, + ACTIONS(59), 1, + sym_comment, + ACTIONS(63), 1, + sym_file_descriptor, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, + ACTIONS(212), 1, + sym_test_operator, + ACTIONS(1011), 1, + sym_variable_name, + ACTIONS(5186), 1, + sym__special_character, + STATE(412), 1, + sym_command_name, + STATE(1886), 1, + aux_sym__literal_repeat1, + STATE(1938), 1, + sym_concatenation, + STATE(4009), 1, + sym_subscript, + ACTIONS(202), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(204), 2, + sym_number, + sym_word, + ACTIONS(210), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(37), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(39), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1166), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(980), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(902), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [106991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1002), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(998), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(984), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1002), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [107171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(902), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [107216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(994), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(988), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 1, + sym__special_character, + STATE(1689), 1, + aux_sym__literal_repeat1, + ACTIONS(1899), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1897), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3465), 1, + sym_file_descriptor, + ACTIONS(5106), 1, + sym__concat, + STATE(1695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3463), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 1, + sym_file_descriptor, + ACTIONS(5106), 1, + sym__concat, + STATE(1691), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3467), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107453] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5195), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107505] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3709), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4124), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [107549] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 1, + sym_file_descriptor, + ACTIONS(5207), 1, + sym__special_character, + STATE(2109), 1, + aux_sym__literal_repeat1, + ACTIONS(3467), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107597] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107645] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107693] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_RBRACK, + ACTIONS(5225), 1, + anon_sym_QMARK, + ACTIONS(5227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107745] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5229), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107797] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5233), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107849] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5235), 4, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107897] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5221), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [107949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(910), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [107993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(914), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(937), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(929), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(918), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108213] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5239), 1, + anon_sym_RPAREN, + ACTIONS(5245), 1, + anon_sym_QMARK, + ACTIONS(5247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108265] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5249), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108317] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(854), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1915), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [108361] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5251), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108413] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5253), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108553] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(948), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(952), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(861), 1, + sym_file_descriptor, + ACTIONS(852), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [108733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1867), 1, + sym_file_descriptor, + ACTIONS(1865), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [108821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(898), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108865] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5261), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [108917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(890), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [108961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109005] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5263), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109057] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(956), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109149] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5245), 1, + anon_sym_QMARK, + ACTIONS(5265), 1, + anon_sym_RPAREN, + ACTIONS(5247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109201] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5267), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(906), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(886), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109385] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5225), 1, + anon_sym_QMARK, + ACTIONS(5267), 1, + anon_sym_RBRACK, + ACTIONS(5227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(960), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109481] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5271), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109533] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5267), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(964), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [109673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5273), 1, + sym__special_character, + STATE(2039), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1882), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [109721] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109769] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5275), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109821] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [109869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(968), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [109957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(972), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(976), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(980), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(984), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(988), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110177] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3709), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4124), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [110221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(994), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(998), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1002), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(902), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110397] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5277), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 1, + sym__special_character, + STATE(1976), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(922), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [110497] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5282), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110549] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5284), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110601] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_QMARK, + ACTIONS(5286), 1, + anon_sym_COLON, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5213), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5209), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5211), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110653] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5288), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [110749] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5290), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110801] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5292), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(937), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [110897] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5294), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [110949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(929), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [110993] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5296), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [111045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(879), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(894), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(898), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(890), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(906), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111309] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5298), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [111361] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5300), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [111413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(886), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(910), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111545] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5235), 4, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [111593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(914), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 1, + sym_file_descriptor, + ACTIONS(1924), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(918), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5302), 1, + sym__special_character, + STATE(2003), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(922), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(933), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(948), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(952), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(933), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(902), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [111993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1002), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(998), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112081] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5305), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(994), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(988), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(960), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4533), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [112353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(980), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(976), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(972), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(968), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112529] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5307), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4513), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [112625] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5309), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(964), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(984), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112765] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5311), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112817] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112869] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5313), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [112921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(886), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [112965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(960), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(952), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(948), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1924), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(964), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(968), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(972), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(933), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113361] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 1, + sym__special_character, + STATE(2039), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(922), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(976), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(918), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(980), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(984), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(988), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(914), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(910), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(994), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(998), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1002), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(902), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113893] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5318), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [113945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(906), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [113989] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5320), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114041] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5322), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114093] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5324), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114145] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5326), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114197] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [114241] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [114285] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3949), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4459), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [114329] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5328), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(890), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(898), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(894), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114513] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5330), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114565] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114613] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(879), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114705] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5332), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [114801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [114845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(929), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(937), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [114933] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5334), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [114985] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5336), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115037] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5338), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115089] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5340), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115141] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5245), 1, + anon_sym_QMARK, + ACTIONS(5342), 1, + anon_sym_RPAREN, + ACTIONS(5247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115193] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5235), 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115241] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5344), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(937), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115337] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5235), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(929), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(879), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(894), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(898), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [115605] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5346), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115657] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5348), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115709] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5350), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115761] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5352), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115813] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115861] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5215), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115909] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5245), 1, + anon_sym_QMARK, + ACTIONS(5354), 1, + anon_sym_RPAREN, + ACTIONS(5247), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5243), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5237), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5241), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [115961] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5356), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116013] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5358), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(890), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, + sym__special_character, + STATE(2003), 1, + aux_sym__literal_repeat1, + ACTIONS(1884), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1882), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [116157] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5362), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(906), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116253] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(854), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1915), 23, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [116297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(894), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116341] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5364), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [116437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(910), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(914), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1867), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1865), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [116569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(918), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116613] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5366), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 1, + sym_file_descriptor, + ACTIONS(5368), 1, + sym__special_character, + STATE(2109), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116757] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [116809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(948), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5373), 1, + sym__special_character, + STATE(1976), 1, + aux_sym__literal_repeat1, + ACTIONS(3469), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(3467), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(952), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(933), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [116989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(956), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(886), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(960), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117121] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5375), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [117173] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5225), 1, + anon_sym_QMARK, + ACTIONS(5375), 1, + anon_sym_RBRACK, + ACTIONS(5227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5217), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5219), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [117225] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5377), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [117277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(964), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(968), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(972), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(976), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117453] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5375), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [117505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(980), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(984), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(988), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(861), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(852), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [117681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(994), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(998), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1002), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(902), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [117857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(956), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [117901] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_QMARK, + ACTIONS(5379), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5205), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5201), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5197), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5199), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [117953] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5259), 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5235), 4, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5255), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5257), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + sym_test_operator, + [118001] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [118045] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2370), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4461), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [118089] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3949), 13, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4459), 23, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [118133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(956), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + sym_word, + sym_test_operator, + [118177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73972] = 15, + sym_test_operator, + [118220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1871), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1869), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1961), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [118263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + sym_file_descriptor, + ACTIONS(875), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(2611), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + sym_test_operator, + [118306] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, + anon_sym_DOLLAR, + ACTIONS(734), 1, sym__special_character, - STATE(2116), 1, + ACTIONS(736), 1, + anon_sym_DQUOTE, + ACTIONS(738), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(740), 1, + anon_sym_BQUOTE, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2355), 1, + STATE(937), 1, sym__expression, - ACTIONS(1969), 2, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1949), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(5381), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [74032] = 15, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118379] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5385), 1, + anon_sym_DQUOTE, + ACTIONS(5387), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_string, + ACTIONS(844), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5383), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [118430] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(2459), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(2463), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - STATE(2144), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2375), 1, + STATE(1260), 1, sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2471), 2, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2453), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2178), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2368), 6, + ACTIONS(5389), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [74092] = 14, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4515), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4513), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [118546] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5385), 1, + anon_sym_DQUOTE, + ACTIONS(5387), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_string, + ACTIONS(838), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5383), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [118597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1869), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [118640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4533), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3688), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74150] = 14, + sym_test_operator, + [118683] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(2019), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1570), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5381), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74208] = 15, + [118756] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1961), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - STATE(2019), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2379), 1, + STATE(938), 1, sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(5391), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [74268] = 14, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(875), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1561), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2039), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74326] = 14, + sym_test_operator, + [118872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4513), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3692), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1570), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3694), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74384] = 15, + sym_test_operator, + [118915] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, + ACTIONS(724), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1961), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - STATE(2019), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2241), 1, + STATE(941), 1, sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(5393), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [74444] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1577), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3189), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74502] = 14, + [118988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3692), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + aux_sym__simple_variable_name_token1, + STATE(2292), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, + ACTIONS(5395), 8, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 10, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74560] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, + sym_word, + ACTIONS(844), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(3696), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1593), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3698), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74618] = 14, + sym_test_operator, + [119041] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(3696), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(940), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5401), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74676] = 14, + [119114] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(3105), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1570), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5401), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74734] = 14, + [119187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3700), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1610), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + aux_sym__simple_variable_name_token1, + STATE(2292), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3702), 7, - anon_sym_EQ, + ACTIONS(5395), 8, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 10, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74792] = 14, + sym_word, + ACTIONS(838), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [119240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(877), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(875), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3704), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74850] = 14, + sym_test_operator, + [119283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(4535), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4533), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3706), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1597), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3708), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74908] = 14, + sym_test_operator, + [119326] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(3710), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1570), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5403), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74966] = 14, + [119399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(734), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(736), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(738), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(3712), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(744), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1558), 1, + sym__expression, + ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + ACTIONS(722), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5403), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, + [119472] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5385), 1, + anon_sym_DQUOTE, + ACTIONS(5387), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_string, + ACTIONS(844), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5383), 9, + anon_sym_BANG, anon_sym_DASH, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75024] = 14, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119522] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5409), 1, + anon_sym_POUND, + ACTIONS(5411), 1, + aux_sym__simple_variable_name_token1, + STATE(2408), 1, + sym_string, + ACTIONS(830), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + sym_number, + sym_word, + ACTIONS(5405), 8, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1739), 1, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(838), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3700), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75082] = 14, + sym_test_operator, + [119574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5409), 1, + anon_sym_POUND, + ACTIONS(5411), 1, + aux_sym__simple_variable_name_token1, + STATE(2408), 1, + sym_string, + ACTIONS(842), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + sym_number, + sym_word, + ACTIONS(5405), 8, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1739), 1, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(844), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3706), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + sym_test_operator, + [119626] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5415), 1, + anon_sym_DQUOTE, + ACTIONS(5417), 1, + aux_sym__simple_variable_name_token1, + STATE(2591), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, + ACTIONS(844), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5413), 9, + anon_sym_BANG, anon_sym_DASH, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75140] = 14, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [119676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5385), 1, + anon_sym_DQUOTE, + ACTIONS(5387), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_string, + ACTIONS(838), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5383), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119726] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5415), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5417), 1, + aux_sym__simple_variable_name_token1, + STATE(2591), 1, + sym_string, + ACTIONS(838), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5413), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(3714), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + [119776] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5423), 1, + aux_sym__simple_variable_name_token1, + STATE(2756), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, + ACTIONS(838), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5419), 9, + anon_sym_BANG, anon_sym_DASH, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75198] = 14, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + ACTIONS(5423), 1, + aux_sym__simple_variable_name_token1, + STATE(2756), 1, + sym_string, + ACTIONS(844), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5419), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [119874] = 19, + ACTIONS(59), 1, + sym_comment, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, + anon_sym_DOLLAR, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(3716), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + ACTIONS(5427), 1, + sym_regex, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2139), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75256] = 14, - ACTIONS(3), 1, + [119946] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3718), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5429), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2075), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75314] = 14, - ACTIONS(3), 1, + [120018] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3718), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5431), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2090), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1566), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3720), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75372] = 14, - ACTIONS(3), 1, + [120090] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5431), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3722), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(801), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75430] = 14, - ACTIONS(3), 1, + [120162] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3105), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5451), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2074), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1596), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3107), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75488] = 14, - ACTIONS(3), 1, + [120234] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3724), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5453), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2073), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1615), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3726), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75546] = 14, - ACTIONS(3), 1, + [120306] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3724), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5455), 1, + anon_sym_RPAREN_RPAREN, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(918), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75604] = 14, - ACTIONS(3), 1, + [120378] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3728), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5457), 1, + sym_regex, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1274), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75662] = 14, - ACTIONS(3), 1, + [120450] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3722), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5459), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2089), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1567), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3730), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75720] = 14, - ACTIONS(3), 1, + [120522] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3732), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5461), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2087), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1601), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3734), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75778] = 14, - ACTIONS(3), 1, + [120594] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3732), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5463), 1, + anon_sym_RPAREN_RPAREN, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(700), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75836] = 14, - ACTIONS(3), 1, + [120666] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3736), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5465), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2095), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1604), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3738), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75894] = 15, - ACTIONS(3), 1, + [120738] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1961), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - STATE(2019), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5467), 1, + sym_regex, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2396), 1, + STATE(902), 1, sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(5447), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [75954] = 14, - ACTIONS(3), 1, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [120810] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5469), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2108), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1572), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1927), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76012] = 15, - ACTIONS(3), 1, + [120882] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1821), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1823), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - STATE(2165), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5471), 1, + anon_sym_RPAREN_RPAREN, + STATE(438), 1, aux_sym__literal_repeat1, - STATE(2403), 1, + STATE(917), 1, sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1813), 3, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2118), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2362), 6, + ACTIONS(5447), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(810), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76072] = 14, - ACTIONS(3), 1, + STATE(437), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [120954] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3740), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5455), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2088), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76130] = 15, - ACTIONS(3), 1, + [121026] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2217), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, + ACTIONS(770), 1, sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(5457), 1, + sym_regex, + ACTIONS(5473), 1, + sym__special_character, + STATE(1274), 1, + sym__expression, + STATE(1405), 1, + aux_sym__literal_repeat1, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(956), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76190] = 14, - ACTIONS(3), 1, + STATE(482), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121098] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3740), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5451), 1, + anon_sym_RPAREN_RPAREN, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(916), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1571), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3742), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76248] = 15, - ACTIONS(3), 1, + [121170] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(2611), 1, + ACTIONS(798), 1, sym__special_character, - STATE(2116), 1, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5475), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - STATE(2410), 1, + STATE(1994), 1, sym__expression, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1949), 3, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(956), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76308] = 15, - ACTIONS(3), 1, + STATE(482), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121242] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2459), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, - sym__special_character, - ACTIONS(2463), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2420), 1, - sym__expression, - ACTIONS(2457), 2, + ACTIONS(794), 1, anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, sym_test_operator, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 3, + ACTIONS(5457), 1, + sym_regex, + STATE(925), 1, + aux_sym__literal_repeat1, + STATE(1274), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2178), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2368), 6, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(956), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76368] = 15, - ACTIONS(3), 1, + STATE(482), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121314] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - STATE(2019), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5471), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - STATE(2421), 1, + STATE(2026), 1, sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(956), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76428] = 14, - ACTIONS(3), 1, + STATE(482), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121386] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + ACTIONS(5475), 1, + anon_sym_RPAREN_RPAREN, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(624), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76486] = 14, - ACTIONS(3), 1, + [121458] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3744), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + ACTIONS(5477), 1, + sym_regex, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2058), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76544] = 14, - ACTIONS(3), 1, + [121530] = 19, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1913), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + ACTIONS(5463), 1, + anon_sym_RPAREN_RPAREN, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2098), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76602] = 15, - ACTIONS(3), 1, + [121602] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(804), 1, anon_sym_LPAREN, - ACTIONS(2459), 1, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, - sym__special_character, - ACTIONS(2463), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - STATE(2144), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - STATE(2360), 1, + STATE(1953), 1, sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 3, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2178), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2368), 6, + ACTIONS(824), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1930), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [76662] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(1743), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, - anon_sym_BQUOTE, - ACTIONS(3736), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76720] = 14, + [121671] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5483), 1, + anon_sym_esac, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3746), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4192), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2336), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5481), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76778] = 14, - ACTIONS(3), 1, + [121740] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1274), 1, + sym__expression, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76836] = 14, - ACTIONS(3), 1, + [121809] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3748), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2027), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76894] = 14, - ACTIONS(3), 1, + [121878] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(1877), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2058), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76952] = 14, - ACTIONS(3), 1, + [121947] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3750), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2066), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77010] = 14, - ACTIONS(3), 1, + [122016] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(1883), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2139), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77068] = 15, + [122085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1819), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1821), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1823), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - STATE(2165), 1, - aux_sym__literal_repeat1, - STATE(2383), 1, - sym__expression, - ACTIONS(1817), 2, - anon_sym_BANG, + ACTIONS(5499), 1, sym_test_operator, - ACTIONS(1831), 2, + ACTIONS(5503), 1, + anon_sym_esac, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4209), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1813), 3, + STATE(2363), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2118), 6, + ACTIONS(5501), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2362), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [77128] = 14, + [122154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3752), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5507), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4271), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2348), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5505), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77186] = 14, - ACTIONS(3), 1, + [122223] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3754), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1928), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77244] = 15, + [122292] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1961), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, + sym__special_character, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(2611), 1, - sym__special_character, - STATE(2116), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5511), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(2388), 1, - sym__expression, - ACTIONS(1969), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4258), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2609), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1949), 3, + STATE(2341), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(1857), 6, + ACTIONS(5509), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [77304] = 15, + [122361] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2459), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(2463), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - STATE(2144), 1, - aux_sym__literal_repeat1, - STATE(2391), 1, - sym__expression, - ACTIONS(2457), 2, - anon_sym_BANG, + ACTIONS(5499), 1, sym_test_operator, - ACTIONS(2471), 2, + ACTIONS(5515), 1, + anon_sym_esac, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4212), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2453), 3, + STATE(2347), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2178), 6, + ACTIONS(5513), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2368), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [77364] = 14, - ACTIONS(3), 1, + [122430] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(1859), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1999), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77422] = 14, - ACTIONS(3), 1, + [122499] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3756), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2091), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77480] = 14, - ACTIONS(3), 1, + [122568] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3758), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1932), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77538] = 15, - ACTIONS(3), 1, + [122637] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1963), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - STATE(2019), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - STATE(2395), 1, + STATE(2092), 1, sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1949), 3, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, + ACTIONS(768), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(956), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [77598] = 14, - ACTIONS(3), 1, + STATE(482), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122706] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2093), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77656] = 14, - ACTIONS(3), 1, + sym_command_substitution, + sym_process_substitution, + [122775] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1847), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1961), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77714] = 14, - ACTIONS(3), 1, + [122844] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1807), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1979), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77772] = 14, - ACTIONS(3), 1, + [122913] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3760), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1274), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77830] = 14, + [122982] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3762), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5519), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4210), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2362), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5517), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77888] = 14, - ACTIONS(3), 1, + [123051] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3764), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1978), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77946] = 14, - ACTIONS(3), 1, + [123120] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3766), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1915), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78004] = 14, - ACTIONS(3), 1, + [123189] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3768), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1916), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78062] = 14, - ACTIONS(3), 1, + [123258] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3770), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(878), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78120] = 14, - ACTIONS(3), 1, + [123327] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3762), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2119), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1599), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3772), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78178] = 14, - ACTIONS(3), 1, + [123396] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(3774), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2078), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78236] = 14, - ACTIONS(3), 1, + [123465] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3774), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2077), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1618), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3776), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78294] = 14, - ACTIONS(3), 1, + [123534] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(3778), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2120), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78352] = 14, - ACTIONS(3), 1, + [123603] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3778), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2126), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1619), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3780), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78410] = 14, - ACTIONS(3), 1, + [123672] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1801), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1935), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78468] = 14, + [123741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3782), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5523), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4228), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2359), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5521), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78526] = 14, + [123810] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3782), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5527), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4231), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1605), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2356), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5525), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3784), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78584] = 14, - ACTIONS(3), 1, + [123879] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1946), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1616), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78642] = 14, - ACTIONS(3), 1, + [123948] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3786), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1919), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78700] = 14, - ACTIONS(3), 1, + [124017] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3788), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2137), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1644), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3790), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78758] = 14, + [124086] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3786), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5531), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4119), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1609), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2338), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5529), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3792), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78816] = 14, - ACTIONS(3), 1, + [124155] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(1795), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(857), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78874] = 14, - ACTIONS(3), 1, + [124224] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(2495), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1274), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78932] = 14, + [124293] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(3788), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5535), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4118), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2337), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5533), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78990] = 14, - ACTIONS(3), 1, + [124362] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1789), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2081), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1622), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1791), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79048] = 14, - ACTIONS(3), 1, + [124431] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(3794), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(856), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79106] = 14, - ACTIONS(3), 1, + [124500] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(1777), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1942), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79164] = 14, - ACTIONS(3), 1, + [124569] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3794), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1948), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1620), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3796), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79222] = 14, - ACTIONS(3), 1, + [124638] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(1789), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1962), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79280] = 14, - ACTIONS(3), 1, + [124707] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3798), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(794), 1, + anon_sym_BANG, + ACTIONS(796), 1, + aux_sym_unary_expression_token1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(800), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1920), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79338] = 14, - ACTIONS(3), 1, + [124776] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(1783), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1960), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79396] = 14, - ACTIONS(3), 1, + [124845] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3646), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1921), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1537), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3800), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79454] = 14, - ACTIONS(3), 1, + [124914] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(127), 1, + aux_sym_unary_expression_token1, + ACTIONS(226), 1, + anon_sym_BANG, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(778), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(3802), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(790), 1, + sym_test_operator, + STATE(1091), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(2065), 1, + sym__expression, + ACTIONS(222), 2, + sym_number, + sym_word, + ACTIONS(782), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(2100), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(982), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79512] = 14, - ACTIONS(3), 1, + [124983] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(726), 1, + anon_sym_BANG, + ACTIONS(728), 1, + aux_sym_unary_expression_token1, + ACTIONS(732), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5433), 1, + anon_sym_LPAREN, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5437), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(1801), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5449), 1, + sym_test_operator, + STATE(438), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(902), 1, + sym__expression, + ACTIONS(722), 2, + sym_number, + sym_word, + ACTIONS(5441), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1649), 2, + STATE(810), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(437), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1803), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79570] = 14, - ACTIONS(3), 1, + [125052] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(97), 1, + aux_sym_unary_expression_token1, + ACTIONS(160), 1, + anon_sym_BANG, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3804), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(798), 1, + sym__special_character, + ACTIONS(840), 1, + sym_test_operator, + STATE(925), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1956), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1641), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3806), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79628] = 14, - ACTIONS(3), 1, + [125121] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(804), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + anon_sym_BANG, + ACTIONS(808), 1, + aux_sym_unary_expression_token1, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(3804), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(826), 1, + sym_test_operator, + ACTIONS(5425), 1, + sym__special_character, + STATE(1190), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1917), 1, + sym__expression, + ACTIONS(802), 2, + sym_number, + sym_word, + ACTIONS(818), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1930), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(1181), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79686] = 14, + [125190] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(1771), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5539), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4091), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2332), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5537), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79744] = 14, - ACTIONS(3), 1, + [125259] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(164), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, - sym__special_character, - ACTIONS(1741), 1, + ACTIONS(748), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_BANG, + ACTIONS(754), 1, + aux_sym_unary_expression_token1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(3808), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(770), 1, + sym_test_operator, + ACTIONS(5473), 1, + sym__special_character, + STATE(1405), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(1949), 1, + sym__expression, + ACTIONS(149), 2, + sym_number, + sym_word, + ACTIONS(762), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(956), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, + STATE(482), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79802] = 14, + [125328] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1739), 1, + ACTIONS(5485), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5489), 1, sym__special_character, - ACTIONS(1741), 1, + ACTIONS(5491), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(5493), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(5495), 1, anon_sym_BQUOTE, - ACTIONS(1765), 1, - anon_sym_RBRACE, - STATE(2285), 1, + ACTIONS(5499), 1, + sym_test_operator, + ACTIONS(5543), 1, + anon_sym_esac, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1749), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4092), 1, + sym_last_case_item, + ACTIONS(5497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, + STATE(2335), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(5479), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2170), 6, + ACTIONS(5541), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3231), 7, + [125397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5545), 1, + sym__concat, + STATE(2255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5133), 12, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + anon_sym_DOLLAR, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79860] = 14, + sym_word, + ACTIONS(5129), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5551), 1, + sym__concat, + ACTIONS(5547), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5549), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + anon_sym_SLASH2, anon_sym_BQUOTE, - ACTIONS(1759), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, + sym_test_operator, + [125477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5557), 1, + sym__concat, + ACTIONS(5553), 12, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + anon_sym_DOLLAR, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79918] = 14, + sym_word, + ACTIONS(5555), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5559), 1, + sym__concat, + STATE(2256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(865), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(3808), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1617), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3810), 7, + sym_test_operator, + [125557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5561), 1, + sym__concat, + STATE(2256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 12, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + anon_sym_DOLLAR, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79976] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, + sym_word, + ACTIONS(881), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_DOLLAR, - ACTIONS(1959), 1, - sym__special_character, - ACTIONS(1961), 1, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - STATE(2019), 1, - aux_sym__literal_repeat1, - STATE(2376), 1, - sym__expression, - ACTIONS(1955), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1857), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2187), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [80036] = 14, + sym_test_operator, + [125598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(5545), 1, + sym__concat, + STATE(2261), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5564), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5566), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(1835), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, + sym_test_operator, + [125639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 1, + sym__concat, + ACTIONS(5568), 12, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_PERCENT, - [80094] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(1739), 1, sym__special_character, - ACTIONS(1741), 1, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5570), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + anon_sym_SLASH2, anon_sym_BQUOTE, - ACTIONS(2445), 1, - anon_sym_RBRACE, - STATE(2285), 1, - aux_sym__literal_repeat1, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2170), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, + sym_test_operator, + [125678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5545), 1, + sym__concat, + STATE(2255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 12, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_POUND, + anon_sym_DOLLAR, + sym__special_character, + sym_number, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, - anon_sym_PERCENT, - [80152] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, - anon_sym_LT_LT_LT, - ACTIONS(3812), 1, - anon_sym_LF, - ACTIONS(3816), 1, - sym_file_descriptor, - ACTIONS(1187), 2, + sym_word, + ACTIONS(877), 15, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1189), 2, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1191), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3814), 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, - [80203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_DQUOTE, - ACTIONS(3820), 1, - aux_sym__simple_variable_name_token1, - STATE(2349), 1, - sym_string, - ACTIONS(3818), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 15, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - sym__special_character, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [80244] = 4, + sym_test_operator, + [125719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5578), 1, + sym__concat, + ACTIONS(5574), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80281] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, - anon_sym_LT_LT_LT, - ACTIONS(3816), 1, - sym_file_descriptor, - ACTIONS(3822), 1, - anon_sym_LF, - ACTIONS(1189), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1191), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1203), 2, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5576), 16, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1205), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3814), 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, - [80332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 2, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1473), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1661), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80371] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 1, - anon_sym_LT_LT_LT, - ACTIONS(3816), 1, - sym_file_descriptor, - ACTIONS(3824), 1, - anon_sym_LF, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3814), 8, + ACTIONS(5580), 1, + sym__concat, + STATE(2256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3826), 10, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(871), 15, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80416] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_LF, - ACTIONS(3838), 1, - anon_sym_LT_LT_LT, - ACTIONS(3841), 1, - sym_file_descriptor, - ACTIONS(3835), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3832), 8, + ACTIONS(952), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3830), 10, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(954), 16, + sym__concat, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80461] = 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - anon_sym_LT_LT_LT, - ACTIONS(3844), 1, - anon_sym_LF, - ACTIONS(3848), 1, - sym_file_descriptor, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1231), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1247), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1205), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3846), 8, + ACTIONS(5582), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80511] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1473), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 18, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5584), 16, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80549] = 8, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3824), 1, - anon_sym_LF, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 8, + ACTIONS(879), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3826), 9, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(881), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [80593] = 11, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - anon_sym_LT_LT_LT, - ACTIONS(3848), 1, - sym_file_descriptor, - ACTIONS(3854), 1, - anon_sym_LF, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1219), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1229), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1231), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(497), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3846), 8, + ACTIONS(906), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(908), 16, sym__concat, - STATE(1679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1221), 22, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [80681] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_LF, - ACTIONS(3864), 1, - anon_sym_LT_LT_LT, - ACTIONS(3867), 1, - sym_file_descriptor, - ACTIONS(3861), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1668), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3858), 8, + ACTIONS(972), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3830), 9, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(974), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [80725] = 8, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [125979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_LF, - ACTIONS(3873), 1, - anon_sym_LT_LT_LT, - ACTIONS(3876), 1, - sym_file_descriptor, - ACTIONS(3835), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1669), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3870), 8, + ACTIONS(1002), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3830), 9, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(1004), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80769] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - anon_sym_LT_LT_LT, - ACTIONS(3824), 1, - anon_sym_LF, - ACTIONS(3848), 1, - sym_file_descriptor, - ACTIONS(1193), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1669), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3846), 8, + ACTIONS(968), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3826), 9, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(970), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80813] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1215), 20, + ACTIONS(964), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(966), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [80849] = 4, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1670), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(984), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80885] = 5, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(986), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 17, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(998), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(1000), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [80922] = 11, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 1, - anon_sym_LT_LT_LT, - ACTIONS(1453), 1, - ts_builtin_sym_end, - ACTIONS(3879), 1, - anon_sym_LF, - ACTIONS(3883), 1, - sym_file_descriptor, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1441), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1443), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1457), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3881), 8, + ACTIONS(960), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80971] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - anon_sym_LT_LT_LT, - ACTIONS(3894), 1, - sym_file_descriptor, - ACTIONS(3828), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3888), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1675), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3830), 7, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(962), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3885), 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, - [81014] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1473), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(994), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1215), 18, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(996), 16, + sym__concat, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81086] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - sym__concat, - STATE(1730), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 23, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(886), 12, anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(888), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [81121] = 5, + [126267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(956), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(958), 16, sym__concat, - STATE(1684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1249), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81158] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(933), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(935), 16, sym__concat, - STATE(1679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3901), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3903), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81195] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(898), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(900), 16, sym__concat, - STATE(1679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3905), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3907), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81232] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(5586), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - STATE(1688), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3911), 21, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5588), 16, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81269] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1473), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1199), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(988), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(990), 16, sym__concat, - STATE(1684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1255), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(948), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81343] = 8, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(950), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, - sym_word, - ACTIONS(3925), 1, - sym_file_descriptor, - ACTIONS(3928), 1, - sym_variable_name, - STATE(3340), 1, - sym_subscript, - STATE(1685), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(3920), 8, + ACTIONS(894), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_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(3923), 10, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(896), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81386] = 5, + sym_test_operator, + [126519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(910), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - STATE(1688), 1, - aux_sym__literal_repeat1, - ACTIONS(3931), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3933), 21, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(912), 16, + sym__concat, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81423] = 11, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(982), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, - ts_builtin_sym_end, - ACTIONS(1445), 1, - anon_sym_LT_LT_LT, - ACTIONS(3883), 1, - sym_file_descriptor, - ACTIONS(3935), 1, - anon_sym_LF, - ACTIONS(1439), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1441), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1443), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1437), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1700), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3881), 8, + ACTIONS(902), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81472] = 5, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(904), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(5590), 1, sym__special_character, - STATE(1688), 1, + STATE(2289), 1, aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1340), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5564), 11, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81509] = 6, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5566), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3944), 1, - aux_sym__simple_variable_name_token1, - STATE(2503), 1, - sym_string, - ACTIONS(3940), 9, - anon_sym_BANG, + ACTIONS(914), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - anon_sym_QMARK, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 13, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(916), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [81548] = 11, + sym_test_operator, + [126703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, - anon_sym_RPAREN, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(3946), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1229), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 8, + ACTIONS(929), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3948), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(931), 16, sym__concat, - STATE(1769), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1221), 21, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [81634] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(933), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(935), 16, sym__concat, - STATE(1679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3950), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3952), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81671] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, anon_sym_RPAREN, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(3954), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1247), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [81720] = 5, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(5592), 1, sym__special_character, - STATE(1688), 1, + STATE(2289), 1, aux_sym__literal_repeat1, - ACTIONS(3956), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3958), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(922), 11, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81757] = 11, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(927), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_BQUOTE, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(3960), 1, - anon_sym_LF, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1500), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1535), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 8, + ACTIONS(890), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81806] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(892), 16, sym__concat, - STATE(1679), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3962), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3964), 21, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81843] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(3966), 1, - anon_sym_LF, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1500), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1498), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [81892] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1221), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(976), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [81929] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - STATE(1688), 1, - aux_sym__literal_repeat1, - ACTIONS(3968), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3970), 21, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(978), 16, + sym__concat, anon_sym_SEMI, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81966] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 1, - anon_sym_LT_LT_LT, - ACTIONS(3883), 1, - sym_file_descriptor, - ACTIONS(1443), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3824), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1675), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3826), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3881), 8, + ACTIONS(937), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [82009] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(1823), 1, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(939), 16, + sym__concat, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(3974), 1, - anon_sym_esac, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3531), 1, - sym_last_case_item, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1850), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82067] = 5, + sym_test_operator, + [126923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - sym__concat, - STATE(1928), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1221), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(918), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - anon_sym_AMP, - [82103] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(3982), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1485), 3, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(920), 16, + sym__concat, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [82149] = 5, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - sym__concat, - STATE(1684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1249), 20, + ACTIONS(5547), 12, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5549), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [126995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5568), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82185] = 13, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(5570), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH2, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [127031] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, + ACTIONS(5599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5601), 1, anon_sym_DOLLAR, - ACTIONS(3992), 1, + ACTIONS(5603), 1, sym__special_character, - ACTIONS(3994), 1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, + ACTIONS(5609), 1, anon_sym_BQUOTE, - STATE(2500), 1, + ACTIONS(5613), 1, + sym_test_operator, + STATE(2995), 1, aux_sym__literal_repeat1, - ACTIONS(4000), 2, + ACTIONS(5611), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1720), 2, + STATE(2304), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3986), 3, + ACTIONS(5595), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - ACTIONS(3988), 4, + ACTIONS(5597), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2490), 6, + STATE(2990), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82237] = 10, + [127088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(1838), 1, anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(4002), 1, + ACTIONS(5615), 1, anon_sym_LF, - ACTIONS(1307), 2, + ACTIONS(5619), 1, + sym_file_descriptor, + ACTIONS(1832), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1309), 2, + ACTIONS(1834), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, + ACTIONS(1836), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1481), 3, + ACTIONS(1849), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1665), 4, + ACTIONS(1851), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2308), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 8, + ACTIONS(5617), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -93426,115 +138741,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [82283] = 5, + [127139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, - sym__special_character, - STATE(1712), 1, - aux_sym__literal_repeat1, - ACTIONS(3956), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3958), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(875), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [82319] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - STATE(1712), 1, - aux_sym__literal_repeat1, - ACTIONS(3968), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3970), 20, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(877), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [82355] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [127174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3950), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3952), 20, - anon_sym_SEMI, + ACTIONS(1832), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3948), 1, - sym__concat, - STATE(1769), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3962), 2, + ACTIONS(3829), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3964), 20, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 19, anon_sym_SEMI, - anon_sym_PIPE, - 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_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -93548,193 +138806,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [82427] = 5, + [127213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, - sym__concat, - STATE(1723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1221), 19, - anon_sym_RPAREN, + ACTIONS(4533), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(4535), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82463] = 5, - ACTIONS(3), 1, + sym_test_operator, + [127248] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(4008), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_esac, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, sym__special_character, - STATE(1712), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(1345), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1340), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [82499] = 16, - ACTIONS(3), 1, + STATE(3755), 1, + sym_concatenation, + STATE(4108), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2326), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127313] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5539), 1, + anon_sym_esac, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4011), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3535), 1, + STATE(4091), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1851), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2332), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3948), 1, - sym__concat, - STATE(1769), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3950), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3952), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [82593] = 16, - ACTIONS(3), 1, + [127378] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4013), 1, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5631), 1, anon_sym_esac, - STATE(2987), 1, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3413), 1, + STATE(4062), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1909), 2, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2368), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127443] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5641), 1, + anon_sym_DOLLAR, + ACTIONS(5644), 1, + sym__special_character, + ACTIONS(5647), 1, + anon_sym_DQUOTE, + ACTIONS(5650), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5653), 1, + anon_sym_BQUOTE, + ACTIONS(5659), 1, + sym_test_operator, + STATE(2995), 1, + aux_sym__literal_repeat1, + ACTIONS(5656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2304), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5633), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2962), 6, + ACTIONS(5636), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2990), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82651] = 3, + [127500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(1821), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1275), 21, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1819), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -93756,55 +139056,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [82683] = 5, - ACTIONS(3), 1, + [127537] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(4015), 1, - sym__concat, - STATE(1717), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5662), 1, + anon_sym_esac, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4065), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, sym_word, - ACTIONS(1255), 19, - anon_sym_RPAREN, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2369), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_COLON, anon_sym_DOLLAR, sym__special_character, + sym_number, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + sym_word, + ACTIONS(4515), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82719] = 5, + sym_test_operator, + [127637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3948), 1, - sym__concat, - STATE(1769), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3901), 2, + ACTIONS(1838), 1, + anon_sym_LT_LT_LT, + ACTIONS(5619), 1, sym_file_descriptor, + ACTIONS(5664), 1, anon_sym_LF, - ACTIONS(3903), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2316), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5617), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -93813,535 +139161,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [82755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, - sym__concat, - STATE(1730), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4018), 22, - anon_sym_LF, + ACTIONS(5666), 10, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, anon_sym_AMP, - [82789] = 13, - ACTIONS(3), 1, + [127682] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(4028), 1, - sym__special_character, - ACTIONS(4031), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4034), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4037), 1, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5668), 1, + anon_sym_esac, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4143), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2327), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127747] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4040), 1, + ACTIONS(5601), 1, + anon_sym_DOLLAR, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5607), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5609), 1, anon_sym_BQUOTE, - STATE(2500), 1, + ACTIONS(5613), 1, + sym_test_operator, + STATE(2995), 1, aux_sym__literal_repeat1, - ACTIONS(4043), 2, + ACTIONS(5611), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1720), 2, + STATE(2304), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4020), 3, + ACTIONS(5595), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - ACTIONS(4023), 4, + ACTIONS(5670), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2490), 6, + STATE(2990), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1318), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82873] = 3, - ACTIONS(3), 1, + [127804] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1322), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 1, - sym__concat, - STATE(1717), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1249), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5483), 1, + anon_sym_esac, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4192), 1, + sym_last_case_item, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82941] = 16, - ACTIONS(3), 1, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2336), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127869] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5543), 1, + anon_sym_esac, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4048), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3517), 1, + STATE(4092), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1847), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2335), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82999] = 16, - ACTIONS(3), 1, + [127934] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5515), 1, + anon_sym_esac, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4050), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3516), 1, + STATE(4212), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1844), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2347), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1336), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1221), 22, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [83121] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, - sym__special_character, - STATE(1712), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3911), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83157] = 13, - ACTIONS(3), 1, + [127999] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(3992), 1, - sym__special_character, - ACTIONS(3994), 1, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - STATE(2500), 1, + ACTIONS(5519), 1, + anon_sym_esac, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(4000), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4210), 1, + sym_last_case_item, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3986), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4052), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2490), 6, + STATE(2362), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4054), 1, - sym__concat, - STATE(1772), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [83243] = 16, + [128064] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5601), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5603), 1, + sym__special_character, + ACTIONS(5605), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5609), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4056), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5613), 1, + sym_test_operator, + STATE(2995), 1, aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3529), 1, - sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5611), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1869), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + STATE(2304), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5595), 4, sym_raw_string, sym_ansi_c_string, + sym_number, sym_word, - STATE(2962), 6, + ACTIONS(5672), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2990), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83301] = 10, + [128121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(5674), 1, + anon_sym_LF, + ACTIONS(5684), 1, anon_sym_LT_LT_LT, - ACTIONS(3852), 1, + ACTIONS(5687), 1, sym_file_descriptor, - ACTIONS(4058), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, + ACTIONS(5681), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1531), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, + STATE(2316), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [83347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1350), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1354), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5678), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94350,18 +139519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1358), 21, + ACTIONS(5676), 10, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -94371,259 +139529,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [83443] = 3, - ACTIONS(3), 1, + [128166] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1358), 21, - anon_sym_SEMI, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5503), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83475] = 16, - ACTIONS(3), 1, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4209), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2363), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128231] = 18, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5690), 1, anon_sym_esac, - STATE(2987), 1, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3525), 1, + STATE(4189), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1871), 2, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2367), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128296] = 18, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5692), 1, + anon_sym_esac, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4185), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2355), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83533] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(4062), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1519), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [83579] = 4, + [128361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - sym__special_character, - STATE(1739), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5696), 1, + aux_sym__simple_variable_name_token1, + STATE(2993), 1, + sym_string, + ACTIONS(5694), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [83613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 3, - sym_file_descriptor, - sym__concat, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(842), 15, anon_sym_LF, - ACTIONS(1368), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [83645] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [128402] = 9, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(5708), 1, sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1372), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5711), 1, + sym_variable_name, + STATE(4009), 1, + sym_subscript, + ACTIONS(5698), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5700), 3, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + STATE(2321), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(5703), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83677] = 3, + ACTIONS(5706), 10, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [128449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, + ACTIONS(1838), 1, + anon_sym_LT_LT_LT, + ACTIONS(5619), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5714), 1, anon_sym_LF, - ACTIONS(1380), 21, + ACTIONS(1830), 2, anon_sym_SEMI, - anon_sym_esac, + anon_sym_AMP, + ACTIONS(1832), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1834), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_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(1836), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1384), 21, - anon_sym_SEMI, + ACTIONS(1080), 4, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2308), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5617), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94632,136 +139784,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83741] = 3, + [128500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5696), 1, + aux_sym__simple_variable_name_token1, + STATE(2993), 1, + sym_string, + ACTIONS(5694), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(830), 15, anon_sym_LF, - ACTIONS(1388), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [83773] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [128541] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1396), 3, - sym_file_descriptor, + ACTIONS(5720), 1, sym__concat, - anon_sym_LF, - ACTIONS(1394), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5716), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5718), 18, sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1398), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + anon_sym_RPAREN, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83837] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [128579] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1402), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83869] = 3, + ACTIONS(1106), 1, + anon_sym_DOLLAR, + ACTIONS(5724), 1, + anon_sym_LPAREN, + ACTIONS(5726), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5728), 1, + sym__special_character, + ACTIONS(5730), 1, + anon_sym_DQUOTE, + ACTIONS(5734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5736), 1, + anon_sym_BQUOTE, + ACTIONS(5740), 1, + sym__comment_word, + ACTIONS(5742), 1, + sym_test_operator, + ACTIONS(5744), 1, + sym__empty_value, + STATE(1346), 1, + aux_sym__literal_repeat1, + ACTIONS(5722), 2, + sym_number, + sym_word, + ACTIONS(5732), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5738), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1826), 2, + sym_concatenation, + sym_array, + STATE(832), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128641] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4123), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128703] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4087), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1821), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1328), 21, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1819), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94781,23 +140019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [83901] = 3, + [128801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(1911), 1, + anon_sym_LT_LT_LT, + ACTIONS(5664), 1, anon_sym_LF, - ACTIONS(1406), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5748), 1, + sym_file_descriptor, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2345), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5746), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94806,20 +140045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1410), 21, + ACTIONS(5666), 9, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -94827,35 +140054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [83965] = 3, + [128845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(5674), 1, anon_sym_LF, - ACTIONS(1418), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5756), 1, + anon_sym_LT_LT_LT, + ACTIONS(5759), 1, + sym_file_descriptor, + ACTIONS(5753), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2330), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5750), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94864,89 +140081,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1424), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1422), 21, + ACTIONS(5676), 9, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [84029] = 5, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [128889] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(4006), 1, + ACTIONS(5762), 1, sym__concat, - STATE(1723), 1, + STATE(2342), 1, aux_sym_concatenation_repeat1, - ACTIONS(3901), 3, + ACTIONS(863), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(865), 18, sym_file_descriptor, sym_variable_name, - sym_word, - ACTIONS(3903), 19, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [128927] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4062), 1, + sym_last_case_item, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84065] = 5, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3962), 2, - sym_file_descriptor, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5664), 1, anon_sym_LF, - ACTIONS(3964), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5766), 1, + sym_file_descriptor, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2330), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94955,582 +140195,505 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5666), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_AMP, - [84101] = 16, + anon_sym_BQUOTE, + [129033] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5770), 1, + anon_sym_LPAREN, + ACTIONS(5772), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5774), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5776), 1, + sym__special_character, + ACTIONS(5778), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, + ACTIONS(5784), 1, + anon_sym_BQUOTE, + ACTIONS(5788), 1, + sym__comment_word, + ACTIONS(5790), 1, + sym_test_operator, + ACTIONS(5792), 1, + sym__empty_value, + STATE(1838), 1, + aux_sym__literal_repeat1, + ACTIONS(5768), 2, + sym_number, + sym_word, + ACTIONS(5780), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5786), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1981), 2, + sym_concatenation, + sym_array, + STATE(1300), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129095] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4067), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3493), 1, + STATE(4065), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1827), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84159] = 16, - ACTIONS(3), 1, + [129157] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4069), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3491), 1, + STATE(4108), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1824), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84217] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_LT_LT_LT, - ACTIONS(3852), 1, - sym_file_descriptor, - ACTIONS(4071), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1541), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 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, - [84263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3905), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3907), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84299] = 13, - ACTIONS(3), 1, + [129219] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(3992), 1, - sym__special_character, - ACTIONS(3994), 1, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - STATE(2500), 1, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - ACTIONS(4000), 2, + STATE(3755), 1, + sym_concatenation, + STATE(4091), 1, + sym_last_case_item, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3986), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(4073), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2490), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 1, - sym__special_character, - STATE(1739), 1, - aux_sym__literal_repeat1, - ACTIONS(4075), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [84385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1291), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84417] = 16, - ACTIONS(3), 1, + [129281] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4079), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3432), 1, + STATE(4092), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1797), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84475] = 3, - ACTIONS(3), 1, + [129343] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 3, - sym_file_descriptor, + ACTIONS(5794), 1, sym__concat, - anon_sym_LF, - ACTIONS(1287), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(871), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84507] = 16, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [129381] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5802), 1, + anon_sym_DOLLAR, + ACTIONS(5804), 1, + sym__special_character, + ACTIONS(5808), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, + ACTIONS(5810), 1, + anon_sym_BQUOTE, + ACTIONS(5814), 1, + sym__comment_word, + ACTIONS(5816), 1, + sym_test_operator, + ACTIONS(5818), 1, + sym__empty_value, + STATE(2506), 1, + aux_sym__literal_repeat1, + ACTIONS(5796), 2, + sym_number, + sym_word, + ACTIONS(5806), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2690), 2, + sym_concatenation, + sym_array, + STATE(2378), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129443] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4081), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3431), 1, + STATE(4212), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1811), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84565] = 5, - ACTIONS(3), 1, + [129505] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(5820), 1, sym__concat, - STATE(1769), 1, + STATE(2342), 1, aux_sym_concatenation_repeat1, - ACTIONS(3905), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3907), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(879), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [84601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, - sym__special_character, - STATE(1712), 1, - aux_sym__literal_repeat1, - ACTIONS(3931), 2, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(881), 18, sym_file_descriptor, - anon_sym_LF, - ACTIONS(3933), 20, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [84637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1283), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1255), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84701] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [129543] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - sym__concat, - STATE(1770), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1249), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1019), 1, + anon_sym_DOLLAR, + ACTIONS(5825), 1, + anon_sym_LPAREN, + ACTIONS(5827), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5829), 1, + sym__special_character, + ACTIONS(5831), 1, + anon_sym_DQUOTE, + ACTIONS(5835), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5837), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [84737] = 5, + ACTIONS(5841), 1, + sym__comment_word, + ACTIONS(5843), 1, + sym_test_operator, + ACTIONS(5845), 1, + sym__empty_value, + STATE(837), 1, + aux_sym__literal_repeat1, + ACTIONS(5823), 2, + sym_number, + sym_word, + ACTIONS(5833), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5839), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1255), 2, + sym_concatenation, + sym_array, + STATE(452), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129605] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 1, - sym__concat, - STATE(1770), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1255), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1262), 1, + anon_sym_DOLLAR, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5853), 1, + sym__special_character, + ACTIONS(5855), 1, + anon_sym_DQUOTE, + ACTIONS(5859), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5861), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [84773] = 10, + ACTIONS(5865), 1, + sym__comment_word, + ACTIONS(5867), 1, + sym_test_operator, + ACTIONS(5869), 1, + sym__empty_value, + STATE(1731), 1, + aux_sym__literal_repeat1, + ACTIONS(5847), 2, + sym_number, + sym_word, + ACTIONS(5857), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5863), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2069), 2, + sym_concatenation, + sym_array, + STATE(1024), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129667] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(5674), 1, + anon_sym_LF, + ACTIONS(5874), 1, anon_sym_LT_LT_LT, - ACTIONS(3852), 1, + ACTIONS(5877), 1, sym_file_descriptor, - ACTIONS(4088), 1, - anon_sym_LF, - ACTIONS(1307), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1309), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1311), 2, + ACTIONS(5681), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1506), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1665), 4, + STATE(2345), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3850), 8, + ACTIONS(5871), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95539,126 +140702,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [84819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - sym__concat, - STATE(1772), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 22, - anon_sym_LF, + ACTIONS(5676), 9, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, anon_sym_AMP, - [84853] = 5, + [129711] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, - sym__concat, - STATE(1723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3962), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5882), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5886), 1, + anon_sym_DOLLAR, + ACTIONS(5888), 1, + sym__special_character, + ACTIONS(5890), 1, + anon_sym_DQUOTE, + ACTIONS(5894), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5896), 1, + anon_sym_BQUOTE, + ACTIONS(5900), 1, + sym__comment_word, + ACTIONS(5902), 1, + sym_test_operator, + ACTIONS(5904), 1, + sym__empty_value, + STATE(1959), 1, + aux_sym__literal_repeat1, + ACTIONS(5880), 2, + sym_number, sym_word, - ACTIONS(3964), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(5892), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5898), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2143), 2, + sym_concatenation, + sym_array, + STATE(1866), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129773] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4143), 1, + sym_last_case_item, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84889] = 16, - ACTIONS(3), 1, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129835] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, + ACTIONS(5623), 1, anon_sym_LPAREN, - ACTIONS(3978), 1, + ACTIONS(5625), 1, sym__special_character, - ACTIONS(4093), 1, - anon_sym_esac, - STATE(2987), 1, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, aux_sym__literal_repeat1, - STATE(3210), 1, + STATE(3755), 1, sym_concatenation, - STATE(3409), 1, + STATE(4192), 1, sym_last_case_item, - ACTIONS(1831), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1870), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3972), 3, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2962), 6, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84947] = 3, + [129897] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, + ACTIONS(1911), 1, + anon_sym_LT_LT_LT, + ACTIONS(5748), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5906), 1, anon_sym_LF, - ACTIONS(1279), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1895), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1909), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1919), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1851), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5746), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95667,27 +140886,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84979] = 5, + [129947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3901), 2, + ACTIONS(1895), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3829), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3903), 20, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 18, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -95702,22 +140919,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85015] = 3, + [129985] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 2, + ACTIONS(1911), 1, + anon_sym_LT_LT_LT, + ACTIONS(5748), 1, sym_file_descriptor, + ACTIONS(5908), 1, anon_sym_LF, - ACTIONS(4097), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1836), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1895), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(1907), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1909), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1080), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5746), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95726,23 +140958,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85046] = 3, + [130035] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 1, + anon_sym_LPAREN, + ACTIONS(5914), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5916), 1, + anon_sym_DOLLAR, + ACTIONS(5918), 1, + sym__special_character, + ACTIONS(5920), 1, + anon_sym_DQUOTE, + ACTIONS(5924), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5926), 1, + anon_sym_BQUOTE, + ACTIONS(5930), 1, + sym__comment_word, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + sym__empty_value, + STATE(1214), 1, + aux_sym__literal_repeat1, + ACTIONS(5910), 2, + sym_number, + sym_word, + ACTIONS(5922), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5928), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1889), 2, + sym_concatenation, + sym_array, + STATE(848), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 2, + ACTIONS(1821), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4101), 21, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1819), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95758,270 +141034,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85077] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [130133] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 3, - sym_file_descriptor, + ACTIONS(5720), 1, sym__concat, - anon_sym_LF, - ACTIONS(1350), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2331), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5936), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5938), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [85108] = 3, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [130171] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1293), 1, - sym__concat, - ACTIONS(1291), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, sym_test_operator, - anon_sym_AMP, - [85139] = 3, - ACTIONS(3), 1, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4172), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130233] = 17, + ACTIONS(59), 1, sym_comment, - ACTIONS(1320), 1, - sym__concat, - ACTIONS(1318), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, sym_test_operator, - anon_sym_AMP, - [85170] = 3, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4210), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130295] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 1, + ACTIONS(5942), 1, + anon_sym_LPAREN, + ACTIONS(5944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5946), 1, + anon_sym_DOLLAR, + ACTIONS(5948), 1, + sym__special_character, + ACTIONS(5950), 1, + anon_sym_DQUOTE, + ACTIONS(5954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5956), 1, + anon_sym_BQUOTE, + ACTIONS(5960), 1, + sym__comment_word, + ACTIONS(5962), 1, + sym_test_operator, + ACTIONS(5964), 1, + sym__empty_value, + STATE(2097), 1, + aux_sym__literal_repeat1, + ACTIONS(5940), 2, + sym_number, + sym_word, + ACTIONS(5952), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2150), 2, + sym_concatenation, + sym_array, + STATE(1675), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130357] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5720), 1, sym__concat, - ACTIONS(1322), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5966), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5968), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [85201] = 3, + [130395] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4209), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130457] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 1, - sym__concat, - ACTIONS(1336), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5972), 1, + anon_sym_LPAREN, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5976), 1, + anon_sym_DOLLAR, + ACTIONS(5978), 1, + sym__special_character, + ACTIONS(5980), 1, + anon_sym_DQUOTE, + ACTIONS(5984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5986), 1, + anon_sym_BQUOTE, + ACTIONS(5990), 1, + sym__comment_word, + ACTIONS(5992), 1, sym_test_operator, - anon_sym_AMP, - [85232] = 3, + ACTIONS(5994), 1, + sym__empty_value, + STATE(3487), 1, + aux_sym__literal_repeat1, + ACTIONS(5970), 2, + sym_number, + sym_word, + ACTIONS(5982), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5988), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3581), 2, + sym_concatenation, + sym_array, + STATE(3488), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130519] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 1, - sym__concat, - ACTIONS(1283), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1284), 1, + anon_sym_DOLLAR, + ACTIONS(5998), 1, + anon_sym_LPAREN, + ACTIONS(6000), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6002), 1, + sym__special_character, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6010), 1, + anon_sym_BQUOTE, + ACTIONS(6014), 1, + sym__comment_word, + ACTIONS(6016), 1, + sym_test_operator, + ACTIONS(6018), 1, + sym__empty_value, + STATE(1871), 1, + aux_sym__literal_repeat1, + ACTIONS(5996), 2, + sym_number, + sym_word, + ACTIONS(6006), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6012), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1952), 2, + sym_concatenation, + sym_array, + STATE(1164), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130581] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4189), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130643] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, sym_test_operator, - anon_sym_AMP, - [85263] = 3, - ACTIONS(3), 1, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4185), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130705] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 1, + ACTIONS(5720), 1, sym__concat, - ACTIONS(1350), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + STATE(2331), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4103), 2, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(877), 18, sym_file_descriptor, - anon_sym_LF, - ACTIONS(4105), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + anon_sym_RPAREN, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85325] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [130743] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, + ACTIONS(5720), 1, sym__concat, - anon_sym_LF, - ACTIONS(1336), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2331), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6020), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(6022), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [85356] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [130781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, + STATE(2385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1322), 20, + ACTIONS(875), 22, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96036,20 +141558,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [85387] = 3, + sym__special_character, + [130819] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4173), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130881] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4049), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130943] = 17, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(5629), 1, + sym_test_operator, + STATE(3574), 1, + aux_sym__literal_repeat1, + STATE(3755), 1, + sym_concatenation, + STATE(4051), 1, + sym_last_case_item, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5479), 2, + sym_number, + sym_word, + ACTIONS(5627), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3539), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [131005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 3, + ACTIONS(6026), 1, + sym__special_character, + STATE(2377), 1, + aux_sym__literal_repeat1, + ACTIONS(5718), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1318), 20, + ACTIONS(5716), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96064,136 +141726,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 1, - sym__concat, - ACTIONS(1354), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, anon_sym_AMP, - [85480] = 3, - ACTIONS(3), 1, + [131042] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(952), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(954), 19, sym_file_descriptor, sym__concat, - anon_sym_LF, - ACTIONS(1388), 20, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [85542] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131075] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 2, + ACTIONS(1080), 1, + anon_sym_RPAREN, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, sym_file_descriptor, + ACTIONS(6028), 1, anon_sym_LF, - ACTIONS(4109), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1907), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -96202,26 +141795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85573] = 3, + [131124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 2, - sym_file_descriptor, + ACTIONS(4021), 1, + anon_sym_LT_LT_LT, + ACTIONS(4041), 1, + ts_builtin_sym_end, + ACTIONS(6030), 1, anon_sym_LF, - ACTIONS(4113), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(6034), 1, + sym_file_descriptor, + ACTIONS(3831), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(4017), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4019), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4045), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6032), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -96230,200 +141833,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85604] = 3, - ACTIONS(3), 1, + [131173] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 1, - sym__concat, - ACTIONS(1255), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(994), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85635] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, + sym_number, + sym_word, + ACTIONS(996), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3413), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 1, - sym__concat, - ACTIONS(1368), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 1, - sym__concat, - ACTIONS(1372), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 1, - sym__concat, - ACTIONS(1380), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [85785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 1, - sym__concat, - ACTIONS(1384), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [85816] = 3, + [131206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3907), 21, + ACTIONS(875), 21, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -96443,18 +141894,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85847] = 3, + sym__special_character, + [131243] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6036), 1, + sym__special_character, + STATE(2376), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(927), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, + ACTIONS(6039), 1, + sym__special_character, + STATE(2377), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1291), 20, + ACTIONS(922), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96469,43 +141958,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [85878] = 3, - ACTIONS(3), 1, + [131317] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1356), 3, + ACTIONS(5720), 1, + sym__concat, + STATE(2331), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1869), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1871), 17, sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131354] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5720), 1, sym__concat, - anon_sym_LF, - ACTIONS(1354), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1882), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1884), 17, + sym_file_descriptor, + sym_variable_name, anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131391] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(904), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [85909] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 2, + ACTIONS(6042), 1, + sym__concat, + STATE(2381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3964), 21, + ACTIONS(879), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -96527,49 +142085,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85940] = 3, - ACTIONS(3), 1, + [131461] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 3, + ACTIONS(1002), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1004), 19, sym_file_descriptor, sym__concat, - anon_sym_LF, - ACTIONS(1287), 20, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131494] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1000), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [85971] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [131527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, - sym__special_character, - STATE(1872), 1, - aux_sym__literal_repeat1, - ACTIONS(3956), 3, + ACTIONS(6045), 1, + sym__concat, + STATE(2381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3958), 18, + ACTIONS(869), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96585,18 +142177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [86006] = 3, + [131564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, - sym_file_descriptor, + ACTIONS(6047), 1, sym__concat, + STATE(2381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1283), 20, + ACTIONS(863), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96611,23 +142208,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [86037] = 5, + [131601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - sym__concat, - STATE(1928), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3950), 3, + ACTIONS(6026), 1, + sym__special_character, + STATE(2377), 1, + aux_sym__literal_repeat1, + ACTIONS(5968), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3952), 18, + ACTIONS(5966), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96643,18 +142241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [86072] = 3, + [131638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5968), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1358), 20, + ACTIONS(5966), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96669,64 +142272,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [86103] = 16, - ACTIONS(3), 1, + [131675] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(988), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1823), 1, + sym_number, + sym_word, + ACTIONS(990), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3409), 1, - sym_last_case_item, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86160] = 3, + sym_test_operator, + [131708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 3, + ACTIONS(6055), 1, + anon_sym_LT_LT_LT, + ACTIONS(6058), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5674), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1255), 20, + ACTIONS(6052), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2389), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5676), 7, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(6049), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -96735,23 +142338,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86191] = 3, + [131751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 3, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, + STATE(2385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6022), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1279), 20, + ACTIONS(6020), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96766,51 +142369,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [86222] = 3, - ACTIONS(3), 1, + [131788] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1390), 1, - sym__concat, - ACTIONS(1388), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(984), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(986), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86253] = 3, + [131821] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 3, + ACTIONS(1851), 1, + anon_sym_BQUOTE, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6061), 1, anon_sym_LF, - ACTIONS(1275), 20, - anon_sym_SEMI, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4175), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(4423), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4740), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -96819,190 +142438,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86284] = 3, - ACTIONS(3), 1, + [131870] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1396), 1, - sym__concat, - ACTIONS(1394), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(980), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [86315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 1, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(982), 19, + sym_file_descriptor, sym__concat, - ACTIONS(1398), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86346] = 3, - ACTIONS(3), 1, + [131903] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1404), 1, - sym__concat, - ACTIONS(1402), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(6063), 1, + sym__special_character, + STATE(2376), 1, + aux_sym__literal_repeat1, + ACTIONS(5966), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5968), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86377] = 3, - ACTIONS(3), 1, + [131940] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1330), 1, - sym__concat, - ACTIONS(1328), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(976), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [86408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 1, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(978), 19, + sym_file_descriptor, sym__concat, - ACTIONS(1406), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86439] = 3, + [131973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, - sym__concat, - ACTIONS(1410), 22, + ACTIONS(3831), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3829), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 16, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - [86470] = 3, + [132010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 3, + ACTIONS(1821), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 20, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1819), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -97018,275 +142592,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [86501] = 3, - ACTIONS(3), 1, + [132045] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1420), 1, - sym__concat, - ACTIONS(1418), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(972), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [86532] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1823), 1, + sym_number, + sym_word, + ACTIONS(974), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3552), 1, - sym_last_case_item, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86589] = 3, - ACTIONS(3), 1, + sym_test_operator, + [132078] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1424), 1, - sym__concat, - ACTIONS(1422), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(968), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(970), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86620] = 3, - ACTIONS(3), 1, + [132111] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4119), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4121), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(933), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(935), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [86651] = 16, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132144] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(964), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1823), 1, + sym_number, + sym_word, + ACTIONS(966), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3489), 1, - sym_last_case_item, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3972), 2, + sym_test_operator, + [132177] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(960), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(962), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86708] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132210] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(6063), 1, sym__special_character, - STATE(1872), 1, + STATE(2376), 1, aux_sym__literal_repeat1, - ACTIONS(3968), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3970), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5716), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5718), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [86743] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132247] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 3, + ACTIONS(910), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(912), 19, sym_file_descriptor, sym__concat, - anon_sym_LF, - ACTIONS(1368), 20, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [86774] = 3, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132280] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 3, + ACTIONS(914), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(916), 19, sym_file_descriptor, sym__concat, - anon_sym_LF, - ACTIONS(1372), 20, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [86805] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, + ACTIONS(6024), 1, sym__concat, - STATE(1928), 1, + STATE(2385), 1, aux_sym_concatenation_repeat1, - ACTIONS(3962), 3, + ACTIONS(6065), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3964), 18, + ACTIONS(6067), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97302,18 +142867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [86840] = 3, + [132350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 3, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6069), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1380), 20, + ACTIONS(6071), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97328,79 +142898,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [86871] = 2, - ACTIONS(3), 1, + [132387] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1221), 23, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(937), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(939), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86900] = 3, - ACTIONS(3), 1, + [132420] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1281), 1, - sym__concat, - ACTIONS(1279), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(886), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(888), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86931] = 3, + [132453] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 2, + ACTIONS(1082), 1, + ts_builtin_sym_end, + ACTIONS(4021), 1, + anon_sym_LT_LT_LT, + ACTIONS(6034), 1, sym_file_descriptor, + ACTIONS(6073), 1, anon_sym_LF, - ACTIONS(4125), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(3831), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(4017), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(4019), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4015), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2426), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6032), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -97409,45 +142997,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [86962] = 3, - ACTIONS(3), 1, + [132502] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 1, + ACTIONS(929), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(931), 19, + sym_file_descriptor, sym__concat, - ACTIONS(1275), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132535] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(906), 6, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(908), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - anon_sym_AMP, - [86993] = 3, + [132568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6075), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4129), 21, + ACTIONS(6077), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -97469,41 +143089,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [87024] = 3, - ACTIONS(3), 1, + [132605] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4131), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4133), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(918), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(920), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132638] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(956), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(958), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87055] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 2, + ACTIONS(6026), 1, + sym__special_character, + STATE(2377), 1, + aux_sym__literal_repeat1, + ACTIONS(6069), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4137), 21, + ACTIONS(6071), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -97525,19 +143181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [87086] = 3, + [132708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, + ACTIONS(3829), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1384), 20, - anon_sym_SEMI, + ACTIONS(4175), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 17, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -97551,78 +143211,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [87117] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [132745] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1221), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(890), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(892), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [87148] = 5, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [132778] = 16, + ACTIONS(59), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6088), 1, + anon_sym_DOLLAR, + ACTIONS(6091), 1, sym__special_character, - STATE(1860), 1, + ACTIONS(6094), 1, + anon_sym_DQUOTE, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6103), 1, + anon_sym_BQUOTE, + ACTIONS(6109), 1, + sym_test_operator, + STATE(3571), 1, aux_sym__literal_repeat1, - ACTIONS(3968), 3, - sym_file_descriptor, - sym_variable_name, + STATE(3875), 1, + sym_concatenation, + ACTIONS(6079), 2, + sym_number, sym_word, - ACTIONS(3970), 18, - anon_sym_RPAREN, + ACTIONS(6097), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6106), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2419), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3573), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [132837] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(879), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(881), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + 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_LT_LPAREN, anon_sym_GT_LPAREN, - [87183] = 5, + sym_test_operator, + [132870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, + ACTIONS(6024), 1, sym__concat, - STATE(1723), 1, + STATE(2385), 1, aux_sym_concatenation_repeat1, - ACTIONS(1239), 3, + ACTIONS(6112), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1237), 18, + anon_sym_LF, + ACTIONS(6114), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -97631,94 +143344,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132907] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(898), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(900), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [87218] = 16, + sym_test_operator, + [132940] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(1080), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3531), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87275] = 5, - ACTIONS(4141), 1, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, + sym_file_descriptor, + ACTIONS(6116), 1, + anon_sym_LF, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4423), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(4421), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 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, + [132989] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 1, + ACTIONS(6118), 1, sym__concat, - STATE(1845), 1, + STATE(2470), 1, aux_sym_concatenation_repeat1, - ACTIONS(1255), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 16, - anon_sym_RPAREN_RPAREN, + ACTIONS(877), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(875), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [87310] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + anon_sym_BQUOTE, + [133026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5718), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4148), 21, + ACTIONS(5716), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -97740,54 +143480,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [87341] = 16, + [133063] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3535), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87398] = 3, + ACTIONS(4021), 1, + anon_sym_LT_LT_LT, + ACTIONS(6034), 1, + sym_file_descriptor, + ACTIONS(4019), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5664), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2389), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5666), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(6032), 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, + [133106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(6026), 1, + sym__special_character, + STATE(2377), 1, + aux_sym__literal_repeat1, + ACTIONS(6075), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3952), 21, + ACTIONS(6077), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -97809,221 +143547,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [87429] = 3, - ACTIONS(3), 1, + [133143] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(948), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(950), 19, sym_file_descriptor, sym__concat, sym_variable_name, - sym_word, - ACTIONS(1336), 19, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [87460] = 16, - ACTIONS(3), 1, + sym_test_operator, + [133176] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(894), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, + sym_number, + sym_word, + ACTIONS(896), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3542), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87517] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3545), 1, - sym_last_case_item, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87574] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4150), 1, - sym__concat, - STATE(1845), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1251), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, sym_test_operator, - [87609] = 5, - ACTIONS(4141), 1, + [133209] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4152), 1, - sym__concat, - STATE(1852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 5, - anon_sym_EQ, + ACTIONS(933), 6, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1223), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [87644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - sym__special_character, - STATE(1860), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 3, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(935), 19, sym_file_descriptor, + sym__concat, sym_variable_name, - sym_word, - ACTIONS(3911), 18, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + 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_LT_LPAREN, anon_sym_GT_LPAREN, - [87679] = 3, + sym_test_operator, + [133242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, + ACTIONS(2309), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3829), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1394), 20, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1840), 17, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [133279] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_RPAREN, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, + sym_file_descriptor, + ACTIONS(6120), 1, + anon_sym_LF, + ACTIONS(2309), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1919), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -98032,23 +143707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [87710] = 3, + [133328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 3, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, + STATE(2385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5938), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1398), 20, + ACTIONS(5936), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98063,144 +143738,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [87741] = 5, - ACTIONS(4141), 1, + [133365] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4152), 1, - sym__concat, - STATE(1852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4018), 5, - anon_sym_EQ, + ACTIONS(6122), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [87776] = 3, - ACTIONS(3), 1, + [133399] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1404), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1402), 20, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(6124), 1, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [87807] = 5, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [133433] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6126), 1, + anon_sym_RPAREN, + ACTIONS(6128), 1, sym__special_character, - STATE(1872), 1, + STATE(3071), 1, aux_sym__literal_repeat1, - ACTIONS(3931), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3933), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133489] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87842] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [133523] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, sym__special_character, - STATE(1860), 1, + ACTIONS(6132), 1, + anon_sym_RPAREN, + STATE(3071), 1, aux_sym__literal_repeat1, - ACTIONS(1345), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5127), 2, + sym_number, sym_word, - ACTIONS(1340), 18, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2478), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133579] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6134), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [133613] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6136), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87877] = 5, + sym_test_operator, + [133647] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - sym__concat, - STATE(1928), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3905), 3, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(6138), 1, anon_sym_LF, - ACTIONS(3907), 18, - anon_sym_SEMI, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4281), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -98209,23 +144007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87912] = 3, + [133693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(6140), 1, + sym__special_character, + STATE(2442), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4161), 21, + ACTIONS(922), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98241,14 +144037,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [87943] = 3, + anon_sym_BQUOTE, + [133729] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6143), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2461), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(6145), 1, + sym__special_character, + STATE(2442), 1, + aux_sym__literal_repeat1, + ACTIONS(6075), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1328), 20, + ACTIONS(6077), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -98267,21 +144108,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [87974] = 3, + anon_sym_BQUOTE, + [133821] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6147), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2544), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133877] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6149), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [133933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 2, + ACTIONS(6118), 1, + sym__concat, + STATE(2463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6075), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4165), 21, + ACTIONS(6077), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98297,43 +144222,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88005] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [133969] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4167), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4169), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6151), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2436), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134025] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6153), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88036] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [134059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6112), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4173), 21, + ACTIONS(6114), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98353,43 +144325,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88067] = 3, - ACTIONS(3), 1, + [134095] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4175), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4177), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6155), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88098] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [134129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6075), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4181), 21, + ACTIONS(6077), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98409,143 +144386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88129] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3493), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88186] = 16, + [134165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3396), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88243] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, - sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3491), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 1, - sym__special_character, - STATE(1872), 1, - aux_sym__literal_repeat1, - ACTIONS(1345), 3, + ACTIONS(6118), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6112), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1340), 18, + ACTIONS(6114), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -98562,13 +144416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88335] = 3, + anon_sym_BQUOTE, + [134201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 2, + ACTIONS(954), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4188), 21, + ACTIONS(952), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -98590,131 +144446,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88366] = 3, + [134233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 1, + ACTIONS(6024), 1, sym__concat, - ACTIONS(1287), 22, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6065), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(6067), 20, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - [88397] = 3, - ACTIONS(3), 1, + [134269] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1424), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1422), 19, + ACTIONS(6157), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88428] = 3, - ACTIONS(3), 1, + sym_test_operator, + [134303] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1420), 4, + ACTIONS(6159), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, sym_file_descriptor, - sym__concat, sym_variable_name, - sym_word, - ACTIONS(1418), 19, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [134337] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6161), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [134371] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6163), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88459] = 3, - ACTIONS(3), 1, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134427] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1412), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6165), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2446), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134483] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6167), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, sym_word, - ACTIONS(1410), 19, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134539] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6169), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88490] = 3, + sym_test_operator, + [134573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(6171), 1, + sym__concat, + STATE(2495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4192), 21, + ACTIONS(869), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98730,47 +144750,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88521] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [134609] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1408), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1406), 19, + ACTIONS(6173), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88552] = 3, + sym_test_operator, + [134643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 2, + ACTIONS(6118), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6065), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4196), 21, + ACTIONS(6067), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98786,15 +144811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88583] = 3, + anon_sym_BQUOTE, + [134679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6069), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3903), 21, + ACTIONS(6071), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98814,43 +144843,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88614] = 3, - ACTIONS(3), 1, + [134715] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1328), 19, + ACTIONS(6175), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [134749] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6177), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88645] = 3, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [134805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6022), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4200), 21, + ACTIONS(6020), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98870,16 +144945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88676] = 3, + [134841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 4, - sym_file_descriptor, + ACTIONS(6179), 1, sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1402), 19, + STATE(2495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(863), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -98888,26 +144971,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [88707] = 3, + [134877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 4, - sym_file_descriptor, + ACTIONS(6024), 1, sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1398), 19, - anon_sym_RPAREN, + STATE(2529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5968), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5966), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -98916,137 +145003,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [88738] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134913] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1396), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1394), 19, + ACTIONS(6181), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88769] = 3, - ACTIONS(3), 1, + sym_test_operator, + [134947] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1390), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1388), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6183), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88800] = 3, - ACTIONS(3), 1, + STATE(2487), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135003] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1386), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1384), 19, + ACTIONS(6185), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88831] = 3, - ACTIONS(3), 1, + sym_test_operator, + [135037] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1382), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1380), 19, + ACTIONS(6187), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [88862] = 3, + sym_test_operator, + [135071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5938), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4204), 21, + ACTIONS(5936), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99066,41 +145169,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88893] = 3, - ACTIONS(3), 1, + [135107] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4206), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4208), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5936), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(5938), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88924] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [135139] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6189), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 2, + ACTIONS(950), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4212), 21, + ACTIONS(948), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -99122,15 +145268,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88955] = 3, + [135227] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6191), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 2, + ACTIONS(6024), 1, + sym__concat, + STATE(2529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5718), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4216), 21, + ACTIONS(5716), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99150,47 +145340,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [88986] = 3, - ACTIONS(3), 1, + [135319] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4218), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4220), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6193), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89017] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [135353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(6145), 1, + sym__special_character, + STATE(2442), 1, + aux_sym__literal_repeat1, + ACTIONS(6069), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4224), 21, + ACTIONS(6071), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99206,47 +145400,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89048] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [135389] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4226), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4228), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6195), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135445] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6197), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89079] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [135479] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6199), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2468), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135535] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6201), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(6118), 1, + sym__concat, + STATE(2463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5718), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4232), 21, + ACTIONS(5716), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99262,187 +145584,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89110] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [135627] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1372), 19, + ACTIONS(6203), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89141] = 3, - ACTIONS(3), 1, + sym_test_operator, + [135661] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1368), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6205), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89172] = 3, - ACTIONS(3), 1, + STATE(2459), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135717] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1293), 4, + ACTIONS(6020), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(6022), 18, sym_file_descriptor, - sym__concat, sym_variable_name, - sym_word, - ACTIONS(1291), 19, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89203] = 3, - ACTIONS(3), 1, + sym_test_operator, + [135749] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1287), 19, + ACTIONS(6207), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89234] = 3, - ACTIONS(3), 1, + sym_test_operator, + [135783] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1358), 19, + ACTIONS(6209), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89265] = 3, - ACTIONS(3), 1, + sym_test_operator, + [135817] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1358), 19, + ACTIONS(6211), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89296] = 3, + sym_test_operator, + [135851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 2, + ACTIONS(6213), 1, + sym__concat, + STATE(2495), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4236), 21, + ACTIONS(879), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99458,78 +145805,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89327] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [135887] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4238), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4240), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6219), 1, + anon_sym_RPAREN, + ACTIONS(6221), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6224), 1, + anon_sym_DOLLAR, + ACTIONS(6227), 1, + sym__special_character, + ACTIONS(6230), 1, + anon_sym_DQUOTE, + ACTIONS(6236), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6239), 1, + anon_sym_BQUOTE, + ACTIONS(6245), 1, + sym_test_operator, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(6216), 2, + sym_number, + sym_word, + ACTIONS(6233), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6242), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [135943] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6248), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89358] = 3, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [135977] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, sym_file_descriptor, + ACTIONS(6250), 1, anon_sym_LF, - ACTIONS(4244), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_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(2313), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4248), 21, + ACTIONS(4099), 3, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99538,114 +145913,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89420] = 3, - ACTIONS(3), 1, + [136023] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4250), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4252), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6252), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89451] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, - anon_sym_BQUOTE, - ACTIONS(3976), 1, - anon_sym_LPAREN, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(4115), 1, + sym_number, sym_word, - STATE(2987), 1, - aux_sym__literal_repeat1, - STATE(3210), 1, - sym_concatenation, - STATE(3403), 1, - sym_last_case_item, - ACTIONS(1831), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3972), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2962), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 4, + ACTIONS(1823), 17, sym_file_descriptor, - sym__concat, sym_variable_name, - sym_word, - ACTIONS(1354), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89539] = 3, + sym_test_operator, + [136057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 2, + ACTIONS(939), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4256), 21, + ACTIONS(937), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -99667,22 +145972,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89570] = 3, + [136089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, sym_file_descriptor, + ACTIONS(6254), 1, anon_sym_LF, - ACTIONS(4260), 21, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(2309), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + ACTIONS(2311), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4254), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99691,22 +146008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89601] = 3, + [136135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 3, + ACTIONS(931), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1406), 20, + ACTIONS(929), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99721,23 +146036,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [89632] = 5, + [136167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(6258), 1, + anon_sym_POUND, + ACTIONS(6260), 1, + aux_sym__simple_variable_name_token1, + STATE(3039), 1, + sym_string, + ACTIONS(830), 2, + sym_number, + sym_word, + ACTIONS(6256), 8, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(838), 10, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, - STATE(1872), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 3, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [136209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(3911), 18, + ACTIONS(879), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99753,13 +146100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89667] = 3, + [136241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 2, + ACTIONS(896), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4264), 21, + ACTIONS(894), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -99781,44 +146129,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89698] = 3, - ACTIONS(3), 1, + [136273] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1350), 19, - anon_sym_RPAREN, + ACTIONS(6063), 1, + sym__special_character, + STATE(2376), 1, + aux_sym__literal_repeat1, + ACTIONS(1882), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1884), 16, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89729] = 3, + sym_test_operator, + [136309] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(6258), 1, + anon_sym_POUND, + ACTIONS(6260), 1, + aux_sym__simple_variable_name_token1, + STATE(3039), 1, + sym_string, + ACTIONS(842), 2, + sym_number, sym_word, - ACTIONS(1283), 19, + ACTIONS(6256), 8, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(844), 10, anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [136351] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2315), 1, + anon_sym_LT_LT_LT, + ACTIONS(5766), 1, + sym_file_descriptor, + ACTIONS(6262), 1, + anon_sym_LF, + ACTIONS(2309), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2311), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2313), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4095), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2333), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(5764), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99827,28 +146230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [89760] = 3, + [136397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 3, + ACTIONS(900), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1422), 20, + ACTIONS(898), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99863,23 +146258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [89791] = 5, + [136429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - sym__concat, - STATE(1928), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3901), 3, + ACTIONS(892), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(3903), 18, + ACTIONS(890), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99895,41 +146288,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89826] = 3, - ACTIONS(3), 1, + [136461] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1255), 19, + ACTIONS(6264), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89857] = 3, + sym_test_operator, + [136495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 2, + ACTIONS(908), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4268), 21, + ACTIONS(906), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -99951,44 +146347,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [89888] = 3, - ACTIONS(3), 1, + [136527] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1318), 19, + ACTIONS(6266), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89919] = 3, + sym_test_operator, + [136561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 4, + ACTIONS(877), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1322), 19, - anon_sym_RPAREN, + anon_sym_LF, + ACTIONS(875), 22, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99997,57 +146401,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [89950] = 3, - ACTIONS(3), 1, + [136593] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1275), 19, + ACTIONS(6268), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [89981] = 3, + sym_test_operator, + [136627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 2, + ACTIONS(6118), 1, + sym__concat, + STATE(2463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6069), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4272), 21, + ACTIONS(6071), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100063,41 +146466,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90012] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [136663] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1420), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1418), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(875), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(877), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [90043] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [136695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(958), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4276), 21, + ACTIONS(956), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -100119,20 +146525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90074] = 5, + [136727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, - sym__concat, - STATE(1933), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 3, + ACTIONS(6145), 1, + sym__special_character, + STATE(2442), 1, + aux_sym__literal_repeat1, + ACTIONS(5718), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1249), 18, + ACTIONS(5716), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -100149,69 +146555,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90109] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [136763] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1281), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1279), 19, + ACTIONS(6270), 1, anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [90140] = 3, - ACTIONS(3), 1, + sym_test_operator, + [136797] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1412), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1410), 20, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(6272), 1, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [90171] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [136831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 2, + ACTIONS(912), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4282), 21, + ACTIONS(910), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -100233,13 +146645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90202] = 3, + [136863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 2, + ACTIONS(916), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4286), 21, + ACTIONS(914), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -100261,21 +146674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90233] = 5, + [136895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - sym__concat, - STATE(1933), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1257), 3, + ACTIONS(935), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(1255), 18, + ACTIONS(933), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100291,19 +146703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90268] = 3, + [136927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 2, + ACTIONS(6118), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6022), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4293), 21, + ACTIONS(6020), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100319,45 +146733,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90299] = 4, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [136963] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6274), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137019] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6276), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90331] = 3, + STATE(2484), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(6278), 1, + sym__concat, + STATE(2381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4224), 20, + ACTIONS(863), 20, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100372,19 +146846,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [90361] = 3, + [137111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, + ACTIONS(6280), 1, + sym__concat, + STATE(2381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4244), 20, + ACTIONS(869), 20, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100399,47 +146877,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [90391] = 4, - ACTIONS(3), 1, + [137147] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(6282), 1, anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [90423] = 3, + sym_test_operator, + [137181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 4, - sym_file_descriptor, + ACTIONS(6118), 1, sym__concat, - ts_builtin_sym_end, + STATE(2463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5968), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1287), 18, + ACTIONS(5966), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -100456,13 +146938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90453] = 3, + anon_sym_BQUOTE, + [137217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 2, + ACTIONS(6145), 1, + sym__special_character, + STATE(2442), 1, + aux_sym__literal_repeat1, + ACTIONS(5968), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4236), 20, + ACTIONS(5966), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -100481,20 +146968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [90483] = 3, + anon_sym_BQUOTE, + [137253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 4, + ACTIONS(904), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1279), 18, + ACTIONS(902), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100510,128 +146999,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90513] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1402), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1404), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90543] = 3, - ACTIONS(3), 1, + [137285] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1275), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6284), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [90573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 4, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1291), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [90603] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4299), 1, + anon_sym_DOLLAR_LPAREN, sym__special_character, - STATE(1945), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1345), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_test_operator, - [90637] = 3, + [137319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1004), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1318), 18, + ACTIONS(1002), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100647,154 +147058,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [90695] = 3, - ACTIONS(3), 1, + [137351] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1322), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6286), 1, + anon_sym_RPAREN, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [90725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, sym_file_descriptor, sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [90757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1336), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [90787] = 4, - ACTIONS(3), 1, + sym_test_operator, + [137385] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6288), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90819] = 3, + STATE(2526), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 4, + ACTIONS(1000), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1350), 18, + ACTIONS(998), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100810,17 +147158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90849] = 3, + [137473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 2, + ACTIONS(996), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4125), 20, + ACTIONS(994), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100835,20 +147186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [90879] = 3, + [137505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(990), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1354), 18, + ACTIONS(988), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100864,18 +147216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90909] = 3, + [137537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 4, + ACTIONS(986), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 18, + ACTIONS(984), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100891,18 +147245,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90939] = 3, + [137569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 4, + ACTIONS(982), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1358), 18, + ACTIONS(980), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100918,16 +147274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [90969] = 4, + [137601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6118), 1, + sym__concat, + STATE(2470), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5938), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(5936), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -100936,28 +147300,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137637] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(5151), 1, + sym_test_operator, + ACTIONS(6128), 1, + sym__special_character, + ACTIONS(6290), 1, + anon_sym_RPAREN, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(5127), 2, + sym_number, + sym_word, + ACTIONS(5143), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91001] = 3, + STATE(2496), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3047), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 4, + ACTIONS(978), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1368), 18, + ACTIONS(976), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100973,18 +147375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91031] = 3, + [137725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 4, + ACTIONS(974), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1372), 18, + ACTIONS(972), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101000,18 +147404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91061] = 3, + [137757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 4, + ACTIONS(970), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1380), 18, + ACTIONS(968), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101027,18 +147433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91091] = 3, + [137789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 4, + ACTIONS(966), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1384), 18, + ACTIONS(964), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101054,18 +147462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91121] = 3, + [137821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 4, + ACTIONS(962), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1388), 18, + ACTIONS(960), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101081,18 +147491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91151] = 3, + [137853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 4, + ACTIONS(888), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1394), 18, + ACTIONS(886), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101108,41 +147520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [91209] = 3, + [137885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 4, - sym_file_descriptor, + ACTIONS(6292), 1, sym__concat, + STATE(2678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1398), 18, + ACTIONS(875), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -101161,72 +147550,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91239] = 4, - ACTIONS(3), 1, + sym__special_character, + [137921] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(6294), 1, anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [91271] = 4, - ACTIONS(3), 1, + sym_test_operator, + [137955] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4312), 1, + ACTIONS(6296), 1, anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + ACTIONS(1817), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1823), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [91303] = 4, + sym_test_operator, + [137989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(920), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + sym__concat, + anon_sym_LF, + ACTIONS(918), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(933), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6300), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -101235,28 +147693,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138084] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3589), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6320), 1, + sym_test_operator, + STATE(3666), 1, + aux_sym__literal_repeat1, + STATE(4225), 1, + sym_concatenation, + ACTIONS(6302), 2, + sym_number, + sym_word, + ACTIONS(6312), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3663), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138139] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3405), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6326), 1, + sym_test_operator, + STATE(3640), 1, + aux_sym__literal_repeat1, + STATE(4282), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91335] = 3, + ACTIONS(6322), 2, + sym_number, + sym_word, + ACTIONS(6324), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3633), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 4, + ACTIONS(6328), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6330), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6332), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1402), 18, + ACTIONS(6334), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101272,18 +147833,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91365] = 3, + [138256] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6340), 1, + sym_test_operator, + STATE(3699), 1, + aux_sym__literal_repeat1, + STATE(4278), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6336), 2, + sym_number, + sym_word, + ACTIONS(6338), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3670), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138311] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6346), 1, + sym_test_operator, + STATE(3710), 1, + aux_sym__literal_repeat1, + STATE(4277), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6342), 2, + sym_number, + sym_word, + ACTIONS(6344), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3724), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138366] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6352), 1, + sym_test_operator, + STATE(3854), 1, + aux_sym__literal_repeat1, + STATE(4270), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6348), 2, + sym_number, + sym_word, + ACTIONS(6350), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3870), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138421] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6358), 1, + sym_test_operator, + STATE(3786), 1, + aux_sym__literal_repeat1, + STATE(4274), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6354), 2, + sym_number, + sym_word, + ACTIONS(6356), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3840), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138476] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1980), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6364), 1, + sym_test_operator, + STATE(3692), 1, + aux_sym__literal_repeat1, + STATE(4063), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6360), 2, + sym_number, + sym_word, + ACTIONS(6362), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3685), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138531] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3499), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6370), 1, + sym_test_operator, + STATE(3788), 1, + aux_sym__literal_repeat1, + STATE(4264), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6366), 2, + sym_number, + sym_word, + ACTIONS(6368), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3795), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138586] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1996), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6376), 1, + sym_test_operator, + STATE(3665), 1, + aux_sym__literal_repeat1, + STATE(4059), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6372), 2, + sym_number, + sym_word, + ACTIONS(6374), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3653), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138641] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6382), 1, + sym_test_operator, + STATE(3876), 1, + aux_sym__literal_repeat1, + STATE(4110), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6378), 2, + sym_number, + sym_word, + ACTIONS(6380), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3880), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(6384), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1328), 18, + ACTIONS(6386), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101299,18 +148181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91395] = 3, + [138727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 4, + ACTIONS(6388), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1406), 18, + ACTIONS(6390), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101326,18 +148209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91425] = 3, + [138758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 4, + ACTIONS(6392), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1410), 18, + ACTIONS(6394), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101353,18 +148237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91455] = 3, + [138789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 4, + ACTIONS(6396), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1418), 18, + ACTIONS(6398), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101380,115 +148265,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91485] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4316), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [91521] = 15, - ACTIONS(3), 1, + [138820] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(760), 1, - anon_sym_DQUOTE, - ACTIONS(4326), 1, - sym_word, - ACTIONS(4328), 1, - anon_sym_LPAREN, - ACTIONS(4330), 1, + ACTIONS(3285), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4332), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4336), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4340), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4344), 1, - sym__empty_value, - STATE(518), 1, + ACTIONS(6404), 1, + sym_test_operator, + STATE(3748), 1, aux_sym__literal_repeat1, - ACTIONS(4334), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4342), 2, + STATE(4151), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(613), 2, - sym_concatenation, - sym_array, - STATE(358), 6, + ACTIONS(6400), 2, + sym_number, + sym_word, + ACTIONS(6402), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3746), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [91575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [91607] = 3, + [138875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 4, + ACTIONS(6406), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1422), 18, + ACTIONS(6408), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101504,17 +148333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [91637] = 3, + [138906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 2, + ACTIONS(6410), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4256), 20, + ACTIONS(6412), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101529,19 +148360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [91667] = 3, + [138937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 3, + ACTIONS(6414), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1221), 19, + ACTIONS(6416), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101556,151 +148388,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, anon_sym_AMP, - [91697] = 15, - ACTIONS(3), 1, + [138968] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(948), 1, - anon_sym_DQUOTE, - ACTIONS(4348), 1, - sym_word, - ACTIONS(4350), 1, - anon_sym_LPAREN, - ACTIONS(4352), 1, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4354), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4358), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4360), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4362), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4366), 1, - sym__empty_value, - STATE(851), 1, + ACTIONS(6422), 1, + sym_test_operator, + STATE(3884), 1, aux_sym__literal_repeat1, - ACTIONS(4356), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4364), 2, + STATE(4109), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(908), 2, - sym_concatenation, - sym_array, - STATE(567), 6, + ACTIONS(6418), 2, + sym_number, + sym_word, + ACTIONS(6420), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3881), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [91751] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1398), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1400), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91781] = 15, - ACTIONS(3), 1, + [139023] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4368), 1, - sym_word, - ACTIONS(4371), 1, - anon_sym_LPAREN, - ACTIONS(4374), 1, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4377), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4380), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(4386), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4389), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4392), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - STATE(2993), 1, + ACTIONS(6428), 1, + sym_test_operator, + STATE(3869), 1, aux_sym__literal_repeat1, - STATE(3189), 1, + STATE(4114), 1, sym_concatenation, - ACTIONS(4383), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4395), 2, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2990), 6, + ACTIONS(6424), 2, + sym_number, + sym_word, + ACTIONS(6426), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3874), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [91835] = 4, + [139078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [91867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 2, + ACTIONS(6292), 1, + sym__concat, + STATE(2678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5938), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3964), 20, + ACTIONS(5936), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101716,19 +148498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [91897] = 3, + [139113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4226), 2, + ACTIONS(6430), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4228), 20, + ACTIONS(6432), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101743,18 +148526,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [91927] = 3, + [139144] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6438), 1, + sym_test_operator, + STATE(3800), 1, + aux_sym__literal_repeat1, + STATE(4265), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6434), 2, + sym_number, + sym_word, + ACTIONS(6436), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3779), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139199] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4533), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(4535), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [139230] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6444), 1, + sym_test_operator, + STATE(3853), 1, + aux_sym__literal_repeat1, + STATE(4124), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6440), 2, + sym_number, + sym_word, + ACTIONS(6442), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3861), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139285] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6450), 1, + sym_test_operator, + STATE(3848), 1, + aux_sym__literal_repeat1, + STATE(4126), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6446), 2, + sym_number, + sym_word, + ACTIONS(6448), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3851), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139340] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3853), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6456), 1, + sym_test_operator, + STATE(3860), 1, + aux_sym__literal_repeat1, + STATE(4122), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6452), 2, + sym_number, + sym_word, + ACTIONS(6454), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3857), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 2, + ACTIONS(6292), 1, + sym__concat, + STATE(2678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6112), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4188), 20, + ACTIONS(6114), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101770,18 +148744,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [91957] = 3, + [139430] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6462), 1, + sym_test_operator, + STATE(3830), 1, + aux_sym__literal_repeat1, + STATE(4137), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6458), 2, + sym_number, + sym_word, + ACTIONS(6460), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3835), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 2, + ACTIONS(6464), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(5968), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4121), 20, + ACTIONS(5966), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101797,45 +148814,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [91987] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1410), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1412), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92017] = 3, + [139520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 2, + ACTIONS(6292), 1, + sym__concat, + STATE(2678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6065), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4181), 20, + ACTIONS(6067), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101851,19 +148844,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92047] = 3, + [139555] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3277), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6470), 1, + sym_test_operator, + STATE(3777), 1, + aux_sym__literal_repeat1, + STATE(4263), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6466), 2, + sym_number, + sym_word, + ACTIONS(6468), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3762), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 4, + ACTIONS(939), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1255), 18, + ACTIONS(937), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101880,17 +148912,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [92077] = 3, + anon_sym_BQUOTE, + [139641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(6472), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4192), 20, + ACTIONS(6474), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101905,18 +148940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92107] = 3, + [139672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(6292), 1, + sym__concat, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6069), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3952), 20, + ACTIONS(6071), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -101932,57 +148970,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92137] = 15, - ACTIONS(3), 1, + [139707] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(3911), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(732), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(734), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(736), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(740), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4400), 1, - sym_word, - ACTIONS(4402), 1, - anon_sym_LPAREN, - ACTIONS(4406), 1, - sym__empty_value, - STATE(624), 1, + ACTIONS(6480), 1, + sym_test_operator, + STATE(3885), 1, aux_sym__literal_repeat1, - ACTIONS(742), 2, + STATE(4103), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4404), 2, + ACTIONS(6476), 2, + sym_number, + sym_word, + ACTIONS(6478), 2, sym_raw_string, sym_ansi_c_string, - STATE(891), 2, - sym_concatenation, - sym_array, - STATE(508), 6, + STATE(3761), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [92191] = 4, + [139762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 1, + sym__concat, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6075), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6077), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [139797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6482), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6484), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -101991,23 +149065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [92223] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [139828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(931), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4232), 20, + ACTIONS(929), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -102026,45 +149095,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92253] = 3, - ACTIONS(4141), 1, + anon_sym_BQUOTE, + [139859] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1330), 17, + ACTIONS(6292), 1, sym__concat, - anon_sym_RPAREN_RPAREN, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5718), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5716), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4410), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102073,84 +149123,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [139894] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6490), 1, + sym_test_operator, + STATE(3846), 1, + aux_sym__literal_repeat1, + STATE(4128), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92315] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4416), 1, - aux_sym__simple_variable_name_token1, - STATE(2537), 1, - sym_string, - ACTIONS(4412), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(599), 10, - anon_sym_RPAREN, - sym__special_character, + ACTIONS(6486), 2, + sym_number, + sym_word, + ACTIONS(6488), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [92351] = 3, - ACTIONS(3), 1, + STATE(3843), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139949] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1223), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1221), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(2168), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6496), 1, + sym_test_operator, + STATE(3735), 1, + aux_sym__literal_repeat1, + STATE(4070), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92381] = 3, + ACTIONS(6492), 2, + sym_number, + sym_word, + ACTIONS(6494), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3726), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 2, + ACTIONS(6498), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4196), 20, + ACTIONS(6500), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102165,54 +149234,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92411] = 15, - ACTIONS(3), 1, + [140035] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_DQUOTE, - ACTIONS(4418), 1, - sym_word, - ACTIONS(4420), 1, - anon_sym_LPAREN, - ACTIONS(4422), 1, + ACTIONS(3531), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4424), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4428), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4432), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4436), 1, - sym__empty_value, - STATE(2043), 1, + ACTIONS(6506), 1, + sym_test_operator, + STATE(3697), 1, aux_sym__literal_repeat1, - ACTIONS(4426), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4434), 2, + STATE(4250), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2113), 2, - sym_concatenation, - sym_array, - STATE(1843), 6, + ACTIONS(6502), 2, + sym_number, + sym_word, + ACTIONS(6504), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3715), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [92465] = 3, + [140090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 2, + ACTIONS(881), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4097), 20, + ACTIONS(879), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -102231,18 +149301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92495] = 3, + anon_sym_BQUOTE, + [140121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 2, + ACTIONS(6464), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(5718), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4200), 20, + ACTIONS(5716), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -102258,72 +149332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92525] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1336), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1338), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92555] = 3, - ACTIONS(4141), 1, + [140156] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 17, + ACTIONS(896), 3, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN_RPAREN, + anon_sym_LF, + ACTIONS(894), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102332,56 +149356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92617] = 6, + [140187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4440), 4, + ACTIONS(6464), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(6069), 3, + sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, + ACTIONS(6071), 18, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [92653] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4442), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102390,25 +149387,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [140222] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2489), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6512), 1, + sym_test_operator, + STATE(3889), 1, + aux_sym__literal_repeat1, + STATE(4104), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92685] = 3, + ACTIONS(6508), 2, + sym_number, + sym_word, + ACTIONS(6510), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3891), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 3, + ACTIONS(6464), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(6075), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3903), 19, - anon_sym_RPAREN, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6077), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102417,27 +149457,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [140312] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6518), 1, + sym_test_operator, + STATE(3743), 1, + aux_sym__literal_repeat1, + STATE(4252), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92715] = 3, + ACTIONS(6514), 2, + sym_number, + sym_word, + ACTIONS(6516), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3728), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 2, + ACTIONS(6520), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4105), 20, + ACTIONS(6522), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102452,19 +149528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92745] = 3, + [140398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 2, + ACTIONS(6524), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4109), 20, + ACTIONS(6526), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102479,71 +149556,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92775] = 5, - ACTIONS(4141), 1, + [140429] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4444), 1, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, + anon_sym_DOLLAR, + ACTIONS(396), 1, + anon_sym_DQUOTE, + ACTIONS(402), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(404), 1, + anon_sym_BQUOTE, + ACTIONS(5108), 1, sym__special_character, - STATE(2012), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1345), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92809] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1255), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6532), 1, sym_test_operator, - [92839] = 3, + ACTIONS(6534), 1, + sym_regex, + STATE(1052), 1, + aux_sym__literal_repeat1, + STATE(1736), 1, + sym_concatenation, + ACTIONS(406), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6528), 2, + sym_number, + sym_word, + ACTIONS(6530), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(886), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(900), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4204), 20, + ACTIONS(898), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -102562,15 +149623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92869] = 3, + anon_sym_BQUOTE, + [140515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 2, + ACTIONS(892), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4208), 20, + ACTIONS(890), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -102589,18 +149651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92899] = 4, + anon_sym_BQUOTE, + [140546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6536), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6538), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102609,23 +149677,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [140577] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6544), 1, + sym_test_operator, + STATE(3823), 1, + aux_sym__literal_repeat1, + STATE(4138), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6540), 2, + sym_number, + sym_word, + ACTIONS(6542), 2, sym_raw_string, sym_ansi_c_string, + STATE(3827), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140632] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6550), 1, + sym_test_operator, + STATE(3750), 1, + aux_sym__literal_repeat1, + STATE(4071), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6546), 2, + sym_number, + sym_word, + ACTIONS(6548), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3737), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140687] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(286), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + anon_sym_DOLLAR, + ACTIONS(292), 1, + anon_sym_DQUOTE, + ACTIONS(298), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(300), 1, anon_sym_BQUOTE, + ACTIONS(5163), 1, + sym__special_character, + ACTIONS(6556), 1, + sym_test_operator, + ACTIONS(6558), 1, + sym_regex, + STATE(894), 1, + aux_sym__literal_repeat1, + STATE(1032), 1, + sym_concatenation, + ACTIONS(302), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92931] = 3, + ACTIONS(6552), 2, + sym_number, + sym_word, + ACTIONS(6554), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(495), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 2, + ACTIONS(970), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4220), 20, + ACTIONS(968), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -102644,77 +149827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [92961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [92993] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4453), 1, - sym__special_character, - STATE(1945), 1, - aux_sym__literal_repeat1, - ACTIONS(4075), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93027] = 3, + [140773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 4, + ACTIONS(6112), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1283), 18, + ACTIONS(6114), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102730,16 +149857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [93057] = 4, + [140804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6560), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6562), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102748,140 +149881,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [140835] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3557), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6568), 1, + sym_test_operator, + STATE(3637), 1, + aux_sym__literal_repeat1, + STATE(4247), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6564), 2, + sym_number, sym_word, - ACTIONS(3964), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_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(6566), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3634), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140890] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3219), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6574), 1, + sym_test_operator, + STATE(3720), 1, + aux_sym__literal_repeat1, + STATE(4251), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93119] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1275), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1277), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93149] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4457), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [93185] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4459), 1, - sym__concat, - STATE(2160), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1223), 15, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [93219] = 3, + ACTIONS(6570), 2, + sym_number, + sym_word, + ACTIONS(6572), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3683), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [140945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(6576), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3903), 20, + ACTIONS(6578), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102896,128 +149992,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93249] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4461), 1, - sym__concat, - STATE(2174), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1223), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93283] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1283), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1285), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93313] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1350), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1352), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93343] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1354), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1356), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93373] = 4, + [140976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6580), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6582), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103026,27 +150017,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [93405] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(6584), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4240), 20, + ACTIONS(6586), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103061,70 +150048,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4465), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, anon_sym_AMP, - [93463] = 2, + [141038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 22, + ACTIONS(908), 3, + sym_file_descriptor, + sym__concat, anon_sym_LF, + ACTIONS(906), 20, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [93491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4467), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103133,53 +150072,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [141069] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6592), 1, + sym_test_operator, + STATE(3808), 1, + aux_sym__literal_repeat1, + STATE(4149), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93523] = 2, + ACTIONS(6588), 2, + sym_number, + sym_word, + ACTIONS(6590), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3816), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 22, + ACTIONS(6594), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(6596), 21, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - [93551] = 3, + [141155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 2, + ACTIONS(6598), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4216), 20, + ACTIONS(6600), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103194,19 +150172,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93581] = 3, + [141186] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3187), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6606), 1, + sym_test_operator, + STATE(3641), 1, + aux_sym__literal_repeat1, + STATE(4244), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6602), 2, + sym_number, + sym_word, + ACTIONS(6604), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3644), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141241] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2458), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6612), 1, + sym_test_operator, + STATE(3892), 1, + aux_sym__literal_repeat1, + STATE(4127), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6608), 2, + sym_number, + sym_word, + ACTIONS(6610), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3878), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(6614), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4248), 20, + ACTIONS(6616), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103221,18 +150280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93611] = 4, + [141327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6618), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6620), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103241,122 +150305,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141358] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3161), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6626), 1, + sym_test_operator, + STATE(3647), 1, + aux_sym__literal_repeat1, + STATE(4241), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93643] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - anon_sym_DQUOTE, - ACTIONS(4473), 1, + ACTIONS(6622), 2, + sym_number, sym_word, - ACTIONS(4475), 1, - anon_sym_LPAREN, - ACTIONS(4477), 1, + ACTIONS(6624), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3650), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141413] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4479), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4483), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4485), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4487), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4491), 1, - sym__empty_value, - STATE(799), 1, + ACTIONS(6632), 1, + sym_test_operator, + STATE(3803), 1, aux_sym__literal_repeat1, - ACTIONS(4481), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4489), 2, + STATE(4152), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(902), 2, - sym_concatenation, - sym_array, - STATE(724), 6, + ACTIONS(6628), 2, + sym_number, + sym_word, + ACTIONS(6630), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3806), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [93697] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1358), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93727] = 4, - ACTIONS(3), 1, + [141468] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4493), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(3789), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6638), 1, + sym_test_operator, + STATE(3815), 1, + aux_sym__literal_repeat1, + STATE(4146), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93759] = 5, + ACTIONS(6634), 2, + sym_number, + sym_word, + ACTIONS(6636), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3812), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - sym__special_character, - STATE(1860), 1, - aux_sym__literal_repeat1, - ACTIONS(1416), 3, + ACTIONS(6292), 1, + sym__concat, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5968), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1414), 17, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5966), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103365,26 +150455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93793] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(6640), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4252), 20, + ACTIONS(6642), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103399,49 +150486,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93823] = 6, + [141589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4495), 4, + ACTIONS(6644), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(6646), 21, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [93859] = 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, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 2, + ACTIONS(6648), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4212), 20, + ACTIONS(6650), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103456,18 +150542,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93889] = 4, + [141651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6652), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6654), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103476,27 +150567,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141682] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3129), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6660), 1, + sym_test_operator, + STATE(3656), 1, + aux_sym__literal_repeat1, + STATE(4227), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93921] = 3, + ACTIONS(6656), 2, + sym_number, + sym_word, + ACTIONS(6658), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3659), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(6662), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4161), 20, + ACTIONS(6664), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103511,19 +150638,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93951] = 3, + [141768] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5601), 1, + anon_sym_DOLLAR, + ACTIONS(6666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6668), 1, + sym__special_character, + ACTIONS(6670), 1, + anon_sym_DQUOTE, + ACTIONS(6674), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6676), 1, + anon_sym_BQUOTE, + ACTIONS(6680), 1, + sym_test_operator, + STATE(2995), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 2, + sym_number, + sym_word, + ACTIONS(6672), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6678), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2310), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2990), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 2, + ACTIONS(6022), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4137), 20, + ACTIONS(6020), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103538,100 +150705,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [93981] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1358), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94011] = 4, - ACTIONS(3), 1, + [141852] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4499), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(5601), 1, anon_sym_DOLLAR, + ACTIONS(6666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6668), 1, sym__special_character, + ACTIONS(6670), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6674), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6676), 1, anon_sym_BQUOTE, + ACTIONS(6680), 1, + sym_test_operator, + STATE(2995), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 2, + sym_number, + sym_word, + ACTIONS(6672), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6678), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94043] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1287), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1289), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94073] = 4, + STATE(2315), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2990), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4501), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6682), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6684), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103640,66 +150769,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [141936] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3103), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6690), 1, + sym_test_operator, + STATE(3661), 1, + aux_sym__literal_repeat1, + STATE(4226), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6686), 2, + sym_number, + sym_word, + ACTIONS(6688), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + STATE(3668), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141991] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3615), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6696), 1, + sym_test_operator, + STATE(3680), 1, + aux_sym__literal_repeat1, + STATE(4215), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94105] = 15, - ACTIONS(3), 1, + ACTIONS(6692), 2, + sym_number, + sym_word, + ACTIONS(6694), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3677), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142046] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(611), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(613), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(615), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(617), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(619), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4503), 1, - sym_word, - ACTIONS(4505), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - sym__empty_value, - STATE(532), 1, + ACTIONS(6702), 1, + sym_test_operator, + STATE(3776), 1, aux_sym__literal_repeat1, - ACTIONS(621), 2, + STATE(4075), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4507), 2, + ACTIONS(6698), 2, + sym_number, + sym_word, + ACTIONS(6700), 2, sym_raw_string, sym_ansi_c_string, - STATE(603), 2, - sym_concatenation, - sym_array, - STATE(324), 6, + STATE(3872), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94159] = 3, + [142101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(6704), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4113), 20, + ACTIONS(6706), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103714,19 +150920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94189] = 3, + [142132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 2, + ACTIONS(6708), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3907), 20, + ACTIONS(6710), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103741,81 +150948,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94219] = 15, - ACTIONS(3), 1, + [142163] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(816), 1, - anon_sym_DQUOTE, - ACTIONS(4511), 1, - sym_word, - ACTIONS(4513), 1, - anon_sym_LPAREN, - ACTIONS(4515), 1, + ACTIONS(3071), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4517), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4521), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4523), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4525), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4529), 1, - sym__empty_value, - STATE(655), 1, + ACTIONS(6716), 1, + sym_test_operator, + STATE(3675), 1, aux_sym__literal_repeat1, - ACTIONS(4519), 2, + STATE(4216), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6712), 2, + sym_number, + sym_word, + ACTIONS(6714), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4527), 2, + STATE(3682), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142218] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6722), 1, + sym_test_operator, + STATE(3790), 1, + aux_sym__literal_repeat1, + STATE(4160), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - sym_array, - STATE(538), 6, + ACTIONS(6718), 2, + sym_number, + sym_word, + ACTIONS(6720), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3793), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94273] = 3, - ACTIONS(3), 1, + [142273] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4146), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4148), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3763), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [94303] = 3, + ACTIONS(6728), 1, + sym_test_operator, + STATE(3801), 1, + aux_sym__literal_repeat1, + STATE(4098), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6724), 2, + sym_number, + sym_word, + ACTIONS(6726), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3798), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(912), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4260), 20, + ACTIONS(910), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -103834,15 +151095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94333] = 3, + anon_sym_BQUOTE, + [142359] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3045), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6734), 1, + sym_test_operator, + STATE(3684), 1, + aux_sym__literal_repeat1, + STATE(4214), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6730), 2, + sym_number, + sym_word, + ACTIONS(6732), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 2, + ACTIONS(916), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4133), 20, + ACTIONS(914), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -103861,19 +151163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94363] = 3, + anon_sym_BQUOTE, + [142445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 2, + ACTIONS(6736), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4129), 20, + ACTIONS(6738), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103888,123 +151192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94393] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1422), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1424), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94423] = 4, + [142476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(920), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [94455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [94483] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1418), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1420), 17, sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 2, - sym_file_descriptor, anon_sym_LF, - ACTIONS(4264), 20, + ACTIONS(918), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104023,43 +151219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [94575] = 3, + [142507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 2, + ACTIONS(877), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4169), 20, + ACTIONS(875), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104078,126 +151246,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94605] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4152), 1, - sym__concat, - STATE(1852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, sym__special_character, - ACTIONS(1223), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4173), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_AMP, - [94669] = 4, - ACTIONS(3), 1, + [142538] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4537), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(3963), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6744), 1, + sym_test_operator, + STATE(3845), 1, + aux_sym__literal_repeat1, + STATE(4096), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94701] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1406), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1408), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94731] = 3, + ACTIONS(6740), 2, + sym_number, + sym_word, + ACTIONS(6742), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3849), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 2, + ACTIONS(935), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4177), 20, + ACTIONS(933), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104216,272 +151315,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [94761] = 4, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [142624] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4539), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(2781), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6750), 1, + sym_test_operator, + STATE(3783), 1, + aux_sym__literal_repeat1, + STATE(4155), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94793] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1291), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1293), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94823] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1368), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1370), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94853] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [94889] = 6, - ACTIONS(3), 1, + ACTIONS(6746), 2, + sym_number, + sym_word, + ACTIONS(6748), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3771), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142679] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4543), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3647), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6756), 1, sym_test_operator, - [94925] = 3, - ACTIONS(4141), 1, + STATE(3711), 1, + aux_sym__literal_repeat1, + STATE(4200), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6752), 2, + sym_number, + sym_word, + ACTIONS(6754), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3708), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142734] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1372), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1374), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, + anon_sym_DOLLAR, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(208), 1, + anon_sym_BQUOTE, + ACTIONS(5186), 1, + sym__special_character, + ACTIONS(6762), 1, sym_test_operator, - [94955] = 3, - ACTIONS(4141), 1, + ACTIONS(6764), 1, + sym_regex, + STATE(1801), 1, + aux_sym__literal_repeat1, + STATE(2001), 1, + sym_concatenation, + ACTIONS(210), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6758), 2, + sym_number, + sym_word, + ACTIONS(6760), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1384), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142789] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1384), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1386), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6770), 1, sym_test_operator, - [94985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, + STATE(3791), 1, + aux_sym__literal_repeat1, + STATE(4081), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6766), 2, + sym_number, sym_word, - ACTIONS(1183), 18, - anon_sym_LT, - anon_sym_GT, - anon_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(6768), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3782), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142844] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6776), 1, + sym_test_operator, + STATE(3696), 1, + aux_sym__literal_repeat1, + STATE(4202), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95017] = 6, + ACTIONS(6772), 2, + sym_number, + sym_word, + ACTIONS(6774), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3701), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4547), 4, + ACTIONS(6778), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(6780), 21, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [95053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104490,107 +151541,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [142930] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2426), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6786), 1, + sym_test_operator, + STATE(3867), 1, + aux_sym__literal_repeat1, + STATE(4055), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95085] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1388), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1390), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4551), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [95151] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1380), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1382), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95181] = 3, + ACTIONS(6782), 2, + sym_number, + sym_word, + ACTIONS(6784), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3855), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 2, + ACTIONS(950), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4165), 20, + ACTIONS(948), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104609,49 +151611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [95211] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4553), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [95247] = 3, + anon_sym_BQUOTE, + [143016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 2, + ACTIONS(6788), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4268), 20, + ACTIONS(6790), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104666,57 +151640,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95277] = 15, - ACTIONS(3), 1, + [143047] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(503), 1, + ACTIONS(5601), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(6666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6668), 1, sym__special_character, - ACTIONS(507), 1, + ACTIONS(6670), 1, anon_sym_DQUOTE, - ACTIONS(509), 1, + ACTIONS(6674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(513), 1, + ACTIONS(6676), 1, anon_sym_BQUOTE, - ACTIONS(4555), 1, - sym_word, - ACTIONS(4557), 1, - anon_sym_LPAREN, - ACTIONS(4561), 1, - sym__empty_value, - STATE(348), 1, + ACTIONS(6680), 1, + sym_test_operator, + STATE(2995), 1, aux_sym__literal_repeat1, - ACTIONS(515), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4559), 2, + ACTIONS(5595), 2, + sym_number, + sym_word, + ACTIONS(6672), 2, sym_raw_string, sym_ansi_c_string, - STATE(544), 2, + ACTIONS(6678), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2296), 2, sym_concatenation, - sym_array, - STATE(292), 6, + aux_sym_for_statement_repeat1, + STATE(2990), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95331] = 4, + [143100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, - anon_sym_RPAREN, - ACTIONS(1197), 3, + ACTIONS(6792), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1183), 18, + anon_sym_LF, + ACTIONS(6794), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104725,27 +151704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [95363] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [143131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 2, + ACTIONS(6796), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4272), 20, + ACTIONS(6798), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104760,74 +151735,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95393] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4565), 1, - sym__concat, - STATE(2093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95427] = 3, - ACTIONS(4141), 1, + [143162] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(1394), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1396), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6804), 1, sym_test_operator, - [95457] = 3, + STATE(3704), 1, + aux_sym__literal_repeat1, + STATE(4201), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6800), 2, + sym_number, + sym_word, + ACTIONS(6802), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3707), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 2, + ACTIONS(6806), 1, + sym__concat, + STATE(2693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4101), 20, + ACTIONS(863), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -104843,45 +151805,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95487] = 6, - ACTIONS(3), 1, + [143252] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_QMARK, - ACTIONS(4320), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4324), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4568), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4318), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2038), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6812), 1, sym_test_operator, - [95523] = 3, + STATE(3769), 1, + aux_sym__literal_repeat1, + STATE(4078), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6808), 2, + sym_number, + sym_word, + ACTIONS(6810), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3820), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143307] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + sym_test_operator, + STATE(3766), 1, + aux_sym__literal_repeat1, + STATE(4194), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6814), 2, + sym_number, + sym_word, + ACTIONS(6816), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3773), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(904), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4276), 20, + ACTIONS(902), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104900,15 +151912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95553] = 3, + anon_sym_BQUOTE, + [143393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 2, + ACTIONS(1004), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4293), 20, + ACTIONS(1002), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104927,15 +151940,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95583] = 3, + anon_sym_BQUOTE, + [143424] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3673), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6824), 1, + sym_test_operator, + STATE(3725), 1, + aux_sym__literal_repeat1, + STATE(4195), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6820), 2, + sym_number, + sym_word, + ACTIONS(6822), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3722), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 2, + ACTIONS(954), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(4286), 20, + ACTIONS(952), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -104954,45 +152008,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95613] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1320), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95643] = 3, + anon_sym_BQUOTE, + [143510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 2, + ACTIONS(6826), 1, + sym__concat, + STATE(2693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4282), 20, + ACTIONS(869), 18, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -105008,137 +152039,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [95673] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1322), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1324), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95703] = 15, - ACTIONS(3), 1, + [143545] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(706), 1, + ACTIONS(2112), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(708), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(710), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(712), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(716), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4570), 1, - sym_word, - ACTIONS(4572), 1, - anon_sym_LPAREN, - ACTIONS(4576), 1, - sym__empty_value, - STATE(658), 1, + ACTIONS(6832), 1, + sym_test_operator, + STATE(3671), 1, aux_sym__literal_repeat1, - ACTIONS(718), 2, + STATE(4222), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4574), 2, + ACTIONS(6828), 2, + sym_number, + sym_word, + ACTIONS(6830), 2, sym_raw_string, sym_ansi_c_string, - STATE(758), 2, + STATE(3657), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143600] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6838), 1, + sym_test_operator, + STATE(3758), 1, + aux_sym__literal_repeat1, + STATE(4276), 1, sym_concatenation, - sym_array, - STATE(500), 6, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6834), 2, + sym_number, + sym_word, + ACTIONS(6836), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3841), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95757] = 3, - ACTIONS(4141), 1, + [143655] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 6, + ACTIONS(6065), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6067), 21, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1420), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95786] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1394), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1396), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95815] = 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, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [143686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 3, + ACTIONS(6840), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4121), 18, + ACTIONS(6842), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105154,93 +152176,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [95844] = 3, - ACTIONS(3), 1, + [143717] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1568), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1566), 18, + ACTIONS(1869), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1871), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [95873] = 4, - ACTIONS(3), 1, + sym_test_operator, + [143748] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(4578), 1, - sym__concat, - STATE(2117), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4513), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(4515), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [95904] = 3, - ACTIONS(4141), 1, + sym_test_operator, + [143779] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4533), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4580), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2955), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6848), 1, sym_test_operator, - [95933] = 3, + STATE(3719), 1, + aux_sym__literal_repeat1, + STATE(4196), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6844), 2, + sym_number, + sym_word, + ACTIONS(6846), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3669), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 3, + ACTIONS(6850), 1, + sym__concat, + STATE(2693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(881), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4181), 18, + ACTIONS(879), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -105259,17 +152302,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [95962] = 3, + [143869] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6857), 1, + sym_test_operator, + STATE(3852), 1, + aux_sym__literal_repeat1, + STATE(4097), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6853), 2, + sym_number, + sym_word, + ACTIONS(6855), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3842), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [143924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 3, + ACTIONS(6859), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4188), 18, + ACTIONS(6861), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105285,14 +152370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [95991] = 3, + [143955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 3, + ACTIONS(6292), 1, + sym__concat, + STATE(2678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6022), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4105), 18, + ACTIONS(6020), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -105311,67 +152400,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [96020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1237), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [96049] = 4, - ACTIONS(3), 1, + [143990] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4582), 1, - sym__concat, - STATE(2114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 19, + ACTIONS(3997), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6867), 1, + sym_test_operator, + STATE(3825), 1, + aux_sym__literal_repeat1, + STATE(4088), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6863), 2, + sym_number, sym_word, - [96080] = 3, + ACTIONS(6865), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3832), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [144045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 3, + ACTIONS(1000), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1562), 18, + sym__concat, + anon_sym_LF, + ACTIONS(998), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -105380,566 +152463,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [96109] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4585), 1, - sym__special_character, - STATE(2203), 1, - aux_sym__literal_repeat1, - ACTIONS(4075), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96142] = 4, - ACTIONS(3), 1, + [144076] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4587), 1, - sym__concat, - STATE(2114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 19, + ACTIONS(2839), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, + ACTIONS(6308), 1, sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6316), 1, anon_sym_BQUOTE, + ACTIONS(6873), 1, + sym_test_operator, + STATE(3760), 1, + aux_sym__literal_repeat1, + STATE(4170), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6869), 2, + sym_number, sym_word, - [96173] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4459), 1, - sym__concat, - STATE(2160), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4018), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96206] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4591), 1, - anon_sym_RPAREN, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, - anon_sym_BQUOTE, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, + ACTIONS(6871), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + STATE(3765), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96257] = 14, - ACTIONS(3), 1, + [144131] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4607), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(6879), 1, + sym_test_operator, + STATE(3819), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(4086), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2224), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(6875), 2, + sym_number, + sym_word, + ACTIONS(6877), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3814), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96308] = 3, - ACTIONS(4141), 1, + [144186] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 6, + ACTIONS(6881), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(922), 18, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1223), 15, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [96337] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1422), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1424), 15, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [144221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(994), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96366] = 14, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144252] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(2929), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4609), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(6888), 1, + sym_test_operator, + STATE(3727), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(4193), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2133), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(6884), 2, + sym_number, + sym_word, + ACTIONS(6886), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3730), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96417] = 3, - ACTIONS(4141), 1, + [144307] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1412), 15, + ACTIONS(990), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(988), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96446] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1406), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1408), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96475] = 14, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144338] = 15, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(3731), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4611), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(6894), 1, + sym_test_operator, + STATE(3770), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(4169), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2119), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(6890), 2, + sym_number, + sym_word, + ACTIONS(6892), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3767), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96526] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1328), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1330), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96555] = 3, - ACTIONS(4141), 1, + [144393] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 6, + ACTIONS(6896), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6898), 21, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1404), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96584] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1398), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1400), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96613] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [144424] = 15, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(4613), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5098), 1, + sym__special_character, + ACTIONS(6904), 1, + sym_test_operator, + ACTIONS(6906), 1, + sym_regex, + STATE(1785), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(2034), 1, + sym_concatenation, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(6900), 2, + sym_number, + sym_word, + ACTIONS(6902), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1118), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96664] = 3, - ACTIONS(4141), 1, + [144479] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 6, + ACTIONS(6908), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6910), 21, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1390), 15, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [144510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5938), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5936), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [144541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(984), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96693] = 3, - ACTIONS(4141), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144572] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 6, + ACTIONS(982), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(980), 20, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1386), 15, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(976), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96722] = 14, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(974), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(972), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144665] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2364), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6308), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4615), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(6916), 1, + sym_test_operator, + STATE(3833), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(4089), 1, + sym_concatenation, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(6912), 2, + sym_number, + sym_word, + ACTIONS(6914), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3822), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96773] = 3, + [144720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 3, + ACTIONS(6918), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4192), 18, + ACTIONS(6920), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105955,68 +153018,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [96802] = 3, - ACTIONS(4141), 1, + [144751] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1382), 15, + ACTIONS(935), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(933), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96831] = 3, - ACTIONS(4141), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144782] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 6, + ACTIONS(6922), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6924), 21, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1374), 15, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [144813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 3, + sym_file_descriptor, sym__concat, + anon_sym_LF, + ACTIONS(964), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [144844] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2897), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6930), 1, + sym_test_operator, + STATE(3736), 1, + aux_sym__literal_repeat1, + STATE(4182), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6926), 2, + sym_number, + sym_word, + ACTIONS(6928), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3739), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [144899] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6936), 1, + sym_test_operator, + STATE(3698), 1, + aux_sym__literal_repeat1, + STATE(4203), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6932), 2, + sym_number, + sym_word, + ACTIONS(6934), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3689), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [144954] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3713), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6942), 1, + sym_test_operator, + STATE(3756), 1, + aux_sym__literal_repeat1, + STATE(4175), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6938), 2, + sym_number, + sym_word, + ACTIONS(6940), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3753), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145009] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6948), 1, sym_test_operator, - [96860] = 3, + STATE(3871), 1, + aux_sym__literal_repeat1, + STATE(4113), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6944), 2, + sym_number, + sym_word, + ACTIONS(6946), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3864), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 3, + ACTIONS(962), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(4196), 18, + ACTIONS(960), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -106033,42 +153289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [96889] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1368), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1370), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96918] = 3, + anon_sym_BQUOTE, + [145095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 3, + ACTIONS(888), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(4097), 18, + ACTIONS(886), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -106085,17 +153317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [96947] = 3, + anon_sym_BQUOTE, + [145126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 3, + ACTIONS(6950), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4232), 18, + ACTIONS(6952), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106111,16 +153346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [96976] = 3, + [145157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 3, + ACTIONS(958), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(4200), 18, + ACTIONS(956), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -106137,16 +153373,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97005] = 3, + anon_sym_BQUOTE, + [145188] = 15, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_RBRACE, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, + anon_sym_DOLLAR, + ACTIONS(6308), 1, + sym__special_character, + ACTIONS(6310), 1, + anon_sym_DQUOTE, + ACTIONS(6314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6316), 1, + anon_sym_BQUOTE, + ACTIONS(6958), 1, + sym_test_operator, + STATE(3740), 1, + aux_sym__literal_repeat1, + STATE(4181), 1, + sym_concatenation, + ACTIONS(6318), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6954), 2, + sym_number, + sym_word, + ACTIONS(6956), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3745), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145243] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6964), 1, + anon_sym_DOLLAR, + ACTIONS(6966), 1, + sym__special_character, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6974), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, + sym_test_operator, + STATE(2483), 1, + aux_sym__literal_repeat1, + STATE(2788), 1, + sym_concatenation, + ACTIONS(6960), 2, + sym_number, + sym_word, + ACTIONS(6970), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2465), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145295] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6984), 1, + anon_sym_DOLLAR, + ACTIONS(6986), 1, + sym__special_character, + ACTIONS(6988), 1, + anon_sym_DQUOTE, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6994), 1, + anon_sym_BQUOTE, + ACTIONS(6998), 1, + sym_test_operator, + STATE(2608), 1, + aux_sym__literal_repeat1, + STATE(2945), 1, + sym_concatenation, + ACTIONS(6980), 2, + sym_number, + sym_word, + ACTIONS(6990), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6996), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2586), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 3, + ACTIONS(6708), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4204), 18, + ACTIONS(6710), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -106163,185 +153516,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97034] = 14, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [145377] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(7006), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4617), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(7018), 1, + sym_test_operator, + STATE(2416), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, + STATE(2688), 1, + sym_concatenation, + ACTIONS(7000), 2, + sym_number, + sym_word, + ACTIONS(7010), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4605), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2130), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + STATE(2406), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97085] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4619), 1, - sym__special_character, - STATE(2179), 1, - aux_sym__literal_repeat1, - ACTIONS(4075), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97118] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1358), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97147] = 3, - ACTIONS(4141), 1, + [145429] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 15, + ACTIONS(912), 4, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97176] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1354), 6, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(910), 18, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1356), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97205] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1350), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1352), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97234] = 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, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [145459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 3, + ACTIONS(6536), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4264), 18, + ACTIONS(6538), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -106358,40 +153608,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97263] = 3, - ACTIONS(4141), 1, + anon_sym_BQUOTE, + [145489] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(1336), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1338), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5802), 1, + anon_sym_DOLLAR, + ACTIONS(5804), 1, + sym__special_character, + ACTIONS(5808), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5810), 1, + anon_sym_BQUOTE, + ACTIONS(7024), 1, sym_test_operator, - [97292] = 3, + STATE(2403), 1, + aux_sym__literal_repeat1, + STATE(2477), 1, + sym_concatenation, + ACTIONS(5812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7020), 2, + sym_number, + sym_word, + ACTIONS(7022), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2354), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 3, + ACTIONS(916), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3964), 18, + ACTIONS(914), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106410,261 +153674,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97321] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1322), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1324), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97350] = 3, - ACTIONS(4141), 1, + [145571] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(1318), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1320), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, + anon_sym_DOLLAR, + ACTIONS(7032), 1, + sym__special_character, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + anon_sym_BQUOTE, + ACTIONS(7044), 1, sym_test_operator, - [97379] = 3, - ACTIONS(4141), 1, + STATE(3614), 1, + aux_sym__literal_repeat1, + STATE(3905), 1, + sym_concatenation, + ACTIONS(7026), 2, + sym_number, + sym_word, + ACTIONS(7036), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7042), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3888), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145623] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1291), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1293), 15, + ACTIONS(920), 4, + sym_file_descriptor, sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97408] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1287), 6, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(918), 18, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1289), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97437] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1283), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1285), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97466] = 3, - ACTIONS(4141), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [145653] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 6, + ACTIONS(877), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(875), 19, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97495] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1279), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97524] = 14, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [145683] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(7040), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + ACTIONS(7048), 1, + anon_sym_RBRACK, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7050), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7046), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3893), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97575] = 5, - ACTIONS(4141), 1, + [145731] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, + ACTIONS(908), 4, + sym_file_descriptor, sym__concat, - STATE(2093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1251), 14, - anon_sym_RPAREN, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(906), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97608] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [145761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 3, + ACTIONS(935), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4208), 18, + ACTIONS(933), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106683,14 +153856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97637] = 3, + [145791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 3, + ACTIONS(892), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4220), 18, + ACTIONS(890), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106709,40 +153883,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97666] = 3, - ACTIONS(3), 1, + [145821] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4627), 1, - sym__concat, - ACTIONS(4625), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5802), 1, anon_sym_DOLLAR, + ACTIONS(5804), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5808), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5810), 1, anon_sym_BQUOTE, + ACTIONS(7058), 1, + sym_test_operator, + STATE(2394), 1, + aux_sym__literal_repeat1, + STATE(2491), 1, + sym_concatenation, + ACTIONS(5812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7054), 2, + sym_number, sym_word, - [97695] = 3, + ACTIONS(7056), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2365), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 3, + ACTIONS(950), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4224), 18, + ACTIONS(948), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106761,68 +153948,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97724] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4629), 1, - sym__special_character, - STATE(2012), 1, - aux_sym__literal_repeat1, - ACTIONS(4075), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97757] = 3, + [145903] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - sym__concat, - ACTIONS(4631), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(7034), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7040), 1, anon_sym_BQUOTE, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7060), 1, + anon_sym_RBRACK, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7050), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7046), 4, + sym__special_character, + sym_number, + sym__comment_word, sym_word, - [97786] = 3, + STATE(3893), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [145951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 3, + ACTIONS(954), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4240), 18, + ACTIONS(952), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106841,104 +154011,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97815] = 3, - ACTIONS(4141), 1, + [145981] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 6, + ACTIONS(6022), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6020), 20, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1277), 15, - sym__concat, anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97844] = 14, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [146011] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6984), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6986), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6988), 1, + anon_sym_DQUOTE, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - ACTIONS(4635), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(7066), 1, + sym_test_operator, + STATE(2606), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(2889), 1, + sym_concatenation, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2159), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7062), 2, + sym_number, + sym_word, + ACTIONS(7064), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2589), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97895] = 4, + [146063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, + ACTIONS(900), 4, + sym_file_descriptor, sym__concat, - STATE(2117), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4637), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [97926] = 3, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(898), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 3, + ACTIONS(896), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4256), 18, + ACTIONS(894), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106957,14 +154130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97955] = 3, + [146123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 3, + ACTIONS(881), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4260), 18, + ACTIONS(879), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -106983,105 +154157,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97984] = 14, - ACTIONS(3), 1, + [146153] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5976), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, + ACTIONS(5980), 1, + anon_sym_DQUOTE, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(5986), 1, anon_sym_BQUOTE, - ACTIONS(4639), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(7070), 1, + sym__special_character, + ACTIONS(7074), 1, + sym_test_operator, + STATE(3430), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(3548), 1, + sym_concatenation, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7068), 2, + sym_number, + sym_word, + ACTIONS(7072), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3432), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98035] = 5, - ACTIONS(4141), 1, + [146205] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, + ACTIONS(935), 4, + sym_file_descriptor, sym__concat, - STATE(2191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1251), 14, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(933), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98068] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 1, + ACTIONS(931), 4, + sym_file_descriptor, sym__concat, - ACTIONS(4643), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(929), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146265] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5976), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5980), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5986), 1, anon_sym_BQUOTE, + ACTIONS(7070), 1, + sym__special_character, + ACTIONS(7080), 1, + sym_test_operator, + STATE(3447), 1, + aux_sym__literal_repeat1, + STATE(3558), 1, + sym_concatenation, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7076), 2, + sym_number, sym_word, - [98097] = 3, + ACTIONS(7078), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3426), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 3, + ACTIONS(939), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4212), 18, + ACTIONS(937), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107100,14 +154314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98126] = 3, + [146347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 3, + ACTIONS(958), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4252), 18, + ACTIONS(956), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107126,96 +154341,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98155] = 5, - ACTIONS(4141), 1, + [146377] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(888), 4, + sym_file_descriptor, sym__concat, - STATE(2174), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4018), 5, - anon_sym_EQ, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(886), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 14, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(960), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98188] = 5, - ACTIONS(4141), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [146437] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, + anon_sym_DOLLAR, + ACTIONS(7032), 1, sym__special_character, - STATE(2179), 1, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + anon_sym_BQUOTE, + ACTIONS(7086), 1, + sym_test_operator, + STATE(3610), 1, aux_sym__literal_repeat1, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1345), 14, + STATE(3983), 1, + sym_concatenation, + ACTIONS(7042), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7082), 2, + sym_number, + sym_word, + ACTIONS(7084), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3749), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6112), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6114), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98221] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1221), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1223), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [146519] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, + anon_sym_DOLLAR, + ACTIONS(7006), 1, + sym__special_character, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + ACTIONS(7012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7014), 1, + anon_sym_BQUOTE, + ACTIONS(7092), 1, + sym_test_operator, + STATE(2427), 1, + aux_sym__literal_repeat1, + STATE(2620), 1, + sym_concatenation, + ACTIONS(7016), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7088), 2, + sym_number, + sym_word, + ACTIONS(7090), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2421), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146571] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, + anon_sym_DOLLAR, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + anon_sym_BQUOTE, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7094), 1, + anon_sym_RBRACK, + ACTIONS(7042), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7050), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7046), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3893), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146619] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(5625), 1, sym__special_character, + ACTIONS(7100), 1, sym_test_operator, - [98250] = 3, + STATE(3577), 1, + aux_sym__literal_repeat1, + STATE(3929), 1, + sym_concatenation, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7096), 2, + sym_number, + sym_word, + ACTIONS(7098), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3579), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 3, + ACTIONS(966), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3903), 18, + ACTIONS(964), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107234,51 +154599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98279] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, - anon_sym_BQUOTE, - ACTIONS(4650), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98330] = 3, + [146701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 3, + ACTIONS(970), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4268), 18, + ACTIONS(968), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107297,16 +154626,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98359] = 3, + [146731] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6964), 1, + anon_sym_DOLLAR, + ACTIONS(6966), 1, + sym__special_character, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + ACTIONS(6972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6974), 1, + anon_sym_BQUOTE, + ACTIONS(7106), 1, + sym_test_operator, + STATE(2444), 1, + aux_sym__literal_repeat1, + STATE(2761), 1, + sym_concatenation, + ACTIONS(6976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7102), 2, + sym_number, + sym_word, + ACTIONS(7104), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2453), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [146783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 3, + ACTIONS(6580), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4272), 18, + ACTIONS(6582), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107323,14 +154690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98388] = 3, + anon_sym_BQUOTE, + [146813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 3, + ACTIONS(974), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4276), 18, + ACTIONS(972), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107349,14 +154718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98417] = 3, + [146843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 3, + ACTIONS(978), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4293), 18, + ACTIONS(976), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107375,42 +154745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98446] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4018), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98475] = 3, + [146873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 3, + ACTIONS(6584), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4286), 18, + ACTIONS(6586), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107427,51 +154771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98504] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, anon_sym_BQUOTE, - ACTIONS(4652), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98555] = 3, + [146903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 3, + ACTIONS(982), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4282), 18, + ACTIONS(980), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107490,42 +154799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98584] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4654), 1, - sym__concat, - STATE(2191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98617] = 3, + [146933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 3, + ACTIONS(986), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4244), 18, + ACTIONS(984), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107544,16 +154826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98646] = 3, + [146963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 3, + ACTIONS(6520), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4236), 18, + ACTIONS(6522), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107570,16 +154852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98675] = 3, + anon_sym_BQUOTE, + [146993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 3, + ACTIONS(6406), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4125), 18, + ACTIONS(6408), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107596,79 +154879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98704] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, anon_sym_BQUOTE, - ACTIONS(4657), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2189), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98755] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4308), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4659), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98784] = 3, + [147023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4226), 3, + ACTIONS(6388), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4228), 18, + ACTIONS(6390), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107685,79 +154906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98813] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, - anon_sym_BQUOTE, - ACTIONS(4661), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4665), 1, - sym__concat, - ACTIONS(4663), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [98893] = 3, + [147053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 3, + ACTIONS(6384), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4216), 18, + ACTIONS(6386), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107774,16 +154933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98922] = 3, + anon_sym_BQUOTE, + [147083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 3, + ACTIONS(6598), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4109), 18, + ACTIONS(6600), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107800,79 +154960,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98951] = 14, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [147113] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6984), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, + ACTIONS(6986), 1, sym__special_character, - ACTIONS(4599), 1, + ACTIONS(6988), 1, + anon_sym_DQUOTE, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - ACTIONS(4667), 1, - anon_sym_RPAREN, - STATE(2556), 1, + ACTIONS(7112), 1, + sym_test_operator, + STATE(2604), 1, aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + STATE(2891), 1, + sym_concatenation, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2198), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7108), 2, + sym_number, + sym_word, + ACTIONS(7110), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2579), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99002] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4669), 1, - sym__special_character, - STATE(2203), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1345), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99035] = 3, + [147165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 3, + ACTIONS(990), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4177), 18, + ACTIONS(988), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107891,14 +155026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99064] = 3, + [147195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 3, + ACTIONS(996), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4173), 18, + ACTIONS(994), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107917,16 +155053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99093] = 3, + [147225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 3, + ACTIONS(6414), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4169), 18, + ACTIONS(6416), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -107943,14 +155079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99122] = 3, + anon_sym_BQUOTE, + [147255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 3, + ACTIONS(1000), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4165), 18, + ACTIONS(998), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107969,14 +155107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99151] = 3, + [147285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 3, + ACTIONS(1004), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4248), 18, + ACTIONS(1002), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -107995,51 +155134,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99180] = 14, - ACTIONS(3), 1, + [147315] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_RPAREN, - ACTIONS(4672), 1, - sym_word, - ACTIONS(4675), 1, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6984), 1, anon_sym_DOLLAR, - ACTIONS(4678), 1, + ACTIONS(6986), 1, sym__special_character, - ACTIONS(4681), 1, + ACTIONS(6988), 1, anon_sym_DQUOTE, - ACTIONS(4687), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4690), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4693), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - STATE(2556), 1, + ACTIONS(7118), 1, + sym_test_operator, + STATE(2588), 1, aux_sym__literal_repeat1, - ACTIONS(4684), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4696), 2, + STATE(2982), 1, + sym_concatenation, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7114), 2, + sym_number, + sym_word, + ACTIONS(7116), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2696), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99231] = 3, + [147367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 3, + ACTIONS(904), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3952), 18, + ACTIONS(902), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -108058,16 +155199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99260] = 3, + [147397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 3, + ACTIONS(6298), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4148), 18, + ACTIONS(6300), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108084,16 +155225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99289] = 3, + anon_sym_BQUOTE, + [147427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 3, + ACTIONS(6065), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4101), 18, + ACTIONS(6067), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108110,16 +155252,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99318] = 3, + anon_sym_BQUOTE, + [147457] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5976), 1, + anon_sym_DOLLAR, + ACTIONS(5980), 1, + anon_sym_DQUOTE, + ACTIONS(5984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5986), 1, + anon_sym_BQUOTE, + ACTIONS(7070), 1, + sym__special_character, + ACTIONS(7124), 1, + sym_test_operator, + STATE(3416), 1, + aux_sym__literal_repeat1, + STATE(3541), 1, + sym_concatenation, + ACTIONS(5988), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7120), 2, + sym_number, + sym_word, + ACTIONS(7122), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3442), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 3, + ACTIONS(6788), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4161), 18, + ACTIONS(6790), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108136,16 +155317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99347] = 3, + anon_sym_BQUOTE, + [147539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 3, + ACTIONS(6524), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4137), 18, + ACTIONS(6526), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108162,16 +155344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99376] = 3, + anon_sym_BQUOTE, + [147569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 3, + ACTIONS(6498), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4133), 18, + ACTIONS(6500), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108188,131 +155371,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99405] = 3, - ACTIONS(4141), 1, + anon_sym_BQUOTE, + [147599] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 16, - anon_sym_RPAREN_RPAREN, + ACTIONS(5938), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(5936), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99434] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99463] = 14, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147629] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, + ACTIONS(7040), 1, anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7126), 1, + anon_sym_RBRACK, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2223), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, + ACTIONS(7050), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7046), 4, + sym__special_character, + sym_number, + sym__comment_word, + sym_word, + STATE(3893), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99514] = 3, - ACTIONS(4141), 1, + [147677] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 5, - anon_sym_EQ, + ACTIONS(6560), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6562), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4703), 16, - anon_sym_RPAREN_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6328), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6330), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99543] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 3, + ACTIONS(6332), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4129), 18, + ACTIONS(6334), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108329,16 +155515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99572] = 3, + anon_sym_BQUOTE, + [147767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 3, + ACTIONS(6392), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4113), 18, + ACTIONS(6394), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108355,16 +155542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99601] = 3, + anon_sym_BQUOTE, + [147797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 3, + ACTIONS(6614), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3907), 18, + ACTIONS(6616), 20, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -108381,24446 +155569,25963 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [99630] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, anon_sym_BQUOTE, - ACTIONS(4705), 1, - anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99681] = 14, + [147827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - sym_word, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4595), 1, - sym__special_character, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, - anon_sym_BQUOTE, - ACTIONS(4707), 1, + ACTIONS(6704), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6706), 20, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, - STATE(2556), 1, - aux_sym__literal_repeat1, - ACTIONS(4597), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2209), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2526), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99732] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2697), 1, - anon_sym_RBRACE, - ACTIONS(4709), 1, - sym_word, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, - anon_sym_BQUOTE, - STATE(3111), 1, - aux_sym__literal_repeat1, - STATE(3518), 1, - sym_concatenation, - ACTIONS(4717), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3113), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - sym__concat, - ACTIONS(1322), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99810] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4727), 1, - sym_word, - STATE(3201), 1, - aux_sym__literal_repeat1, - STATE(3429), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4729), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3217), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99860] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4731), 1, - sym_word, - STATE(3068), 1, - aux_sym__literal_repeat1, - STATE(3420), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4733), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3222), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99910] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1398), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1400), 15, - sym__concat, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99938] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2507), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4735), 1, - sym_word, - STATE(3174), 1, - aux_sym__literal_repeat1, - STATE(3461), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4737), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3172), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99988] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4739), 1, - sym_word, - STATE(3223), 1, - aux_sym__literal_repeat1, - STATE(3416), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4741), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3227), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100038] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, - anon_sym_DOLLAR, - ACTIONS(3992), 1, - sym__special_character, - ACTIONS(3994), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4743), 1, - sym_word, - STATE(2500), 1, - aux_sym__literal_repeat1, - ACTIONS(3986), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4000), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1759), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2490), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100086] = 14, + [147857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6472), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6474), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4745), 1, - sym_word, - STATE(3219), 1, - aux_sym__literal_repeat1, - STATE(3361), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4747), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3075), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100136] = 14, + [147887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4749), 1, - sym_word, - STATE(3072), 1, - aux_sym__literal_repeat1, - STATE(3366), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4751), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3143), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100186] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1394), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1396), 15, - sym__concat, + ACTIONS(6662), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6664), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100214] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1406), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1408), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6778), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6780), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100242] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1410), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1412), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [147947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6644), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6646), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100270] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1388), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1390), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100298] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4753), 1, - sym_word, - STATE(3207), 1, - aux_sym__literal_repeat1, - STATE(3436), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4755), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3211), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100348] = 14, + [147977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 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(4757), 1, - sym_word, - STATE(3218), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4759), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3213), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100398] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(4761), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6908), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6910), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [100434] = 14, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148007] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4773), 1, - sym_word, - STATE(3082), 1, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(7132), 1, + sym_test_operator, + STATE(3536), 1, aux_sym__literal_repeat1, - STATE(3370), 1, + STATE(3702), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4775), 2, + ACTIONS(7128), 2, + sym_number, + sym_word, + ACTIONS(7130), 2, sym_raw_string, sym_ansi_c_string, - STATE(3097), 6, + STATE(3532), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100484] = 14, + [148059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6918), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6920), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4777), 1, - sym_word, - STATE(3191), 1, - aux_sym__literal_repeat1, - STATE(3444), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4779), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3104), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100534] = 14, + [148089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6922), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6924), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4781), 1, - sym_word, - STATE(3110), 1, - aux_sym__literal_repeat1, - STATE(3519), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4783), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3109), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100584] = 3, - ACTIONS(4141), 1, + [148119] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 5, - anon_sym_EQ, + ACTIONS(6736), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6738), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1420), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6950), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6952), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100612] = 14, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6648), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6650), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148209] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(7006), 1, sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4785), 1, - sym_word, - STATE(3205), 1, + ACTIONS(7138), 1, + sym_test_operator, + STATE(2386), 1, aux_sym__literal_repeat1, - STATE(3437), 1, + STATE(2646), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4787), 2, + ACTIONS(7134), 2, + sym_number, + sym_word, + ACTIONS(7136), 2, sym_raw_string, sym_ansi_c_string, - STATE(3203), 6, + STATE(2390), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100662] = 3, - ACTIONS(4141), 1, + [148261] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1386), 15, - sym__concat, + ACTIONS(6859), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6861), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100690] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1422), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1424), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - sym__special_character, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 18, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100748] = 3, + [148291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 1, - sym__concat, - ACTIONS(1287), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6840), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6842), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100776] = 14, + [148321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6796), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6798), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(4792), 1, - sym_word, - STATE(3175), 1, - aux_sym__literal_repeat1, - STATE(3455), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4794), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3181), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100826] = 3, - ACTIONS(4141), 1, + [148351] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 5, - anon_sym_EQ, + ACTIONS(6792), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6794), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1382), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6682), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6684), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100854] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, - sym__concat, - ACTIONS(1422), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6652), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6654), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100882] = 3, - ACTIONS(4141), 1, + [148441] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 6, - anon_sym_EQ, + ACTIONS(6396), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6398), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1223), 14, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6896), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6898), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100910] = 3, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148501] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(1420), 1, - sym__concat, - ACTIONS(1418), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, + ACTIONS(7006), 1, sym__special_character, + ACTIONS(7008), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7014), 1, anon_sym_BQUOTE, + ACTIONS(7144), 1, + sym_test_operator, + STATE(2370), 1, + aux_sym__literal_repeat1, + STATE(2709), 1, + sym_concatenation, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7140), 2, + sym_number, sym_word, - [100938] = 14, - ACTIONS(3), 1, + ACTIONS(7142), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2433), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148553] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(2151), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6964), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(6966), 1, sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6974), 1, anon_sym_BQUOTE, - ACTIONS(4796), 1, - sym_word, - STATE(3216), 1, + ACTIONS(7150), 1, + sym_test_operator, + STATE(2519), 1, aux_sym__literal_repeat1, - STATE(3427), 1, + STATE(2793), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(6976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4798), 2, + ACTIONS(7146), 2, + sym_number, + sym_word, + ACTIONS(7148), 2, sym_raw_string, sym_ansi_c_string, - STATE(3214), 6, + STATE(2543), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100988] = 3, - ACTIONS(4141), 1, + [148605] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1374), 15, - sym__concat, + ACTIONS(6640), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6642), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - sym__concat, - ACTIONS(1410), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101044] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1368), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1370), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6430), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6432), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101072] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1291), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1293), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101100] = 14, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148665] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(2183), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4800), 1, - sym_word, - STATE(3231), 1, + ACTIONS(7154), 1, + sym__special_character, + ACTIONS(7158), 1, + sym_test_operator, + STATE(2427), 1, aux_sym__literal_repeat1, - STATE(3411), 1, + STATE(2620), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4802), 2, + ACTIONS(7152), 2, + sym_number, + sym_word, + ACTIONS(7156), 2, sym_raw_string, sym_ansi_c_string, - STATE(3236), 6, + STATE(2450), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101150] = 3, - ACTIONS(4141), 1, + [148717] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 5, - anon_sym_EQ, + ACTIONS(6618), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6620), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1289), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6594), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6596), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101178] = 14, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6576), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6578), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6410), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6412), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148837] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4804), 1, - sym_word, - STATE(3163), 1, + ACTIONS(5625), 1, + sym__special_character, + ACTIONS(7164), 1, + sym_test_operator, + STATE(3556), 1, aux_sym__literal_repeat1, - STATE(3467), 1, + STATE(3672), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4806), 2, + ACTIONS(7160), 2, + sym_number, + sym_word, + ACTIONS(7162), 2, sym_raw_string, sym_ansi_c_string, - STATE(3161), 6, + STATE(3545), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101228] = 14, + [148889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6482), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(6484), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [148919] = 14, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4808), 1, - sym_word, - STATE(3085), 1, + ACTIONS(7154), 1, + sym__special_character, + ACTIONS(7170), 1, + sym_test_operator, + STATE(2416), 1, aux_sym__literal_repeat1, - STATE(3539), 1, + STATE(2688), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4810), 2, + ACTIONS(7166), 2, + sym_number, + sym_word, + ACTIONS(7168), 2, sym_raw_string, sym_ansi_c_string, - STATE(3091), 6, + STATE(2455), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101278] = 14, - ACTIONS(3), 1, + [148971] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(2073), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4812), 1, - sym_word, - STATE(3200), 1, + ACTIONS(7154), 1, + sym__special_character, + ACTIONS(7176), 1, + sym_test_operator, + STATE(2386), 1, aux_sym__literal_repeat1, - STATE(3401), 1, + STATE(2646), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4814), 2, + ACTIONS(7172), 2, + sym_number, + sym_word, + ACTIONS(7174), 2, sym_raw_string, sym_ansi_c_string, - STATE(3221), 6, + STATE(2469), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101328] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1358), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101356] = 3, - ACTIONS(3), 1, + [149023] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(1408), 1, - sym__concat, - ACTIONS(1406), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(7002), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101384] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4816), 1, - sym_word, - STATE(3073), 1, + ACTIONS(7154), 1, + sym__special_character, + ACTIONS(7182), 1, + sym_test_operator, + STATE(2370), 1, aux_sym__literal_repeat1, - STATE(3568), 1, + STATE(2709), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4818), 2, + ACTIONS(7178), 2, + sym_number, + sym_word, + ACTIONS(7180), 2, sym_raw_string, sym_ansi_c_string, - STATE(3083), 6, + STATE(2476), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101434] = 14, - ACTIONS(3), 1, + [149075] = 14, + ACTIONS(59), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6964), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(6966), 1, sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6974), 1, anon_sym_BQUOTE, - ACTIONS(4820), 1, - sym_word, - STATE(3106), 1, + ACTIONS(7188), 1, + sym_test_operator, + STATE(2532), 1, aux_sym__literal_repeat1, - STATE(3367), 1, + STATE(2747), 1, sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(6976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4822), 2, + ACTIONS(7184), 2, + sym_number, + sym_word, + ACTIONS(7186), 2, sym_raw_string, sym_ansi_c_string, - STATE(3107), 6, + STATE(2525), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 1, - sym__concat, - ACTIONS(1328), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101512] = 3, + [149127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, - sym__concat, - ACTIONS(1402), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101540] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1358), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 15, - sym__concat, + ACTIONS(6896), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6898), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101568] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1354), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1356), 15, - sym__concat, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6408), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101596] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1350), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1352), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101624] = 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, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149185] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, - sym__concat, - ACTIONS(1398), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5946), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5950), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5954), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5956), 1, anon_sym_BQUOTE, + ACTIONS(7194), 1, + sym_test_operator, + ACTIONS(5958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7190), 3, + sym_number, + sym__comment_word, sym_word, - [101652] = 14, + ACTIONS(7192), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1988), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149230] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7034), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7040), 1, anon_sym_BQUOTE, - ACTIONS(4824), 1, - sym_word, - STATE(3185), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7196), 1, + anon_sym_DOLLAR, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4826), 2, + ACTIONS(7046), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7050), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3194), 6, + STATE(3893), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101702] = 14, + [149275] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(1019), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5827), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5831), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5837), 1, anon_sym_BQUOTE, - ACTIONS(4828), 1, - sym_word, - STATE(3230), 1, - aux_sym__literal_repeat1, - STATE(3410), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7202), 1, + sym_test_operator, + ACTIONS(5839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4830), 2, + ACTIONS(7198), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7200), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3238), 6, + STATE(617), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101752] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1283), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1285), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101780] = 14, + [149320] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5851), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5855), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5859), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5861), 1, anon_sym_BQUOTE, - ACTIONS(4832), 1, - sym_word, - STATE(3114), 1, - aux_sym__literal_repeat1, - STATE(3359), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7206), 1, + anon_sym_DOLLAR, + ACTIONS(7210), 1, + sym_test_operator, + ACTIONS(5863), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4834), 2, + ACTIONS(7204), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7208), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3117), 6, + STATE(1875), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101830] = 14, + [149365] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7214), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7218), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7220), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7222), 1, anon_sym_BQUOTE, - ACTIONS(4836), 1, - sym_word, - STATE(3215), 1, - aux_sym__literal_repeat1, - STATE(3405), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7226), 1, + sym_test_operator, + ACTIONS(7224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4838), 2, + ACTIONS(7212), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7216), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3220), 6, + STATE(1642), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101880] = 14, + [149410] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(292), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(298), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, - sym_word, - STATE(3124), 1, - aux_sym__literal_repeat1, - STATE(3507), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7230), 1, + anon_sym_DOLLAR, + ACTIONS(7234), 1, + sym_test_operator, + ACTIONS(302), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4842), 2, + ACTIONS(7228), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7232), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3126), 6, + STATE(642), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101930] = 3, + [149455] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, - sym__concat, - ACTIONS(1394), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5950), 1, + anon_sym_DQUOTE, + ACTIONS(5954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5956), 1, + anon_sym_BQUOTE, + ACTIONS(7194), 1, + sym_test_operator, + ACTIONS(7236), 1, anon_sym_DOLLAR, + ACTIONS(5958), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7190), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7192), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + STATE(1988), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149500] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5950), 1, + anon_sym_DQUOTE, + ACTIONS(5954), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5956), 1, anon_sym_BQUOTE, + ACTIONS(7194), 1, + sym_test_operator, + ACTIONS(7238), 1, + anon_sym_DOLLAR, + ACTIONS(5958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7190), 3, + sym_number, + sym__comment_word, sym_word, - [101958] = 3, + ACTIONS(7192), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1988), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149545] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 1, - sym__concat, - ACTIONS(1388), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5726), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5730), 1, + anon_sym_DQUOTE, + ACTIONS(5734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5736), 1, + anon_sym_BQUOTE, + ACTIONS(7242), 1, anon_sym_DOLLAR, + ACTIONS(7246), 1, + sym_test_operator, + ACTIONS(5738), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7240), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7244), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + STATE(971), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6392), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6394), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149619] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(7250), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7254), 1, + anon_sym_DQUOTE, + ACTIONS(7256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7258), 1, anon_sym_BQUOTE, + ACTIONS(7262), 1, + sym_test_operator, + ACTIONS(7260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7248), 3, + sym_number, + sym__comment_word, sym_word, - [101986] = 14, + ACTIONS(7252), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1156), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6414), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6416), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149693] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7214), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7218), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7220), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7222), 1, anon_sym_BQUOTE, - ACTIONS(4844), 1, - sym_word, - STATE(3157), 1, - aux_sym__literal_repeat1, - STATE(3465), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7226), 1, + sym_test_operator, + ACTIONS(7264), 1, + anon_sym_DOLLAR, + ACTIONS(7224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4846), 2, + ACTIONS(7212), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7216), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3164), 6, + STATE(1642), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102036] = 4, + [149738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, - sym__special_character, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(4848), 18, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(6918), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6920), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6788), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6790), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6386), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6644), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6646), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [149854] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(47), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, + anon_sym_BQUOTE, + ACTIONS(7268), 1, + anon_sym_DOLLAR, + ACTIONS(7272), 1, + sym_test_operator, + ACTIONS(57), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7266), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7270), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + STATE(1686), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149899] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7214), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7218), 1, + anon_sym_DQUOTE, + ACTIONS(7220), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7222), 1, anon_sym_BQUOTE, + ACTIONS(7226), 1, + sym_test_operator, + ACTIONS(7274), 1, + anon_sym_DOLLAR, + ACTIONS(7224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7212), 3, + sym_number, + sym__comment_word, sym_word, - [102066] = 14, + ACTIONS(7216), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1642), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(249), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + ACTIONS(7012), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7014), 1, + anon_sym_BQUOTE, + ACTIONS(7278), 1, anon_sym_DOLLAR, - ACTIONS(251), 1, + ACTIONS(7282), 1, + sym_test_operator, + ACTIONS(7016), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7276), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7280), 3, sym__special_character, - ACTIONS(253), 1, + sym_raw_string, + sym_ansi_c_string, + STATE(2504), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6910), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6396), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6398), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6640), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6642), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150076] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5980), 1, anon_sym_DQUOTE, - ACTIONS(257), 1, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, + ACTIONS(5986), 1, anon_sym_BQUOTE, - ACTIONS(4852), 1, - sym_word, - ACTIONS(4856), 1, - sym_regex, - STATE(501), 1, - aux_sym__literal_repeat1, - STATE(649), 1, - sym_concatenation, - ACTIONS(263), 2, + ACTIONS(7286), 1, + anon_sym_DOLLAR, + ACTIONS(7290), 1, + sym_test_operator, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4854), 2, + ACTIONS(7284), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7288), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(364), 6, + STATE(3490), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102116] = 14, + [150121] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5980), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5986), 1, anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym_word, - STATE(3206), 1, - aux_sym__literal_repeat1, - STATE(3375), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7290), 1, + sym_test_operator, + ACTIONS(7292), 1, + anon_sym_DOLLAR, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4860), 2, + ACTIONS(7284), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7288), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3199), 6, + STATE(3490), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102166] = 14, + [150166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6662), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6664), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150195] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7300), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7304), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, - sym_word, - STATE(3093), 1, - aux_sym__literal_repeat1, - STATE(3536), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7308), 1, + sym_test_operator, + ACTIONS(7306), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4864), 2, + ACTIONS(7294), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7298), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3095), 6, + STATE(2084), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102216] = 14, + [150240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(292), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(298), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(4866), 1, - sym_word, - STATE(3089), 1, - aux_sym__literal_repeat1, - STATE(3543), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7234), 1, + sym_test_operator, + ACTIONS(302), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4868), 2, + ACTIONS(7228), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7232), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3087), 6, + STATE(642), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102266] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1328), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1330), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102294] = 14, + [150285] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4870), 1, - sym_word, - STATE(3122), 1, - aux_sym__literal_repeat1, - STATE(3515), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7282), 1, + sym_test_operator, + ACTIONS(7310), 1, + anon_sym_DOLLAR, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4872), 2, + ACTIONS(7276), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7280), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3108), 6, + STATE(2504), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102344] = 14, + [150330] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(4874), 1, - sym_word, - STATE(3076), 1, - aux_sym__literal_repeat1, - STATE(3564), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7314), 1, + anon_sym_DOLLAR, + ACTIONS(7318), 1, + sym_test_operator, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4876), 2, + ACTIONS(7312), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7316), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3074), 6, + STATE(466), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102394] = 3, + [150375] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 1, - sym__concat, - ACTIONS(1380), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(396), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(404), 1, anon_sym_BQUOTE, + ACTIONS(7322), 1, + anon_sym_DOLLAR, + ACTIONS(7326), 1, + sym_test_operator, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7320), 3, + sym_number, + sym__comment_word, sym_word, - [102422] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(7324), 3, sym__special_character, - ACTIONS(4715), 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(4878), 1, - sym_word, - STATE(3121), 1, - aux_sym__literal_repeat1, - STATE(3512), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4880), 2, sym_raw_string, sym_ansi_c_string, - STATE(3119), 6, + STATE(1015), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102472] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1255), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1257), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102500] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1221), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1223), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102528] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1336), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1338), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102556] = 14, + [150420] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5439), 1, anon_sym_DQUOTE, - ACTIONS(103), 1, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, + ACTIONS(5445), 1, anon_sym_BQUOTE, - ACTIONS(4882), 1, - sym_word, - ACTIONS(4886), 1, - sym_regex, - STATE(605), 1, - aux_sym__literal_repeat1, - STATE(865), 1, - sym_concatenation, - ACTIONS(109), 2, + ACTIONS(7318), 1, + sym_test_operator, + ACTIONS(7328), 1, + anon_sym_DOLLAR, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4884), 2, + ACTIONS(7312), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7316), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(553), 6, + STATE(466), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102606] = 3, - ACTIONS(4141), 1, + [150465] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1281), 15, - sym__concat, + ACTIONS(6840), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6842), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102634] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150494] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - sym__concat, - ACTIONS(1372), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(5884), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 1, - sym__concat, - ACTIONS(1368), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5890), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5894), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5896), 1, anon_sym_BQUOTE, + ACTIONS(7332), 1, + anon_sym_DOLLAR, + ACTIONS(7336), 1, + sym_test_operator, + ACTIONS(5898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7330), 3, + sym_number, + sym__comment_word, sym_word, - [102690] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(7334), 3, sym__special_character, - ACTIONS(4715), 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(4888), 1, - sym_word, - STATE(3178), 1, - aux_sym__literal_repeat1, - STATE(3392), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4890), 2, sym_raw_string, sym_ansi_c_string, - STATE(3182), 6, + STATE(2067), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102740] = 3, + [150539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(816), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(822), 1, anon_sym_BQUOTE, + ACTIONS(7340), 1, + anon_sym_DOLLAR, + ACTIONS(7344), 1, + sym_test_operator, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7338), 3, + sym_number, + sym__comment_word, sym_word, - [102768] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(7342), 3, sym__special_character, - ACTIONS(4715), 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(4892), 1, - sym_word, - STATE(3192), 1, - aux_sym__literal_repeat1, - STATE(3447), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4894), 2, sym_raw_string, sym_ansi_c_string, - STATE(3188), 6, + STATE(1777), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102818] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1275), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1277), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102846] = 3, + [150584] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5147), 1, anon_sym_BQUOTE, + ACTIONS(7348), 1, + anon_sym_DOLLAR, + ACTIONS(7352), 1, + sym_test_operator, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7346), 3, + sym_number, + sym__comment_word, sym_word, - [102874] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1322), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1324), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102902] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1320), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102930] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, + ACTIONS(7350), 3, sym__special_character, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - ACTIONS(4896), 1, - sym_word, - ACTIONS(4900), 1, - sym_regex, - STATE(680), 1, - aux_sym__literal_repeat1, - STATE(849), 1, - sym_concatenation, - ACTIONS(53), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4898), 2, sym_raw_string, sym_ansi_c_string, - STATE(492), 6, + STATE(3049), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [102980] = 14, + [150629] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5884), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5890), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5896), 1, anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym_word, - STATE(3169), 1, - aux_sym__literal_repeat1, - STATE(3390), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7336), 1, + sym_test_operator, + ACTIONS(7354), 1, + anon_sym_DOLLAR, + ACTIONS(5898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4904), 2, + ACTIONS(7330), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7334), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3170), 6, + STATE(2067), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103030] = 14, + [150674] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, - anon_sym_DOLLAR, - ACTIONS(161), 1, - sym__special_character, - ACTIONS(163), 1, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(167), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(4906), 1, - sym_word, - ACTIONS(4910), 1, - sym_regex, - STATE(337), 1, - aux_sym__literal_repeat1, - STATE(440), 1, - sym_concatenation, - ACTIONS(173), 2, + ACTIONS(7272), 1, + sym_test_operator, + ACTIONS(7356), 1, + anon_sym_DOLLAR, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4908), 2, + ACTIONS(7266), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7270), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(299), 6, + STATE(1686), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103080] = 14, + [150719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6584), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6586), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150748] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, - anon_sym_BQUOTE, - ACTIONS(4912), 1, - sym_word, - STATE(3090), 1, - aux_sym__literal_repeat1, - STATE(3544), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(786), 1, + anon_sym_BQUOTE, + ACTIONS(7360), 1, + anon_sym_DOLLAR, + ACTIONS(7364), 1, + sym_test_operator, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4914), 2, + ACTIONS(7358), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7362), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3088), 6, + STATE(1748), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103130] = 2, + [150793] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5976), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5980), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5986), 1, anon_sym_BQUOTE, + ACTIONS(7290), 1, + sym_test_operator, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7284), 3, + sym_number, + sym__comment_word, sym_word, - [103156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(7288), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103182] = 3, + STATE(3490), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150838] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 1, - sym__concat, - ACTIONS(1354), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7034), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7040), 1, anon_sym_BQUOTE, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7366), 1, + anon_sym_DOLLAR, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7046), 3, + sym_number, + sym__comment_word, sym_word, - [103210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - sym__concat, - ACTIONS(1350), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(7050), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103238] = 3, + STATE(3893), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150883] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 1, - sym__concat, - ACTIONS(1336), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(732), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5439), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5445), 1, anon_sym_BQUOTE, + ACTIONS(7318), 1, + sym_test_operator, + ACTIONS(5447), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7312), 3, + sym_number, + sym__comment_word, sym_word, - [103266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 1, - sym__concat, - ACTIONS(1384), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(7316), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103294] = 14, + STATE(466), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6708), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6710), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [150957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(812), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(816), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(822), 1, anon_sym_BQUOTE, - ACTIONS(4916), 1, - sym_word, - STATE(3069), 1, - aux_sym__literal_repeat1, - STATE(3388), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7344), 1, + sym_test_operator, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4918), 2, + ACTIONS(7338), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7342), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3155), 6, + STATE(1777), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103344] = 14, + [151002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6298), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6300), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151031] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(4920), 1, - sym_word, - STATE(3080), 1, - aux_sym__literal_repeat1, - STATE(3559), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7370), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + sym_test_operator, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4922), 2, + ACTIONS(7368), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7372), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3078), 6, + STATE(682), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103394] = 14, + [151076] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(4924), 1, - sym_word, - STATE(3145), 1, - aux_sym__literal_repeat1, - STATE(3387), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7364), 1, + sym_test_operator, + ACTIONS(7376), 1, + anon_sym_DOLLAR, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4926), 2, + ACTIONS(7358), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7362), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3149), 6, + STATE(1748), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103444] = 3, + [151121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 1, - sym__concat, - ACTIONS(1318), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103472] = 3, + ACTIONS(6598), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6600), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - sym__concat, - ACTIONS(1291), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5914), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5916), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5920), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5924), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5926), 1, anon_sym_BQUOTE, + ACTIONS(7382), 1, + sym_test_operator, + ACTIONS(5928), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7378), 3, + sym_number, + sym__comment_word, sym_word, - [103500] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2613), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, + ACTIONS(7380), 3, sym__special_character, - ACTIONS(4715), 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(4928), 1, - sym_word, - STATE(3186), 1, - aux_sym__literal_repeat1, - STATE(3451), 1, - sym_concatenation, - ACTIONS(4725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4930), 2, sym_raw_string, sym_ansi_c_string, - STATE(3184), 6, + STATE(1146), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103550] = 14, + [151195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6682), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6684), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6067), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151253] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6306), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4932), 1, - sym_word, - STATE(3115), 1, - aux_sym__literal_repeat1, - STATE(3514), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7388), 1, + sym_test_operator, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4934), 2, + ACTIONS(7384), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3116), 6, + STATE(3971), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103600] = 14, + [151298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5938), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5936), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6924), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6950), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6952), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151385] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(4936), 1, - sym_word, - STATE(3140), 1, - aux_sym__literal_repeat1, - STATE(3381), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7392), 1, + anon_sym_DOLLAR, + ACTIONS(7396), 1, + sym_test_operator, + ACTIONS(145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4938), 2, + ACTIONS(7390), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7394), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3131), 6, + STATE(279), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103650] = 3, - ACTIONS(4141), 1, + [151430] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1404), 15, - sym__concat, + ACTIONS(6388), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6390), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [103678] = 14, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151459] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5726), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5730), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5736), 1, anon_sym_BQUOTE, - ACTIONS(4940), 1, - sym_word, - STATE(3158), 1, - aux_sym__literal_repeat1, - STATE(3466), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7246), 1, + sym_test_operator, + ACTIONS(7398), 1, + anon_sym_DOLLAR, + ACTIONS(5738), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4942), 2, + ACTIONS(7240), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7244), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3165), 6, + STATE(971), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103728] = 14, + [151504] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4944), 1, - sym_word, - STATE(3079), 1, - aux_sym__literal_repeat1, - STATE(3563), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7352), 1, + sym_test_operator, + ACTIONS(7400), 1, + anon_sym_DOLLAR, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4946), 2, + ACTIONS(7346), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7350), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3077), 6, + STATE(3049), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103778] = 14, + [151549] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, - sym_word, - STATE(3071), 1, - aux_sym__literal_repeat1, - STATE(3570), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7388), 1, + sym_test_operator, + ACTIONS(7402), 1, + anon_sym_DOLLAR, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4950), 2, + ACTIONS(7384), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3193), 6, + STATE(3971), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103828] = 14, + [151594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6614), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6616), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [151623] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4952), 1, - sym_word, - STATE(3084), 1, - aux_sym__literal_repeat1, - STATE(3508), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7352), 1, + sym_test_operator, + ACTIONS(7404), 1, + anon_sym_DOLLAR, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4954), 2, + ACTIONS(7346), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7350), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3128), 6, + STATE(3049), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103878] = 14, + [151668] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(131), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(4956), 1, - sym_word, - STATE(3179), 1, - aux_sym__literal_repeat1, - STATE(3458), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7396), 1, + sym_test_operator, + ACTIONS(145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4958), 2, + ACTIONS(7390), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7394), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3177), 6, + STATE(279), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103928] = 2, + [151713] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(816), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(820), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(822), 1, anon_sym_BQUOTE, + ACTIONS(7344), 1, + sym_test_operator, + ACTIONS(7406), 1, + anon_sym_DOLLAR, + ACTIONS(824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7338), 3, + sym_number, + sym__comment_word, sym_word, - [103954] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, - anon_sym_DOLLAR, - ACTIONS(3992), 1, + ACTIONS(7342), 3, sym__special_character, - ACTIONS(3994), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, - anon_sym_BQUOTE, - ACTIONS(4743), 1, - sym_word, - STATE(2500), 1, - aux_sym__literal_repeat1, - ACTIONS(3986), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4000), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1729), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2490), 6, + STATE(1777), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104002] = 2, + [151758] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5851), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5855), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5859), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5861), 1, anon_sym_BQUOTE, + ACTIONS(7210), 1, + sym_test_operator, + ACTIONS(7408), 1, + anon_sym_DOLLAR, + ACTIONS(5863), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7204), 3, + sym_number, + sym__comment_word, sym_word, - [104028] = 14, + ACTIONS(7208), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1875), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151803] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(135), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(143), 1, anon_sym_BQUOTE, - ACTIONS(4964), 1, - sym_word, - STATE(3096), 1, - aux_sym__literal_repeat1, - STATE(3537), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7396), 1, + sym_test_operator, + ACTIONS(7410), 1, + anon_sym_DOLLAR, + ACTIONS(145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4966), 2, + ACTIONS(7390), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7394), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3086), 6, + STATE(279), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104078] = 14, + [151848] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4968), 1, - sym_word, - STATE(3120), 1, - aux_sym__literal_repeat1, - STATE(3360), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7352), 1, + sym_test_operator, + ACTIONS(7412), 1, + anon_sym_DOLLAR, + ACTIONS(5149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4970), 2, + ACTIONS(7346), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7350), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3101), 6, + STATE(3049), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104128] = 14, + [151893] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5772), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5778), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5784), 1, anon_sym_BQUOTE, - ACTIONS(4972), 1, - sym_word, - STATE(3162), 1, - aux_sym__literal_repeat1, - STATE(3389), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7416), 1, + anon_sym_DOLLAR, + ACTIONS(7420), 1, + sym_test_operator, + ACTIONS(5786), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4974), 2, + ACTIONS(7414), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7418), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3156), 6, + STATE(1744), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104178] = 14, + [151938] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4976), 1, - sym_word, - STATE(3132), 1, - aux_sym__literal_repeat1, - STATE(3502), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7282), 1, + sym_test_operator, + ACTIONS(7422), 1, + anon_sym_DOLLAR, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4978), 2, + ACTIONS(7276), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7280), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3130), 6, + STATE(2504), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104228] = 14, + [151983] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(99), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(101), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - sym_word, - STATE(3176), 1, - aux_sym__literal_repeat1, - STATE(3464), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7428), 1, + sym_test_operator, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4982), 2, + ACTIONS(7424), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7426), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3166), 6, + STATE(238), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104278] = 13, + [152028] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(6000), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6004), 1, anon_sym_DQUOTE, - ACTIONS(3990), 1, - anon_sym_DOLLAR, - ACTIONS(3992), 1, - sym__special_character, - ACTIONS(3994), 1, + ACTIONS(6008), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, + ACTIONS(6010), 1, anon_sym_BQUOTE, - ACTIONS(4743), 1, + ACTIONS(7432), 1, + anon_sym_DOLLAR, + ACTIONS(7436), 1, + sym_test_operator, + ACTIONS(6012), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7430), 3, + sym_number, + sym__comment_word, sym_word, - STATE(2500), 1, - aux_sym__literal_repeat1, - ACTIONS(3986), 2, + ACTIONS(7434), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(4000), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1705), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2490), 6, + STATE(1723), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104326] = 14, + [152073] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(6000), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6004), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6008), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6010), 1, anon_sym_BQUOTE, - ACTIONS(4984), 1, - sym_word, - STATE(3125), 1, - aux_sym__literal_repeat1, - STATE(3377), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7436), 1, + sym_test_operator, + ACTIONS(7438), 1, + anon_sym_DOLLAR, + ACTIONS(6012), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4986), 2, + ACTIONS(7430), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7434), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3127), 6, + STATE(1723), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104376] = 14, + [152118] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7300), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7304), 1, anon_sym_BQUOTE, - ACTIONS(4988), 1, - sym_word, - STATE(3154), 1, - aux_sym__literal_repeat1, - STATE(3475), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7308), 1, + sym_test_operator, + ACTIONS(7440), 1, + anon_sym_DOLLAR, + ACTIONS(7306), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4990), 2, + ACTIONS(7294), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7298), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3151), 6, + STATE(2084), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104426] = 14, + [152163] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5772), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5778), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5784), 1, anon_sym_BQUOTE, - ACTIONS(4992), 1, - sym_word, - STATE(3092), 1, - aux_sym__literal_repeat1, - STATE(3538), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7420), 1, + sym_test_operator, + ACTIONS(7442), 1, + anon_sym_DOLLAR, + ACTIONS(5786), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4994), 2, + ACTIONS(7414), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7418), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3094), 6, + STATE(1744), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104476] = 14, + [152208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(4996), 1, - sym_word, - STATE(3142), 1, - aux_sym__literal_repeat1, - STATE(3487), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7282), 1, + sym_test_operator, + ACTIONS(7444), 1, + anon_sym_DOLLAR, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4998), 2, + ACTIONS(7276), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7280), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3146), 6, + STATE(2504), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104526] = 14, + [152253] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7300), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7304), 1, anon_sym_BQUOTE, - ACTIONS(5000), 1, - sym_word, - STATE(3135), 1, - aux_sym__literal_repeat1, - STATE(3490), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7308), 1, + sym_test_operator, + ACTIONS(7446), 1, + anon_sym_DOLLAR, + ACTIONS(7306), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5002), 2, + ACTIONS(7294), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7298), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3138), 6, + STATE(2084), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104576] = 14, + [152298] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(292), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(298), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(5004), 1, - sym_word, - STATE(3103), 1, - aux_sym__literal_repeat1, - STATE(3526), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7234), 1, + sym_test_operator, + ACTIONS(7448), 1, + anon_sym_DOLLAR, + ACTIONS(302), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5006), 2, + ACTIONS(7228), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7232), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3105), 6, + STATE(642), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104626] = 14, + [152343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(6704), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6706), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6430), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6432), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6618), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6620), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6594), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6596), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6578), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152488] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7004), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(7012), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(7014), 1, anon_sym_BQUOTE, - ACTIONS(5008), 1, - sym_word, - STATE(3139), 1, - aux_sym__literal_repeat1, - STATE(3485), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7282), 1, + sym_test_operator, + ACTIONS(7016), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5010), 2, + ACTIONS(7276), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7280), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3147), 6, + STATE(2504), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104676] = 3, + [152533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 1, - sym__concat, - ACTIONS(1275), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6410), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6412), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6738), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152591] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(105), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(113), 1, anon_sym_BQUOTE, + ACTIONS(7428), 1, + sym_test_operator, + ACTIONS(7450), 1, + anon_sym_DOLLAR, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7424), 3, + sym_number, + sym__comment_word, sym_word, - [104704] = 14, + ACTIONS(7426), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(238), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152636] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5980), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(5986), 1, anon_sym_BQUOTE, - ACTIONS(5012), 1, - sym_word, - STATE(3173), 1, - aux_sym__literal_repeat1, - STATE(3460), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7290), 1, + sym_test_operator, + ACTIONS(7452), 1, + anon_sym_DOLLAR, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5014), 2, + ACTIONS(7284), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7288), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3167), 6, + STATE(3490), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104754] = 14, + [152681] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(230), 1, anon_sym_DOLLAR, - ACTIONS(4713), 1, - sym__special_character, - ACTIONS(4715), 1, + ACTIONS(776), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(780), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(786), 1, anon_sym_BQUOTE, - ACTIONS(5016), 1, - sym_word, - STATE(3118), 1, - aux_sym__literal_repeat1, - STATE(3448), 1, - sym_concatenation, - ACTIONS(4725), 2, + ACTIONS(7364), 1, + sym_test_operator, + ACTIONS(788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5018), 2, + ACTIONS(7358), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7362), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3123), 6, + STATE(1748), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104804] = 3, + [152726] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, - sym__concat, - ACTIONS(1279), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6964), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6968), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(6972), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6974), 1, anon_sym_BQUOTE, + ACTIONS(7458), 1, + sym_test_operator, + ACTIONS(6976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7454), 3, + sym_number, + sym__comment_word, sym_word, - [104832] = 3, + ACTIONS(7456), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2603), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, - sym__concat, - ACTIONS(1255), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(1262), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5851), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5855), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, + ACTIONS(5859), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5861), 1, anon_sym_BQUOTE, + ACTIONS(7210), 1, + sym_test_operator, + ACTIONS(5863), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7204), 3, + sym_number, + sym__comment_word, sym_word, - [104860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 1, - sym__concat, - ACTIONS(1283), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(7208), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + STATE(1875), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [152816] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(113), 1, anon_sym_BQUOTE, + ACTIONS(7428), 1, + sym_test_operator, + ACTIONS(7460), 1, + anon_sym_DOLLAR, + ACTIONS(115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7424), 3, + sym_number, + sym__comment_word, sym_word, - [104888] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5022), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5028), 1, - anon_sym_QMARK, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5024), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5026), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5020), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104923] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [104950] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_RPAREN, - ACTIONS(5038), 1, - anon_sym_QMARK, - ACTIONS(5034), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5040), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5036), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5032), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104985] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5042), 1, - sym_word, - ACTIONS(5044), 1, - anon_sym_DOLLAR, - ACTIONS(5046), 1, + ACTIONS(7426), 3, sym__special_character, - ACTIONS(5050), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, - anon_sym_BQUOTE, - STATE(1686), 1, - aux_sym__literal_repeat1, - STATE(1802), 1, - sym_concatenation, - ACTIONS(5048), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5056), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1681), 6, + STATE(238), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105032] = 7, - ACTIONS(4141), 1, + [152861] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5058), 1, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6536), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6538), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105067] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4308), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4659), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105094] = 13, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [152890] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, + ACTIONS(7028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7030), 1, anon_sym_DOLLAR, - ACTIONS(5046), 1, - sym__special_character, - ACTIONS(5050), 1, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(7040), 1, anon_sym_BQUOTE, - ACTIONS(5060), 1, - sym_word, - STATE(1694), 1, - aux_sym__literal_repeat1, - STATE(1848), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7052), 1, + sym_test_operator, + ACTIONS(7042), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5062), 2, + ACTIONS(7046), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7050), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1692), 6, + STATE(3893), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105141] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4018), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105168] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4469), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4703), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105195] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5038), 1, - anon_sym_QMARK, - ACTIONS(5064), 1, - anon_sym_RPAREN, - ACTIONS(5034), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5040), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5036), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5032), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105230] = 13, + [152935] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(5914), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5920), 1, anon_sym_DQUOTE, - ACTIONS(5066), 1, - sym_word, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5070), 1, - sym__special_character, - ACTIONS(5074), 1, + ACTIONS(5924), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, + ACTIONS(5926), 1, anon_sym_BQUOTE, - STATE(1707), 1, - aux_sym__literal_repeat1, - STATE(1992), 1, - sym_concatenation, - ACTIONS(5072), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5080), 2, + ACTIONS(7382), 1, + sym_test_operator, + ACTIONS(7462), 1, + anon_sym_DOLLAR, + ACTIONS(5928), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1714), 6, + ACTIONS(7378), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7380), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1146), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105277] = 3, - ACTIONS(4141), 1, + [152980] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4580), 14, - anon_sym_RPAREN, + ACTIONS(6472), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6474), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105304] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153009] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, - sym_word, - ACTIONS(5084), 1, - anon_sym_DOLLAR, - ACTIONS(5086), 1, - sym__special_character, - ACTIONS(5088), 1, + ACTIONS(5914), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5920), 1, anon_sym_DQUOTE, - ACTIONS(5092), 1, + ACTIONS(5924), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5094), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5096), 1, + ACTIONS(5926), 1, anon_sym_BQUOTE, - STATE(2888), 1, - aux_sym__literal_repeat1, - STATE(2967), 1, - sym_concatenation, - ACTIONS(5090), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5098), 2, + ACTIONS(7382), 1, + sym_test_operator, + ACTIONS(7464), 1, + anon_sym_DOLLAR, + ACTIONS(5928), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2887), 6, + ACTIONS(7378), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7380), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1146), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105351] = 3, - ACTIONS(4141), 1, + [153054] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 5, - anon_sym_EQ, + ACTIONS(6520), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6522), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4154), 14, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6652), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6654), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105378] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, - anon_sym_DOLLAR, - ACTIONS(5086), 1, - sym__special_character, - ACTIONS(5088), 1, + ACTIONS(6524), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6526), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153141] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(5092), 1, + ACTIONS(6314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5094), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5096), 1, + ACTIONS(6316), 1, anon_sym_BQUOTE, - ACTIONS(5100), 1, - sym_word, - STATE(2868), 1, - aux_sym__literal_repeat1, - STATE(2977), 1, - sym_concatenation, - ACTIONS(5098), 2, + ACTIONS(7388), 1, + sym_test_operator, + ACTIONS(7466), 1, + anon_sym_DOLLAR, + ACTIONS(6318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5102), 2, + ACTIONS(7384), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7386), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2879), 6, + STATE(3971), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105425] = 13, + [153186] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(196), 1, anon_sym_DOLLAR, - ACTIONS(5086), 1, - sym__special_character, - ACTIONS(5088), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(5092), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5094), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5096), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(5104), 1, - sym_word, - STATE(2894), 1, - aux_sym__literal_repeat1, - STATE(2998), 1, - sym_concatenation, - ACTIONS(5098), 2, + ACTIONS(7472), 1, + sym_test_operator, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5106), 2, + ACTIONS(7468), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7470), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2893), 6, + STATE(1767), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105472] = 3, - ACTIONS(4141), 1, + [153231] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, + ACTIONS(6498), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6500), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 14, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6484), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105499] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153289] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_DQUOTE, - ACTIONS(4422), 1, + ACTIONS(5884), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5886), 1, anon_sym_DOLLAR, - ACTIONS(4424), 1, - sym__special_character, - ACTIONS(4428), 1, + ACTIONS(5890), 1, + anon_sym_DQUOTE, + ACTIONS(5894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4432), 1, + ACTIONS(5896), 1, anon_sym_BQUOTE, - ACTIONS(5108), 1, - sym_word, - STATE(1842), 1, - aux_sym__literal_repeat1, - STATE(2022), 1, - sym_concatenation, - ACTIONS(4434), 2, + ACTIONS(7336), 1, + sym_test_operator, + ACTIONS(5898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5110), 2, + ACTIONS(7330), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7334), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1773), 6, + STATE(2067), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105546] = 13, + [153334] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(5112), 1, - sym_word, - ACTIONS(5114), 1, - sym__special_character, - STATE(3026), 1, - aux_sym__literal_repeat1, - STATE(3293), 1, - sym_concatenation, - ACTIONS(2471), 2, + ACTIONS(7476), 1, + anon_sym_DOLLAR, + ACTIONS(7480), 1, + sym_test_operator, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5116), 2, + ACTIONS(7474), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7478), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3144), 6, + STATE(2264), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105593] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5028), 1, - anon_sym_QMARK, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5024), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5026), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5020), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105628] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5022), 1, - anon_sym_RBRACK, - ACTIONS(5124), 1, - anon_sym_QMARK, - ACTIONS(5120), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5126), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5122), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5118), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105663] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105698] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5130), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105733] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5132), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105768] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5022), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105803] = 13, + [153379] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(7250), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7254), 1, anon_sym_DQUOTE, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5070), 1, - sym__special_character, - ACTIONS(5074), 1, + ACTIONS(7256), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, + ACTIONS(7258), 1, anon_sym_BQUOTE, - ACTIONS(5134), 1, - sym_word, - STATE(1728), 1, - aux_sym__literal_repeat1, - STATE(2026), 1, - sym_concatenation, - ACTIONS(5080), 2, + ACTIONS(7262), 1, + sym_test_operator, + ACTIONS(7482), 1, + anon_sym_DOLLAR, + ACTIONS(7260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5136), 2, + ACTIONS(7248), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7252), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1718), 6, + STATE(1156), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105850] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5138), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105885] = 7, - ACTIONS(4141), 1, + [153424] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5140), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6112), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6114), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105920] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4308), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4659), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105947] = 13, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153453] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(4422), 1, - anon_sym_DOLLAR, - ACTIONS(4424), 1, - sym__special_character, - ACTIONS(4428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4430), 1, + ACTIONS(5800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4432), 1, + ACTIONS(5808), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5810), 1, anon_sym_BQUOTE, - ACTIONS(5142), 1, - sym_word, - STATE(1854), 1, - aux_sym__literal_repeat1, - STATE(2009), 1, - sym_concatenation, - ACTIONS(4434), 2, + ACTIONS(7486), 1, + anon_sym_DOLLAR, + ACTIONS(7490), 1, + sym_test_operator, + ACTIONS(5812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5144), 2, + ACTIONS(7484), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7488), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1753), 6, + STATE(2420), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [105994] = 13, + [153498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(5974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5980), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(5984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(5986), 1, anon_sym_BQUOTE, - ACTIONS(5114), 1, - sym__special_character, - ACTIONS(5146), 1, - sym_word, - STATE(3058), 1, - aux_sym__literal_repeat1, - STATE(3247), 1, - sym_concatenation, - ACTIONS(2471), 2, + ACTIONS(7290), 1, + sym_test_operator, + ACTIONS(7492), 1, + anon_sym_DOLLAR, + ACTIONS(5988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5148), 2, + ACTIONS(7284), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7288), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3234), 6, + STATE(3490), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106041] = 13, + [153543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(7250), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7254), 1, anon_sym_DQUOTE, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5070), 1, - sym__special_character, - ACTIONS(5074), 1, + ACTIONS(7256), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, + ACTIONS(7258), 1, anon_sym_BQUOTE, - ACTIONS(5150), 1, - sym_word, - STATE(1708), 1, - aux_sym__literal_repeat1, - STATE(1984), 1, - sym_concatenation, - ACTIONS(5080), 2, + ACTIONS(7262), 1, + sym_test_operator, + ACTIONS(7494), 1, + anon_sym_DOLLAR, + ACTIONS(7260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5152), 2, + ACTIONS(7248), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7252), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1710), 6, + STATE(1156), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106088] = 13, + [153588] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1948), 1, anon_sym_DQUOTE, - ACTIONS(5154), 1, - sym_word, - ACTIONS(5156), 1, - anon_sym_DOLLAR, - ACTIONS(5158), 1, - sym__special_character, - ACTIONS(5162), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - STATE(1859), 1, - aux_sym__literal_repeat1, - STATE(2222), 1, - sym_concatenation, - ACTIONS(5160), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5168), 2, + ACTIONS(7480), 1, + sym_test_operator, + ACTIONS(7496), 1, + anon_sym_DOLLAR, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1861), 6, + ACTIONS(7474), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7478), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2264), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106135] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_QMARK, - ACTIONS(5170), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5024), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5026), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5020), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106170] = 13, + [153633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(404), 1, anon_sym_BQUOTE, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(5172), 1, - sym_word, - STATE(3006), 1, - aux_sym__literal_repeat1, - STATE(3159), 1, - sym_concatenation, - ACTIONS(1831), 2, + ACTIONS(7326), 1, + sym_test_operator, + ACTIONS(7498), 1, + anon_sym_DOLLAR, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5174), 2, + ACTIONS(7320), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7324), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3004), 6, + STATE(1015), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106217] = 13, + [153678] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(5044), 1, - anon_sym_DOLLAR, - ACTIONS(5050), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(6974), 1, anon_sym_BQUOTE, - ACTIONS(5176), 1, - sym_word, - ACTIONS(5178), 1, - sym__special_character, - STATE(1686), 1, - aux_sym__literal_repeat1, - STATE(1802), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7458), 1, + sym_test_operator, + ACTIONS(7500), 1, + anon_sym_DOLLAR, + ACTIONS(6976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5180), 2, + ACTIONS(7454), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7456), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1758), 6, + STATE(2603), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106264] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_QMARK, - ACTIONS(5170), 1, - anon_sym_RBRACK, - ACTIONS(5120), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5126), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5122), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5118), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106299] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_RBRACK, - ACTIONS(5124), 1, - anon_sym_QMARK, - ACTIONS(5120), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5126), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5122), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5118), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106334] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5182), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106369] = 3, - ACTIONS(4141), 1, + [153723] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4580), 14, + ACTIONS(6560), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6562), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [106396] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5170), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106431] = 7, - ACTIONS(4141), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [153752] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5184), 1, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5802), 1, + anon_sym_DOLLAR, + ACTIONS(5808), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5810), 1, + anon_sym_BQUOTE, + ACTIONS(7490), 1, sym_test_operator, - [106466] = 13, + ACTIONS(5812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7484), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7488), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2420), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [153797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(404), 1, anon_sym_BQUOTE, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(5186), 1, - sym_word, - STATE(3066), 1, - aux_sym__literal_repeat1, - STATE(3258), 1, - sym_concatenation, - ACTIONS(1831), 2, + ACTIONS(7326), 1, + sym_test_operator, + ACTIONS(406), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5188), 2, + ACTIONS(7320), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7324), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3064), 6, + STATE(1015), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106513] = 13, + [153842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, + ACTIONS(5601), 1, anon_sym_DOLLAR, - ACTIONS(5050), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, + ACTIONS(6666), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(6670), 1, + anon_sym_DQUOTE, + ACTIONS(6674), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6676), 1, anon_sym_BQUOTE, - ACTIONS(5178), 1, - sym__special_character, - ACTIONS(5190), 1, - sym_word, - STATE(1694), 1, - aux_sym__literal_repeat1, - STATE(1848), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7506), 1, + sym_test_operator, + ACTIONS(6678), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5192), 2, + ACTIONS(7502), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7504), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1709), 6, + STATE(2994), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106560] = 13, + [153887] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, + ACTIONS(756), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, anon_sym_DQUOTE, - ACTIONS(5044), 1, - anon_sym_DOLLAR, - ACTIONS(5050), 1, + ACTIONS(764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(766), 1, anon_sym_BQUOTE, - ACTIONS(5178), 1, - sym__special_character, - ACTIONS(5194), 1, - sym_word, - STATE(1699), 1, - aux_sym__literal_repeat1, - STATE(1805), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7374), 1, + sym_test_operator, + ACTIONS(7508), 1, + anon_sym_DOLLAR, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5196), 2, + ACTIONS(7368), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7372), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1754), 6, + STATE(682), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106607] = 13, + [153932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, + ACTIONS(5772), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5774), 1, anon_sym_DOLLAR, - ACTIONS(5050), 1, + ACTIONS(5778), 1, + anon_sym_DQUOTE, + ACTIONS(5782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(5784), 1, anon_sym_BQUOTE, - ACTIONS(5178), 1, - sym__special_character, - ACTIONS(5198), 1, - sym_word, - STATE(1682), 1, - aux_sym__literal_repeat1, - STATE(1881), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7420), 1, + sym_test_operator, + ACTIONS(5786), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5200), 2, + ACTIONS(7414), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7418), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1776), 6, + STATE(1744), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106654] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5202), 1, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106689] = 13, + [153977] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, + ACTIONS(5827), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5831), 1, anon_sym_DQUOTE, - ACTIONS(5044), 1, - anon_sym_DOLLAR, - ACTIONS(5046), 1, - sym__special_character, - ACTIONS(5050), 1, + ACTIONS(5835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(5837), 1, anon_sym_BQUOTE, - ACTIONS(5204), 1, - sym_word, - STATE(1682), 1, - aux_sym__literal_repeat1, - STATE(1881), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7202), 1, + sym_test_operator, + ACTIONS(7510), 1, + anon_sym_DOLLAR, + ACTIONS(5839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5206), 2, + ACTIONS(7198), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7200), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1680), 6, + STATE(617), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106736] = 7, - ACTIONS(4141), 1, + [154022] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_QMARK, - ACTIONS(5208), 1, - anon_sym_RPAREN, - ACTIONS(5034), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5040), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5036), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5032), 8, + ACTIONS(6580), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6582), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106771] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5210), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106806] = 13, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154051] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DQUOTE, - ACTIONS(5068), 1, + ACTIONS(1942), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1944), 1, anon_sym_DOLLAR, - ACTIONS(5070), 1, - sym__special_character, - ACTIONS(5074), 1, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(1952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, + ACTIONS(1956), 1, anon_sym_BQUOTE, - ACTIONS(5212), 1, - sym_word, - STATE(1766), 1, - aux_sym__literal_repeat1, - STATE(2056), 1, - sym_concatenation, - ACTIONS(5080), 2, + ACTIONS(7480), 1, + sym_test_operator, + ACTIONS(1958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5214), 2, + ACTIONS(7474), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7478), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1765), 6, + STATE(2264), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106853] = 7, - ACTIONS(4141), 1, + [154096] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5216), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6670), 1, + anon_sym_DQUOTE, + ACTIONS(6674), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6676), 1, + anon_sym_BQUOTE, + ACTIONS(7506), 1, sym_test_operator, - [106888] = 7, - ACTIONS(4141), 1, + ACTIONS(7512), 1, + anon_sym_DOLLAR, + ACTIONS(6678), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7502), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7504), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2994), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [154141] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5218), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6792), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6794), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106923] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_RPAREN, - ACTIONS(5038), 1, - anon_sym_QMARK, - ACTIONS(5034), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5040), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5036), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5032), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106958] = 13, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154170] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(7516), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7518), 1, anon_sym_DOLLAR, - ACTIONS(1823), 1, + ACTIONS(7522), 1, anon_sym_DQUOTE, - ACTIONS(1825), 1, + ACTIONS(7524), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, + ACTIONS(7526), 1, anon_sym_BQUOTE, - ACTIONS(3978), 1, - sym__special_character, - ACTIONS(5220), 1, - sym_word, - STATE(2972), 1, - aux_sym__literal_repeat1, - STATE(3235), 1, - sym_concatenation, - ACTIONS(1831), 2, + ACTIONS(7530), 1, + sym_test_operator, + ACTIONS(7528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5222), 2, + ACTIONS(7514), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7520), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2973), 6, + STATE(1934), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107005] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_QMARK, - ACTIONS(5224), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5024), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5026), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5020), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107040] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4469), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4703), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [107067] = 3, - ACTIONS(4141), 1, + [154215] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 14, + ACTIONS(6796), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6798), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [107094] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5226), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107129] = 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_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154244] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(5827), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5831), 1, + anon_sym_DQUOTE, + ACTIONS(5835), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5837), 1, + anon_sym_BQUOTE, + ACTIONS(7202), 1, + sym_test_operator, + ACTIONS(7532), 1, anon_sym_DOLLAR, + ACTIONS(5839), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7198), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7200), 3, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + STATE(617), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [154289] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(164), 1, + anon_sym_DOLLAR, + ACTIONS(756), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(760), 1, + anon_sym_DQUOTE, + ACTIONS(764), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(766), 1, anon_sym_BQUOTE, + ACTIONS(7374), 1, + sym_test_operator, + ACTIONS(768), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7368), 3, + sym_number, + sym__comment_word, sym_word, - [107154] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5228), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107189] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4699), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [107216] = 7, - ACTIONS(4141), 1, + ACTIONS(7372), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(682), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [154334] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5230), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5800), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5808), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5810), 1, + anon_sym_BQUOTE, + ACTIONS(7490), 1, sym_test_operator, - [107251] = 7, - ACTIONS(4141), 1, + ACTIONS(7534), 1, + anon_sym_DOLLAR, + ACTIONS(5812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7484), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7488), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2420), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [154379] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5232), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5135), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5137), 1, + anon_sym_DOLLAR, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5147), 1, + anon_sym_BQUOTE, + ACTIONS(7352), 1, sym_test_operator, - [107286] = 13, + ACTIONS(5149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7346), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7350), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3049), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [154424] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(5046), 1, - sym__special_character, - ACTIONS(5050), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, + ACTIONS(7516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, + ACTIONS(7522), 1, + anon_sym_DQUOTE, + ACTIONS(7524), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7526), 1, anon_sym_BQUOTE, - ACTIONS(5234), 1, - sym_word, - STATE(1699), 1, - aux_sym__literal_repeat1, - STATE(1805), 1, - sym_concatenation, - ACTIONS(5056), 2, + ACTIONS(7530), 1, + sym_test_operator, + ACTIONS(7528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5236), 2, + ACTIONS(7514), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7520), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1696), 6, + STATE(1934), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107333] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_QMARK, - ACTIONS(5224), 1, - anon_sym_RBRACK, - ACTIONS(5120), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5126), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5122), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5118), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107368] = 7, - ACTIONS(4141), 1, + [154469] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5224), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6328), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6330), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107403] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(5038), 1, - anon_sym_QMARK, - ACTIONS(5238), 1, - anon_sym_RPAREN, - ACTIONS(5034), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5040), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5036), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5032), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107438] = 13, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, - anon_sym_DQUOTE, - ACTIONS(5156), 1, + ACTIONS(1284), 1, anon_sym_DOLLAR, - ACTIONS(5158), 1, - sym__special_character, - ACTIONS(5162), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(6000), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + ACTIONS(6008), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6010), 1, anon_sym_BQUOTE, - ACTIONS(5240), 1, - sym_word, - STATE(1914), 1, - aux_sym__literal_repeat1, - STATE(2181), 1, - sym_concatenation, - ACTIONS(5168), 2, + ACTIONS(7436), 1, + sym_test_operator, + ACTIONS(6012), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5242), 2, + ACTIONS(7430), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7434), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1919), 6, + STATE(1723), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107485] = 13, + [154543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6988), 1, anon_sym_DQUOTE, - ACTIONS(5156), 1, - anon_sym_DOLLAR, - ACTIONS(5158), 1, - sym__special_character, - ACTIONS(5162), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - ACTIONS(5244), 1, - sym_word, - STATE(1828), 1, - aux_sym__literal_repeat1, - STATE(2151), 1, - sym_concatenation, - ACTIONS(5168), 2, + ACTIONS(7538), 1, + anon_sym_DOLLAR, + ACTIONS(7542), 1, + sym_test_operator, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5246), 2, + ACTIONS(7536), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7540), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1831), 6, + STATE(2751), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107532] = 7, - ACTIONS(4141), 1, + [154588] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_QMARK, - ACTIONS(5248), 1, - anon_sym_COLON, - ACTIONS(4765), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4771), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4763), 8, + ACTIONS(6859), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6861), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [107567] = 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154617] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(5156), 1, - anon_sym_DOLLAR, - ACTIONS(5158), 1, - sym__special_character, - ACTIONS(5162), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, - sym_word, - STATE(1807), 1, - aux_sym__literal_repeat1, - STATE(2210), 1, - sym_concatenation, - ACTIONS(5168), 2, + ACTIONS(7472), 1, + sym_test_operator, + ACTIONS(7544), 1, + anon_sym_DOLLAR, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5252), 2, + ACTIONS(7468), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7470), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(1809), 6, + STATE(1767), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107614] = 11, + [154662] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(7516), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7522), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(7524), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(7526), 1, anon_sym_BQUOTE, - ACTIONS(5254), 1, - sym_word, - ACTIONS(5256), 1, - anon_sym_RBRACK, - ACTIONS(2471), 2, + ACTIONS(7530), 1, + sym_test_operator, + ACTIONS(7546), 1, + anon_sym_DOLLAR, + ACTIONS(7528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5258), 3, + ACTIONS(7514), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7520), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2295), 6, + STATE(1934), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107656] = 11, + [154707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(6332), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6334), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154736] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(2465), 1, + ACTIONS(206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, + ACTIONS(208), 1, anon_sym_BQUOTE, - ACTIONS(5254), 1, - sym_word, - ACTIONS(5260), 1, - anon_sym_RBRACK, - ACTIONS(2471), 2, + ACTIONS(7472), 1, + sym_test_operator, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(210), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5258), 3, + ACTIONS(7468), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7470), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2295), 6, + STATE(1767), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107698] = 10, + [154781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 1, + ACTIONS(6962), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6968), 1, anon_sym_DQUOTE, - ACTIONS(995), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(999), 1, + ACTIONS(6974), 1, anon_sym_BQUOTE, - ACTIONS(5262), 1, - sym_word, - ACTIONS(5264), 1, + ACTIONS(7458), 1, + sym_test_operator, + ACTIONS(7550), 1, anon_sym_DOLLAR, - ACTIONS(1001), 2, + ACTIONS(6976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5266), 3, + ACTIONS(7454), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7456), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(722), 6, + STATE(2603), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107737] = 10, + [154826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(6648), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6650), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154855] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6988), 1, anon_sym_DQUOTE, - ACTIONS(1743), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - ACTIONS(5268), 1, - sym_word, - ACTIONS(5270), 1, + ACTIONS(7542), 1, + sym_test_operator, + ACTIONS(7552), 1, anon_sym_DOLLAR, - ACTIONS(1749), 2, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5272), 3, + ACTIONS(7536), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7540), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2353), 6, + STATE(2751), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107776] = 10, + [154900] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4711), 1, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6984), 1, anon_sym_DOLLAR, - ACTIONS(4715), 1, + ACTIONS(6988), 1, anon_sym_DQUOTE, - ACTIONS(4719), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4721), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(6994), 1, anon_sym_BQUOTE, - ACTIONS(5274), 1, - sym_word, - ACTIONS(4725), 2, + ACTIONS(7542), 1, + sym_test_operator, + ACTIONS(6996), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5276), 3, + ACTIONS(7536), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7540), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(3302), 6, + STATE(2751), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107815] = 10, + [154945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6020), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [154974] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, + ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(43), 1, anon_sym_DOLLAR, - ACTIONS(5088), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(5092), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5094), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5096), 1, + ACTIONS(55), 1, anon_sym_BQUOTE, - ACTIONS(5278), 1, - sym_word, - ACTIONS(5098), 2, + ACTIONS(7272), 1, + sym_test_operator, + ACTIONS(57), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5280), 3, + ACTIONS(7266), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7270), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(2927), 6, + STATE(1686), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107854] = 10, + [155019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, + ACTIONS(6778), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6780), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [155048] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6670), 1, anon_sym_DQUOTE, - ACTIONS(4336), 1, + ACTIONS(6674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4340), 1, + ACTIONS(6676), 1, anon_sym_BQUOTE, - ACTIONS(5282), 1, + ACTIONS(7506), 1, + sym_test_operator, + ACTIONS(7554), 1, + anon_sym_DOLLAR, + ACTIONS(6678), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7502), 3, + sym_number, + sym__comment_word, sym_word, - ACTIONS(5284), 1, + ACTIONS(7504), 3, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2994), 7, + sym_arithmetic_expansion, + sym_string, + sym_translated_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155093] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 1, anon_sym_DOLLAR, - ACTIONS(4342), 2, + ACTIONS(5726), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5730), 1, + anon_sym_DQUOTE, + ACTIONS(5734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5736), 1, + anon_sym_BQUOTE, + ACTIONS(7246), 1, + sym_test_operator, + ACTIONS(5738), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5286), 3, + ACTIONS(7240), 3, + sym_number, + sym__comment_word, + sym_word, + ACTIONS(7244), 3, sym__special_character, sym_raw_string, sym_ansi_c_string, - STATE(421), 6, + STATE(971), 7, + sym_arithmetic_expansion, sym_string, sym_translated_string, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107893] = 10, + [155138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(7556), 1, + sym__concat, + STATE(2989), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1823), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7558), 1, + sym__concat, + STATE(2989), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + sym__concat, + STATE(2989), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155225] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7565), 1, + sym__concat, + STATE(2988), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7563), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7565), 1, + sym__concat, + STATE(2987), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7567), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7565), 1, + sym__concat, + STATE(2988), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 1, + sym__concat, + ACTIONS(937), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 1, + sym__concat, + ACTIONS(879), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7569), 1, + sym__special_character, + STATE(3006), 1, + aux_sym__literal_repeat1, + ACTIONS(7567), 16, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, - sym_word, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5290), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2157), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107932] = 10, + sym_word, + sym_test_operator, + [155392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(736), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, + ACTIONS(908), 1, + sym__concat, + ACTIONS(906), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(740), 1, - anon_sym_BQUOTE, - ACTIONS(5292), 1, - sym_word, - ACTIONS(5294), 1, anon_sym_DOLLAR, - ACTIONS(742), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5296), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(574), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107971] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DQUOTE, - ACTIONS(5074), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, anon_sym_BQUOTE, - ACTIONS(5298), 1, - sym_word, - ACTIONS(5300), 1, - anon_sym_DOLLAR, - ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5302), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1812), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108010] = 10, + sym_word, + sym_test_operator, + [155418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 1, + ACTIONS(904), 1, + sym__concat, + ACTIONS(902), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1687), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1689), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(5304), 1, - sym_word, - ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5306), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1796), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108049] = 10, + sym_word, + sym_test_operator, + [155444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(507), 1, - anon_sym_DQUOTE, - ACTIONS(509), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(511), 1, + ACTIONS(1004), 1, + sym__concat, + ACTIONS(1002), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(513), 1, - anon_sym_BQUOTE, - ACTIONS(5308), 1, - sym_word, - ACTIONS(5310), 1, anon_sym_DOLLAR, - ACTIONS(515), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5312), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(307), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108088] = 4, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(1000), 1, sym__concat, - STATE(2486), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 15, + ACTIONS(998), 17, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [108115] = 10, + sym_test_operator, + [155496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - anon_sym_DQUOTE, - ACTIONS(2465), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, + ACTIONS(900), 1, + sym__concat, + ACTIONS(898), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, - anon_sym_BQUOTE, - ACTIONS(5254), 1, - sym_word, - ACTIONS(5316), 1, anon_sym_DOLLAR, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5258), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2295), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108154] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(816), 1, - anon_sym_DQUOTE, - ACTIONS(4515), 1, - anon_sym_DOLLAR, - ACTIONS(4521), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(4523), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4525), 1, anon_sym_BQUOTE, - ACTIONS(5318), 1, - sym_word, - ACTIONS(4527), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5320), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(578), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108193] = 10, + sym_word, + sym_test_operator, + [155522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(931), 1, + sym__concat, + ACTIONS(929), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(613), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(615), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(617), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(619), 1, anon_sym_BQUOTE, - ACTIONS(5322), 1, - sym_word, - ACTIONS(621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5324), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(465), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108232] = 10, + sym_word, + sym_test_operator, + [155548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 1, + ACTIONS(912), 1, + sym__concat, + ACTIONS(910), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(507), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(509), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(513), 1, anon_sym_BQUOTE, - ACTIONS(5308), 1, - sym_word, - ACTIONS(515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5312), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(307), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108271] = 10, + sym_word, + sym_test_operator, + [155574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DQUOTE, - ACTIONS(5068), 1, + ACTIONS(916), 1, + sym__concat, + ACTIONS(914), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(5074), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(5076), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5078), 1, anon_sym_BQUOTE, - ACTIONS(5298), 1, - sym_word, - ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5302), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1812), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108310] = 10, + sym_word, + sym_test_operator, + [155600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, - anon_sym_DQUOTE, - ACTIONS(4330), 1, + ACTIONS(920), 1, + sym__concat, + ACTIONS(918), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(4336), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(4338), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4340), 1, anon_sym_BQUOTE, - ACTIONS(5282), 1, - sym_word, - ACTIONS(4342), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5286), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(421), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108349] = 10, + sym_word, + sym_test_operator, + [155626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - anon_sym_DQUOTE, - ACTIONS(2465), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, + ACTIONS(996), 1, + sym__concat, + ACTIONS(994), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, - anon_sym_BQUOTE, - ACTIONS(5254), 1, - sym_word, - ACTIONS(5326), 1, anon_sym_DOLLAR, - ACTIONS(2471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5258), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2295), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108388] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, - sym_word, - ACTIONS(5328), 1, - anon_sym_DOLLAR, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5290), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2157), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108427] = 10, + sym_word, + sym_test_operator, + [155652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 1, + ACTIONS(7571), 1, + sym__special_character, + STATE(3006), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 16, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(167), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(5330), 1, - sym_word, - ACTIONS(5332), 1, - anon_sym_DOLLAR, - ACTIONS(173), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5334), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(308), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108466] = 10, + sym_word, + sym_test_operator, + [155680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(896), 1, + sym__concat, + ACTIONS(894), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(2463), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2465), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2469), 1, anon_sym_BQUOTE, - ACTIONS(5254), 1, - sym_word, - ACTIONS(2471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5258), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2295), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108505] = 10, + sym_word, + sym_test_operator, + [155706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(948), 1, - anon_sym_DQUOTE, - ACTIONS(4352), 1, + ACTIONS(990), 1, + sym__concat, + ACTIONS(988), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(4358), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(4360), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4362), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, - sym_word, - ACTIONS(4364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5338), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(862), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108544] = 10, + sym_word, + sym_test_operator, + [155732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 1, - anon_sym_DQUOTE, - ACTIONS(991), 1, + ACTIONS(935), 1, + sym__concat, + ACTIONS(933), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(995), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(999), 1, anon_sym_BQUOTE, - ACTIONS(5262), 1, - sym_word, - ACTIONS(1001), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5266), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(722), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108583] = 10, + sym_word, + sym_test_operator, + [155758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4599), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, + ACTIONS(892), 1, + sym__concat, + ACTIONS(890), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, - anon_sym_BQUOTE, - ACTIONS(5340), 1, - sym_word, - ACTIONS(5342), 1, anon_sym_DOLLAR, - ACTIONS(4605), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5344), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2546), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108622] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5050), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, anon_sym_BQUOTE, - ACTIONS(5346), 1, - sym_word, - ACTIONS(5348), 1, - anon_sym_DOLLAR, - ACTIONS(5056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5350), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1768), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108661] = 10, + sym_word, + sym_test_operator, + [155784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1075), 1, + ACTIONS(986), 1, + sym__concat, + ACTIONS(984), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1079), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1083), 1, anon_sym_BQUOTE, - ACTIONS(5352), 1, - sym_word, - ACTIONS(1085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5354), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(790), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108700] = 10, + sym_word, + sym_test_operator, + [155810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, + ACTIONS(950), 1, + sym__concat, + ACTIONS(948), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1961), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1963), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(5356), 1, - sym_word, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5358), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2013), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108739] = 10, + sym_word, + sym_test_operator, + [155836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DQUOTE, - ACTIONS(3990), 1, + ACTIONS(954), 1, + sym__concat, + ACTIONS(952), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(3994), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, anon_sym_BQUOTE, - ACTIONS(5360), 1, - sym_word, - ACTIONS(4000), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5362), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2512), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108778] = 10, + sym_word, + sym_test_operator, + [155862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(706), 1, + ACTIONS(935), 1, + sym__concat, + ACTIONS(933), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(710), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(712), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(716), 1, anon_sym_BQUOTE, - ACTIONS(5364), 1, - sym_word, - ACTIONS(718), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5366), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(610), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108817] = 10, + sym_word, + sym_test_operator, + [155888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_DQUOTE, - ACTIONS(4477), 1, + ACTIONS(958), 1, + sym__concat, + ACTIONS(956), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(4483), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(4485), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4487), 1, anon_sym_BQUOTE, - ACTIONS(5368), 1, - sym_word, - ACTIONS(4489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5370), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(794), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108856] = 10, + sym_word, + sym_test_operator, + [155914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(948), 1, - anon_sym_DQUOTE, - ACTIONS(4358), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4360), 1, + ACTIONS(888), 1, + sym__concat, + ACTIONS(886), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(4362), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, - sym_word, - ACTIONS(5372), 1, anon_sym_DOLLAR, - ACTIONS(4364), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5338), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(862), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108895] = 10, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [155940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(962), 1, + sym__concat, + ACTIONS(960), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(43), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(47), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, anon_sym_BQUOTE, - ACTIONS(5374), 1, - sym_word, - ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5376), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(626), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108934] = 10, + sym_word, + sym_test_operator, + [155966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, + ACTIONS(966), 1, + sym__concat, + ACTIONS(964), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(5050), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, anon_sym_BQUOTE, - ACTIONS(5346), 1, - sym_word, - ACTIONS(5056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5350), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1768), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108973] = 10, + sym_word, + sym_test_operator, + [155992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(970), 1, + sym__concat, + ACTIONS(968), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1741), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1743), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1745), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1747), 1, anon_sym_BQUOTE, - ACTIONS(5268), 1, - sym_word, - ACTIONS(1749), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5272), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2353), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109012] = 10, + sym_word, + sym_test_operator, + [156018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, + ACTIONS(974), 1, + sym__concat, + ACTIONS(972), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - ACTIONS(5374), 1, - sym_word, - ACTIONS(5378), 1, anon_sym_DOLLAR, - ACTIONS(53), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5376), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(626), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109051] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1671), 1, - anon_sym_DQUOTE, - ACTIONS(5162), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, anon_sym_BQUOTE, - ACTIONS(5380), 1, - sym_word, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5384), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1990), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109090] = 10, + sym_word, + sym_test_operator, + [156044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, - anon_sym_DQUOTE, - ACTIONS(4521), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4523), 1, + ACTIONS(982), 1, + sym__concat, + ACTIONS(980), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(4525), 1, - anon_sym_BQUOTE, - ACTIONS(5318), 1, - sym_word, - ACTIONS(5386), 1, anon_sym_DOLLAR, - ACTIONS(4527), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5320), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(578), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109129] = 10, + sym_number, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + sym_test_operator, + [156070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 1, + ACTIONS(978), 1, + sym__concat, + ACTIONS(976), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, - ACTIONS(1153), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1155), 1, + sym_raw_string, + sym_ansi_c_string, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, - sym_word, - ACTIONS(1161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5390), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(850), 6, + sym_word, + sym_test_operator, + [156096] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(838), 1, + anon_sym_LF, + ACTIONS(7576), 1, + anon_sym_DQUOTE, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3480), 1, sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109168] = 10, + ACTIONS(830), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(7574), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [156129] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(844), 1, + anon_sym_LF, + ACTIONS(7576), 1, anon_sym_DQUOTE, - ACTIONS(5156), 1, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3480), 1, + sym_string, + ACTIONS(842), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(7574), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5162), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5166), 1, - anon_sym_BQUOTE, - ACTIONS(5380), 1, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [156162] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7580), 1, + sym__concat, + STATE(3025), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5168), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5384), 3, + ACTIONS(881), 12, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1990), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109207] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, - anon_sym_DQUOTE, - ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(5304), 1, - sym_word, - ACTIONS(5392), 1, - anon_sym_DOLLAR, - ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5306), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1796), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109246] = 10, + sym_test_operator, + [156191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(5050), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5052), 1, + ACTIONS(875), 17, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN, - ACTIONS(5054), 1, - anon_sym_BQUOTE, - ACTIONS(5346), 1, - sym_word, - ACTIONS(5394), 1, anon_sym_DOLLAR, - ACTIONS(5056), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5350), 3, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1768), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109285] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, + sym_number, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(5396), 1, - sym_word, - ACTIONS(5398), 1, - anon_sym_DOLLAR, - ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5400), 3, + sym_word, + sym_test_operator, + [156214] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(914), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(916), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(753), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109324] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 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(5274), 1, - sym_word, - ACTIONS(5402), 1, - anon_sym_DOLLAR, - ACTIONS(4725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5276), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(3302), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109363] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156238] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(159), 1, + ACTIONS(960), 3, anon_sym_DOLLAR, - ACTIONS(163), 1, + sym_number, + sym_word, + ACTIONS(962), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(167), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(5330), 1, - sym_word, - ACTIONS(173), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5334), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(308), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109402] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156262] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(918), 3, anon_sym_DOLLAR, - ACTIONS(734), 1, + sym_number, + sym_word, + ACTIONS(920), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(736), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(738), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(740), 1, anon_sym_BQUOTE, - ACTIONS(5292), 1, - sym_word, - ACTIONS(742), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5296), 3, + sym_test_operator, + [156286] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(910), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(912), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(574), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109441] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - anon_sym_DQUOTE, - ACTIONS(4483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4485), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4487), 1, anon_sym_BQUOTE, - ACTIONS(5368), 1, - sym_word, - ACTIONS(5404), 1, - anon_sym_DOLLAR, - ACTIONS(4489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5370), 3, + sym_test_operator, + [156310] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + STATE(3037), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(877), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(794), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109480] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - ACTIONS(4593), 1, - anon_sym_DOLLAR, - ACTIONS(4599), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4603), 1, anon_sym_BQUOTE, - ACTIONS(5340), 1, - sym_word, - ACTIONS(4605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5344), 3, + sym_test_operator, + [156338] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(904), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2546), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109519] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1069), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1081), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1083), 1, anon_sym_BQUOTE, - ACTIONS(5352), 1, - sym_word, - ACTIONS(5406), 1, - anon_sym_DOLLAR, - ACTIONS(1085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5354), 3, + sym_test_operator, + [156362] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1002), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1004), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(790), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109558] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, - anon_sym_DQUOTE, - ACTIONS(4422), 1, - anon_sym_DOLLAR, - ACTIONS(4428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4432), 1, anon_sym_BQUOTE, - ACTIONS(5408), 1, - sym_word, - ACTIONS(4434), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5410), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(1920), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109597] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156386] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(998), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(1000), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4428), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(4430), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4432), 1, anon_sym_BQUOTE, - ACTIONS(5408), 1, - sym_word, - ACTIONS(5412), 1, - anon_sym_DOLLAR, - ACTIONS(4434), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5410), 3, + sym_test_operator, + [156410] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(935), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1920), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109636] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 1, - anon_sym_DQUOTE, - ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, - sym_word, - ACTIONS(5414), 1, - anon_sym_DOLLAR, - ACTIONS(1161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5390), 3, + sym_test_operator, + [156434] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7585), 1, sym__special_character, + STATE(3036), 1, + aux_sym__literal_repeat1, + ACTIONS(922), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(927), 11, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(850), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109675] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_DQUOTE, - ACTIONS(1825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1827), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1829), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, - sym_word, - ACTIONS(5416), 1, - anon_sym_DOLLAR, - ACTIONS(1831), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5290), 3, + sym_test_operator, + [156462] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7588), 1, + sym__concat, + STATE(3025), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(865), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2157), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109714] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5088), 1, - anon_sym_DQUOTE, - ACTIONS(5092), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5094), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5096), 1, anon_sym_BQUOTE, - ACTIONS(5278), 1, - sym_word, - ACTIONS(5418), 1, - anon_sym_DOLLAR, - ACTIONS(5098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5280), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2927), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109753] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156490] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(249), 1, + ACTIONS(929), 3, anon_sym_DOLLAR, - ACTIONS(253), 1, + sym_number, + sym_word, + ACTIONS(931), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(257), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, anon_sym_BQUOTE, - ACTIONS(5420), 1, - sym_word, - ACTIONS(263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5422), 3, + sym_test_operator, + [156514] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(937), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(939), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(431), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109792] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(253), 1, - anon_sym_DQUOTE, - ACTIONS(257), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(261), 1, anon_sym_BQUOTE, - ACTIONS(5420), 1, - sym_word, - ACTIONS(5424), 1, - anon_sym_DOLLAR, - ACTIONS(263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5422), 3, + sym_test_operator, + [156538] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(890), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(892), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(431), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109831] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1961), 1, - anon_sym_DQUOTE, - ACTIONS(1963), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1965), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1967), 1, anon_sym_BQUOTE, - ACTIONS(5356), 1, - sym_word, - ACTIONS(5426), 1, - anon_sym_DOLLAR, - ACTIONS(1969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5358), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(2013), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109870] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156562] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(824), 1, + ACTIONS(7590), 1, + sym__concat, + STATE(3025), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 3, anon_sym_DOLLAR, - ACTIONS(828), 1, + sym_number, + sym_word, + ACTIONS(871), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(830), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(832), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(834), 1, anon_sym_BQUOTE, - ACTIONS(5428), 1, - sym_word, - ACTIONS(836), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5430), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(455), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109909] = 4, - ACTIONS(3), 1, + sym_test_operator, + [156590] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(7583), 1, sym__concat, - STATE(2491), 1, + STATE(3041), 1, aux_sym_concatenation_repeat1, - ACTIONS(1249), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7567), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7592), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [109936] = 10, - ACTIONS(3), 1, + sym_test_operator, + [156618] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(828), 1, + ACTIONS(994), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(996), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(830), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(832), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(834), 1, anon_sym_BQUOTE, - ACTIONS(5428), 1, - sym_word, - ACTIONS(5434), 1, - anon_sym_DOLLAR, - ACTIONS(836), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5430), 3, + sym_test_operator, + [156642] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(988), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(990), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(455), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109975] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(710), 1, - anon_sym_DQUOTE, - ACTIONS(712), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(716), 1, anon_sym_BQUOTE, - ACTIONS(5364), 1, - sym_word, - ACTIONS(5436), 1, - anon_sym_DOLLAR, - ACTIONS(718), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5366), 3, + sym_test_operator, + [156666] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(984), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(986), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(610), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110014] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 1, - anon_sym_DQUOTE, - ACTIONS(615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(617), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(619), 1, anon_sym_BQUOTE, - ACTIONS(5322), 1, - sym_word, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5324), 3, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - STATE(465), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110053] = 4, - ACTIONS(3), 1, + sym_test_operator, + [156690] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5314), 1, - sym__concat, - STATE(2486), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5440), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(980), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(982), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110080] = 4, - ACTIONS(3), 1, + sym_test_operator, + [156714] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(5442), 1, + ACTIONS(7583), 1, sym__concat, - STATE(2491), 1, + STATE(3037), 1, aux_sym_concatenation_repeat1, - ACTIONS(1255), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7563), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7594), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110107] = 7, + sym_test_operator, + [156742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 1, + ACTIONS(844), 1, anon_sym_LF, - ACTIONS(5088), 1, + ACTIONS(7576), 1, anon_sym_DQUOTE, - ACTIONS(5447), 1, + ACTIONS(7578), 1, aux_sym__simple_variable_name_token1, - STATE(2957), 1, + STATE(3480), 1, sym_string, - ACTIONS(599), 4, - anon_sym_in, + ACTIONS(842), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(5445), 9, + ACTIONS(7574), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [110140] = 10, - ACTIONS(3), 1, + [156774] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(879), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(881), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3994), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3998), 1, anon_sym_BQUOTE, - ACTIONS(5360), 1, - sym_word, - ACTIONS(5449), 1, - anon_sym_DOLLAR, - ACTIONS(4000), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5362), 3, + sym_test_operator, + [156798] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(894), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(896), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2512), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110179] = 10, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156822] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(95), 1, + ACTIONS(886), 3, anon_sym_DOLLAR, - ACTIONS(99), 1, + sym_number, + sym_word, + ACTIONS(888), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(103), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(5396), 1, - sym_word, - ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5400), 3, + sym_test_operator, + [156846] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(976), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(978), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(753), 6, - sym_string, - sym_translated_string, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110218] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [156870] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1390), 1, - sym__concat, - ACTIONS(1388), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(948), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(950), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110242] = 3, - ACTIONS(3), 1, + sym_test_operator, + [156894] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1396), 1, - sym__concat, - ACTIONS(1394), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(906), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(908), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110266] = 3, - ACTIONS(3), 1, + sym_test_operator, + [156918] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 1, - sym__concat, - ACTIONS(1287), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(972), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(974), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110290] = 4, - ACTIONS(3), 1, + sym_test_operator, + [156942] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5451), 1, - sym__special_character, - STATE(2498), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 14, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(968), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(970), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110316] = 3, - ACTIONS(3), 1, + sym_test_operator, + [156966] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1293), 1, - sym__concat, - ACTIONS(1291), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(964), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(966), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110340] = 4, - ACTIONS(3), 1, + sym_test_operator, + [156990] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5456), 1, - sym__special_character, - STATE(2498), 1, - aux_sym__literal_repeat1, - ACTIONS(5454), 14, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(898), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(900), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [157014] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(952), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(954), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + [157038] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - anon_sym_AMP, - [110366] = 3, + ACTIONS(935), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [157062] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, - sym__concat, - ACTIONS(1422), 15, + ACTIONS(838), 1, anon_sym_LF, + ACTIONS(7576), 1, + anon_sym_DQUOTE, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3480), 1, + sym_string, + ACTIONS(830), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(7574), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [157094] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(956), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(958), 13, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + [157118] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7598), 1, + anon_sym_esac, + ACTIONS(7596), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - anon_sym_AMP, - [110390] = 3, - ACTIONS(3), 1, + ACTIONS(7600), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [157143] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1420), 1, - sym__concat, - ACTIONS(1418), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7604), 1, + anon_sym_esac, + ACTIONS(7602), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7606), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110414] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157168] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 1, - sym__concat, - ACTIONS(1275), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7610), 1, + anon_sym_esac, + ACTIONS(7608), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7612), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110438] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157193] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1320), 1, - sym__concat, - ACTIONS(1318), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7616), 1, + anon_sym_esac, + ACTIONS(7614), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7618), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110462] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157218] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1324), 1, - sym__concat, - ACTIONS(1322), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7622), 1, + anon_sym_esac, + ACTIONS(7620), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7624), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110486] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157243] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1338), 1, - sym__concat, - ACTIONS(1336), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7628), 1, + anon_sym_esac, + ACTIONS(7626), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7630), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110510] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157268] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1412), 1, - sym__concat, - ACTIONS(1410), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7634), 1, + anon_sym_esac, + ACTIONS(7632), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7636), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110534] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157293] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 1, - sym__concat, - ACTIONS(1350), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7640), 1, + anon_sym_esac, + ACTIONS(7638), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7642), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110558] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157318] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(1408), 1, - sym__concat, - ACTIONS(1406), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, + ACTIONS(7644), 1, sym__special_character, + STATE(3036), 1, + aux_sym__literal_repeat1, + ACTIONS(7567), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7592), 10, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110582] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157345] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1356), 1, - sym__concat, - ACTIONS(1354), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7648), 1, + anon_sym_esac, + ACTIONS(7646), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7650), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110606] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157370] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1281), 1, - sym__concat, - ACTIONS(1279), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7654), 1, + anon_sym_esac, + ACTIONS(7652), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7656), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110630] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157395] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 1, - sym__concat, - ACTIONS(1255), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7660), 1, + anon_sym_esac, + ACTIONS(7658), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7662), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110654] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157420] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7666), 1, + anon_sym_esac, + ACTIONS(7664), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7668), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110678] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157445] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 1, - sym__concat, - ACTIONS(1368), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7622), 1, + anon_sym_esac, + ACTIONS(7620), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7624), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110702] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157470] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 1, - sym__concat, - ACTIONS(1372), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7628), 1, + anon_sym_esac, + ACTIONS(7626), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7630), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110726] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157495] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1382), 1, - sym__concat, - ACTIONS(1380), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(875), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(877), 12, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110750] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157518] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1386), 1, - sym__concat, - ACTIONS(1384), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7672), 1, + anon_sym_esac, + ACTIONS(7670), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7674), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110774] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157543] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1330), 1, - sym__concat, - ACTIONS(1328), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7678), 1, + anon_sym_esac, + ACTIONS(7676), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7680), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110798] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157568] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1285), 1, - sym__concat, - ACTIONS(1283), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7684), 1, + anon_sym_esac, + ACTIONS(7682), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7686), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110822] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157593] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 1, - sym__concat, - ACTIONS(1358), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7598), 1, + anon_sym_esac, + ACTIONS(7596), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7600), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110846] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157618] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1400), 1, - sym__concat, - ACTIONS(1398), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7648), 1, + anon_sym_esac, + ACTIONS(7646), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7650), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110870] = 3, - ACTIONS(3), 1, + sym_test_operator, + [157643] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1404), 1, - sym__concat, - ACTIONS(1402), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7672), 1, + anon_sym_esac, + ACTIONS(7670), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7674), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110894] = 2, - ACTIONS(3), 1, + sym_test_operator, + [157668] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1221), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(7610), 1, + anon_sym_esac, + ACTIONS(7608), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7612), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110915] = 5, - ACTIONS(3), 1, + sym_test_operator, + [157693] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1251), 1, - sym_word, - ACTIONS(5458), 1, - sym__concat, - STATE(2525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 11, - anon_sym_RPAREN, + ACTIONS(7634), 1, + anon_sym_esac, + ACTIONS(7632), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7636), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [110941] = 5, - ACTIONS(3), 1, + sym_test_operator, + [157718] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 1, - sym_word, - ACTIONS(5460), 1, - sym__concat, - STATE(2525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 11, - anon_sym_RPAREN, + ACTIONS(7690), 1, + anon_sym_esac, + ACTIONS(7688), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7692), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [110967] = 5, - ACTIONS(3), 1, + sym_test_operator, + [157743] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(5463), 1, - sym_word, - ACTIONS(5465), 1, - sym__concat, - STATE(2524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5440), 11, - anon_sym_RPAREN, + ACTIONS(7604), 1, + anon_sym_esac, + ACTIONS(7602), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7606), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [110993] = 5, - ACTIONS(3), 1, + sym_test_operator, + [157768] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1223), 1, - sym_word, - ACTIONS(5465), 1, - sym__concat, - STATE(2524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1221), 11, - anon_sym_RPAREN, + ACTIONS(7694), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7696), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [111019] = 7, + sym_test_operator, + [157790] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, + ACTIONS(3573), 1, + anon_sym_RBRACE, + ACTIONS(7702), 1, aux_sym__simple_variable_name_token1, - STATE(2305), 1, - sym_string, - ACTIONS(605), 2, - sym__concat, - anon_sym_RBRACK, - ACTIONS(2163), 2, + ACTIONS(7706), 1, + sym_variable_name, + STATE(841), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7704), 2, anon_sym_0, anon_sym__, - ACTIONS(2165), 7, + ACTIONS(7700), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [157824] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3387), 1, + anon_sym_RBRACE, + ACTIONS(7710), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7714), 1, + sym_variable_name, + STATE(811), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7712), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7708), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [157858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7716), 1, + anon_sym_RBRACE, + ACTIONS(7722), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7726), 1, + sym_variable_name, + STATE(867), 1, + sym_subscript, + STATE(3208), 1, + aux_sym_expansion_repeat1, + ACTIONS(7718), 2, + anon_sym_BANG, anon_sym_POUND, + ACTIONS(7724), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7720), 5, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - [111049] = 7, + [157892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, - anon_sym_DQUOTE, - ACTIONS(3043), 1, + ACTIONS(2797), 1, + anon_sym_RBRACE, + ACTIONS(7730), 1, aux_sym__simple_variable_name_token1, - STATE(2168), 1, - sym_string, - ACTIONS(605), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(3037), 2, + ACTIONS(7734), 1, + sym_variable_name, + STATE(711), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7732), 2, anon_sym_0, anon_sym__, - ACTIONS(3039), 7, + ACTIONS(7728), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [157926] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + anon_sym_RBRACE, + ACTIONS(7738), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7742), 1, + sym_variable_name, + STATE(660), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7740), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7736), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [157960] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7744), 1, + anon_sym_RBRACE, + ACTIONS(7750), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7754), 1, + sym_variable_name, + STATE(805), 1, + sym_subscript, + STATE(3091), 1, + aux_sym_expansion_repeat1, + ACTIONS(7746), 2, + anon_sym_BANG, anon_sym_POUND, + ACTIONS(7752), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7748), 5, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - [111079] = 3, + [157994] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7758), 1, + aux_sym__simple_variable_name_token1, + STATE(3974), 1, + sym_string, + ACTIONS(838), 2, sym__concat, - sym_word, - ACTIONS(1328), 11, - anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(7760), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7756), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [158024] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7762), 1, + anon_sym_RBRACE, + ACTIONS(7768), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7772), 1, + sym_variable_name, + STATE(815), 1, + sym_subscript, + STATE(3099), 1, + aux_sym_expansion_repeat1, + ACTIONS(7764), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7770), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7766), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [158058] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7632), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7636), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [111100] = 8, + sym_test_operator, + [158080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, + ACTIONS(3447), 1, anon_sym_RBRACE, - ACTIONS(5473), 1, + ACTIONS(7776), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5477), 1, + ACTIONS(7780), 1, sym_variable_name, - STATE(1115), 1, + STATE(822), 1, sym_subscript, - ACTIONS(5469), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5475), 2, + ACTIONS(7778), 2, anon_sym_0, anon_sym__, - ACTIONS(5471), 5, + ACTIONS(7774), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [158114] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7782), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7784), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [158136] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7758), 1, + aux_sym__simple_variable_name_token1, + STATE(3974), 1, + sym_string, + ACTIONS(844), 2, + sym__concat, + anon_sym_RBRACK, + ACTIONS(7760), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7756), 7, + anon_sym_BANG, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_AT, - [111131] = 3, + [158166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_esac, - ACTIONS(5479), 12, - anon_sym_LPAREN, + ACTIONS(3335), 1, + anon_sym_RBRACE, + ACTIONS(7788), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7792), 1, + sym_variable_name, + STATE(799), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7790), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7786), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [158200] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7794), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7796), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, + sym_test_operator, + [158222] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7794), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - [111152] = 8, + ACTIONS(7796), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [158244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 1, + ACTIONS(2384), 1, anon_sym_RBRACE, - ACTIONS(5489), 1, + ACTIONS(7800), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5493), 1, + ACTIONS(7804), 1, sym_variable_name, - STATE(1100), 1, + STATE(638), 1, sym_subscript, - ACTIONS(5485), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5491), 2, + ACTIONS(7802), 2, anon_sym_0, anon_sym__, - ACTIONS(5487), 5, + ACTIONS(7798), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111183] = 8, + [158278] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5495), 1, + ACTIONS(3869), 1, anon_sym_RBRACE, - ACTIONS(5501), 1, + ACTIONS(7808), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5505), 1, + ACTIONS(7812), 1, sym_variable_name, - STATE(959), 1, + STATE(893), 1, sym_subscript, - ACTIONS(5497), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5503), 2, + ACTIONS(7810), 2, anon_sym_0, anon_sym__, - ACTIONS(5499), 5, + ACTIONS(7806), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111214] = 3, - ACTIONS(3), 1, + [158312] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 2, - sym__concat, - sym_word, - ACTIONS(1350), 11, - anon_sym_RPAREN, + ACTIONS(7782), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7784), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [111235] = 8, + sym_test_operator, + [158334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 1, + ACTIONS(7814), 1, anon_sym_RBRACE, - ACTIONS(5513), 1, + ACTIONS(7820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5517), 1, + ACTIONS(7824), 1, sym_variable_name, - STATE(951), 1, + STATE(797), 1, sym_subscript, - ACTIONS(5509), 2, + STATE(3102), 1, + aux_sym_expansion_repeat1, + ACTIONS(7816), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5515), 2, + ACTIONS(7822), 2, anon_sym_0, anon_sym__, - ACTIONS(5511), 5, + ACTIONS(7818), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111266] = 3, - ACTIONS(3), 1, + [158368] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 2, - sym__concat, - sym_word, - ACTIONS(1275), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 1, - anon_sym_esac, - ACTIONS(5479), 12, - anon_sym_LPAREN, + ACTIONS(7826), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - [111308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5521), 1, - anon_sym_esac, - ACTIONS(5519), 12, + ACTIONS(7828), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111329] = 8, + sym_test_operator, + [158390] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, + ACTIONS(2022), 1, anon_sym_RBRACE, - ACTIONS(5529), 1, + ACTIONS(7832), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5533), 1, + ACTIONS(7836), 1, sym_variable_name, - STATE(1073), 1, + STATE(510), 1, sym_subscript, - ACTIONS(5525), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5531), 2, + ACTIONS(7834), 2, anon_sym_0, anon_sym__, - ACTIONS(5527), 5, + ACTIONS(7830), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111360] = 7, + [158424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(605), 1, + ACTIONS(7838), 1, anon_sym_RBRACE, - ACTIONS(5537), 1, - anon_sym_DQUOTE, - ACTIONS(5539), 1, + ACTIONS(7844), 1, aux_sym__simple_variable_name_token1, - STATE(3278), 1, - sym_string, - ACTIONS(5541), 2, + ACTIONS(7848), 1, + sym_variable_name, + STATE(506), 1, + sym_subscript, + STATE(3123), 1, + aux_sym_expansion_repeat1, + ACTIONS(7840), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7846), 2, anon_sym_0, anon_sym__, - ACTIONS(5535), 7, - anon_sym_BANG, + ACTIONS(7842), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [111389] = 8, + [158458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(7850), 1, anon_sym_RBRACE, - ACTIONS(5549), 1, + ACTIONS(7856), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5553), 1, + ACTIONS(7860), 1, sym_variable_name, - STATE(962), 1, + STATE(715), 1, sym_subscript, - ACTIONS(5545), 2, + STATE(3117), 1, + aux_sym_expansion_repeat1, + ACTIONS(7852), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5551), 2, + ACTIONS(7858), 2, anon_sym_0, anon_sym__, - ACTIONS(5547), 5, + ACTIONS(7854), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 2, - sym__concat, - sym_word, - ACTIONS(1279), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5557), 1, - anon_sym_esac, - ACTIONS(5555), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [111462] = 8, + [158492] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, + ACTIONS(7862), 1, anon_sym_RBRACE, - ACTIONS(5565), 1, + ACTIONS(7868), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5569), 1, + ACTIONS(7872), 1, sym_variable_name, - STATE(1181), 1, + STATE(664), 1, sym_subscript, - ACTIONS(5561), 2, + STATE(3116), 1, + aux_sym_expansion_repeat1, + ACTIONS(7864), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5567), 2, + ACTIONS(7870), 2, anon_sym_0, anon_sym__, - ACTIONS(5563), 5, + ACTIONS(7866), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 2, - sym__concat, - sym_word, - ACTIONS(1255), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111514] = 8, + [158526] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, + ACTIONS(7874), 1, anon_sym_RBRACE, - ACTIONS(5577), 1, + ACTIONS(7880), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5581), 1, + ACTIONS(7884), 1, sym_variable_name, - STATE(1062), 1, + STATE(889), 1, sym_subscript, - ACTIONS(5573), 2, + STATE(3106), 1, + aux_sym_expansion_repeat1, + ACTIONS(7876), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5579), 2, + ACTIONS(7882), 2, anon_sym_0, anon_sym__, - ACTIONS(5575), 5, + ACTIONS(7878), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111545] = 8, + [158560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, + ACTIONS(7886), 1, anon_sym_RBRACE, - ACTIONS(5589), 1, + ACTIONS(7892), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5593), 1, + ACTIONS(7896), 1, sym_variable_name, - STATE(1058), 1, + STATE(826), 1, sym_subscript, - ACTIONS(5585), 2, + STATE(3132), 1, + aux_sym_expansion_repeat1, + ACTIONS(7888), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5591), 2, + ACTIONS(7894), 2, anon_sym_0, anon_sym__, - ACTIONS(5587), 5, + ACTIONS(7890), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111576] = 8, + [158594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 1, + ACTIONS(2563), 1, anon_sym_RBRACE, - ACTIONS(5601), 1, + ACTIONS(7900), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5605), 1, + ACTIONS(7904), 1, sym_variable_name, - STATE(1109), 1, + STATE(668), 1, sym_subscript, - ACTIONS(5597), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5603), 2, + ACTIONS(7902), 2, anon_sym_0, anon_sym__, - ACTIONS(5599), 5, + ACTIONS(7898), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111607] = 8, + [158628] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 1, + ACTIONS(2855), 1, anon_sym_RBRACE, - ACTIONS(5613), 1, + ACTIONS(7908), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5617), 1, + ACTIONS(7912), 1, sym_variable_name, - STATE(988), 1, + STATE(719), 1, sym_subscript, - ACTIONS(5609), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5615), 2, + ACTIONS(7910), 2, anon_sym_0, anon_sym__, - ACTIONS(5611), 5, + ACTIONS(7906), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111638] = 8, + [158662] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(7914), 1, anon_sym_RBRACE, - ACTIONS(5625), 1, + ACTIONS(7920), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5629), 1, + ACTIONS(7924), 1, sym_variable_name, - STATE(1153), 1, + STATE(522), 1, sym_subscript, - ACTIONS(5621), 2, + STATE(3151), 1, + aux_sym_expansion_repeat1, + ACTIONS(7916), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5627), 2, + ACTIONS(7922), 2, anon_sym_0, anon_sym__, - ACTIONS(5623), 5, + ACTIONS(7918), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111669] = 8, + [158696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(4025), 1, anon_sym_RBRACE, - ACTIONS(5637), 1, + ACTIONS(7928), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5641), 1, + ACTIONS(7932), 1, sym_variable_name, - STATE(1071), 1, + STATE(897), 1, sym_subscript, - ACTIONS(5633), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5639), 2, + ACTIONS(7930), 2, anon_sym_0, anon_sym__, - ACTIONS(5635), 5, + ACTIONS(7926), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 2, - sym__concat, - sym_word, - ACTIONS(1283), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111721] = 8, + [158730] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 1, + ACTIONS(7934), 1, anon_sym_RBRACE, - ACTIONS(5649), 1, + ACTIONS(7940), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5653), 1, + ACTIONS(7944), 1, sym_variable_name, - STATE(1118), 1, + STATE(629), 1, sym_subscript, - ACTIONS(5645), 2, + STATE(3105), 1, + aux_sym_expansion_repeat1, + ACTIONS(7936), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5651), 2, + ACTIONS(7942), 2, anon_sym_0, anon_sym__, - ACTIONS(5647), 5, + ACTIONS(7938), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111752] = 3, - ACTIONS(3), 1, + [158764] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 2, - sym__concat, - sym_word, - ACTIONS(1287), 11, - anon_sym_RPAREN, + ACTIONS(7946), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, + sym_number, sym_word, - ACTIONS(5657), 1, - sym__special_character, - STATE(2600), 1, - aux_sym__literal_repeat1, - ACTIONS(5454), 10, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7948), 11, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 2, - sym__concat, - sym_word, - ACTIONS(1291), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [111819] = 8, + sym_test_operator, + [158786] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(3261), 1, anon_sym_RBRACE, - ACTIONS(5665), 1, + ACTIONS(7952), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5669), 1, + ACTIONS(7956), 1, sym_variable_name, - STATE(1009), 1, + STATE(793), 1, sym_subscript, - ACTIONS(5661), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5667), 2, + ACTIONS(7954), 2, anon_sym_0, anon_sym__, - ACTIONS(5663), 5, + ACTIONS(7950), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_esac, - ACTIONS(5671), 12, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [111871] = 3, + [158820] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, - sym__concat, - sym_word, - ACTIONS(1318), 11, - anon_sym_RPAREN, + ACTIONS(1964), 1, + anon_sym_RBRACE, + ACTIONS(7960), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7964), 1, + sym_variable_name, + STATE(564), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(7962), 2, + anon_sym_0, + anon_sym__, + ACTIONS(7958), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [111892] = 8, + anon_sym_AT, + [158854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(7966), 1, anon_sym_RBRACE, - ACTIONS(5681), 1, + ACTIONS(7972), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5685), 1, + ACTIONS(7976), 1, sym_variable_name, - STATE(992), 1, + STATE(656), 1, sym_subscript, - ACTIONS(5677), 2, + STATE(3094), 1, + aux_sym_expansion_repeat1, + ACTIONS(7968), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5683), 2, + ACTIONS(7974), 2, anon_sym_0, anon_sym__, - ACTIONS(5679), 5, + ACTIONS(7970), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111923] = 3, - ACTIONS(3), 1, + [158888] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_esac, - ACTIONS(5671), 12, - anon_sym_LPAREN, + ACTIONS(7682), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [111944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym__concat, + sym_number, sym_word, - ACTIONS(1322), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(7686), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [111965] = 8, + sym_test_operator, + [158910] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, + ACTIONS(7978), 1, anon_sym_RBRACE, - ACTIONS(5693), 1, + ACTIONS(7984), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5697), 1, + ACTIONS(7988), 1, sym_variable_name, - STATE(981), 1, + STATE(787), 1, sym_subscript, - ACTIONS(5689), 2, + STATE(3122), 1, + aux_sym_expansion_repeat1, + ACTIONS(7980), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5695), 2, + ACTIONS(7986), 2, anon_sym_0, anon_sym__, - ACTIONS(5691), 5, + ACTIONS(7982), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [111996] = 8, + [158944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(7990), 1, anon_sym_RBRACE, - ACTIONS(5705), 1, + ACTIONS(7996), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5709), 1, + ACTIONS(8000), 1, sym_variable_name, - STATE(1043), 1, + STATE(514), 1, sym_subscript, - ACTIONS(5701), 2, + STATE(3110), 1, + aux_sym_expansion_repeat1, + ACTIONS(7992), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5707), 2, + ACTIONS(7998), 2, anon_sym_0, anon_sym__, - ACTIONS(5703), 5, + ACTIONS(7994), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112027] = 8, + [158978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 1, + ACTIONS(3695), 1, anon_sym_RBRACE, - ACTIONS(5717), 1, + ACTIONS(8004), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5721), 1, + ACTIONS(8008), 1, sym_variable_name, - STATE(1134), 1, + STATE(863), 1, sym_subscript, - ACTIONS(5713), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5719), 2, + ACTIONS(8006), 2, anon_sym_0, anon_sym__, - ACTIONS(5715), 5, + ACTIONS(8002), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112058] = 3, - ACTIONS(3), 1, + [159012] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1338), 2, - sym__concat, - sym_word, - ACTIONS(1336), 11, - anon_sym_RPAREN, + ACTIONS(8010), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8012), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112079] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159034] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1356), 2, - sym__concat, - sym_word, - ACTIONS(1354), 11, - anon_sym_RPAREN, + ACTIONS(7946), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7948), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112100] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159056] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 2, - sym__concat, - sym_word, - ACTIONS(1358), 11, - anon_sym_RPAREN, + ACTIONS(8014), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8016), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112121] = 3, + sym_test_operator, + [159078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, - sym__concat, - sym_word, - ACTIONS(1358), 11, - anon_sym_RPAREN, + ACTIONS(3515), 1, + anon_sym_RBRACE, + ACTIONS(8020), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8024), 1, + sym_variable_name, + STATE(830), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8022), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8018), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [112142] = 8, + anon_sym_AT, + [159112] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, + ACTIONS(8026), 1, anon_sym_RBRACE, - ACTIONS(5729), 1, + ACTIONS(8032), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5733), 1, + ACTIONS(8036), 1, sym_variable_name, - STATE(976), 1, + STATE(698), 1, sym_subscript, - ACTIONS(5725), 2, + STATE(3144), 1, + aux_sym_expansion_repeat1, + ACTIONS(8028), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5731), 2, + ACTIONS(8034), 2, anon_sym_0, anon_sym__, - ACTIONS(5727), 5, + ACTIONS(8030), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112173] = 3, - ACTIONS(3), 1, + [159146] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 2, - sym__concat, - sym_word, - ACTIONS(1368), 11, - anon_sym_RPAREN, + ACTIONS(7694), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7696), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112194] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159168] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 2, - sym__concat, - sym_word, - ACTIONS(1372), 11, - anon_sym_RPAREN, + ACTIONS(7620), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7624), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112215] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159190] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5737), 1, - anon_sym_esac, - ACTIONS(5735), 12, - anon_sym_LPAREN, + ACTIONS(7614), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7618), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112236] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159212] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1382), 2, - sym__concat, - sym_word, - ACTIONS(1380), 11, - anon_sym_RPAREN, + ACTIONS(8038), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8040), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112257] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159234] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1386), 2, - sym__concat, - sym_word, - ACTIONS(1384), 11, - anon_sym_RPAREN, + ACTIONS(7794), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7796), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112278] = 8, + sym_test_operator, + [159256] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 1, + ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(5745), 1, + ACTIONS(8044), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5749), 1, + ACTIONS(8048), 1, sym_variable_name, - STATE(1104), 1, + STATE(783), 1, sym_subscript, - ACTIONS(5741), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5747), 2, + ACTIONS(8046), 2, anon_sym_0, anon_sym__, - ACTIONS(5743), 5, + ACTIONS(8042), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112309] = 3, - ACTIONS(3), 1, + [159290] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1390), 2, - sym__concat, - sym_word, - ACTIONS(1388), 11, - anon_sym_RPAREN, + ACTIONS(8050), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [112330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 2, - sym__concat, + sym_number, sym_word, - ACTIONS(1394), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(8052), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112351] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159312] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1400), 2, - sym__concat, - sym_word, - ACTIONS(1398), 11, - anon_sym_RPAREN, + ACTIONS(7694), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7696), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112372] = 3, + sym_test_operator, + [159334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - anon_sym_esac, - ACTIONS(5751), 12, - anon_sym_LPAREN, + ACTIONS(8054), 1, + anon_sym_RBRACE, + ACTIONS(8060), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8064), 1, + sym_variable_name, + STATE(922), 1, + sym_subscript, + STATE(3119), 1, + aux_sym_expansion_repeat1, + ACTIONS(8056), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8062), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8058), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112393] = 3, + anon_sym_AT, + [159368] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, - sym__concat, - sym_word, - ACTIONS(1402), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [112414] = 8, + ACTIONS(8066), 1, + anon_sym_RBRACE, + ACTIONS(8072), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8076), 1, + sym_variable_name, + STATE(777), 1, + sym_subscript, + STATE(3139), 1, + aux_sym_expansion_repeat1, + ACTIONS(8068), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8074), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8070), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(2737), 1, anon_sym_RBRACE, - ACTIONS(5761), 1, + ACTIONS(8080), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5765), 1, + ACTIONS(8084), 1, sym_variable_name, - STATE(1093), 1, + STATE(703), 1, sym_subscript, - ACTIONS(5757), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5763), 2, + ACTIONS(8082), 2, anon_sym_0, anon_sym__, - ACTIONS(5759), 5, + ACTIONS(8078), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112445] = 3, - ACTIONS(3), 1, + [159436] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5769), 1, - anon_sym_esac, - ACTIONS(5767), 12, - anon_sym_LPAREN, + ACTIONS(7794), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, + sym_number, sym_word, - [112466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym_esac, - ACTIONS(5771), 12, + ACTIONS(7796), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112487] = 8, + sym_test_operator, + [159458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, + ACTIONS(8086), 1, anon_sym_RBRACE, - ACTIONS(5781), 1, + ACTIONS(8092), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5785), 1, + ACTIONS(8096), 1, sym_variable_name, - STATE(1121), 1, + STATE(900), 1, sym_subscript, - ACTIONS(5777), 2, + STATE(3187), 1, + aux_sym_expansion_repeat1, + ACTIONS(8088), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5783), 2, + ACTIONS(8094), 2, anon_sym_0, anon_sym__, - ACTIONS(5779), 5, + ACTIONS(8090), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112518] = 3, + [159492] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_esac, - ACTIONS(5787), 12, - anon_sym_LPAREN, + ACTIONS(8098), 1, + anon_sym_RBRACE, + ACTIONS(8104), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8108), 1, + sym_variable_name, + STATE(836), 1, + sym_subscript, + STATE(3090), 1, + aux_sym_expansion_repeat1, + ACTIONS(8100), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8106), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8102), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112539] = 8, + anon_sym_AT, + [159526] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, + ACTIONS(8110), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(8116), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5801), 1, + ACTIONS(8120), 1, sym_variable_name, - STATE(1136), 1, + STATE(672), 1, sym_subscript, - ACTIONS(5793), 2, + STATE(3168), 1, + aux_sym_expansion_repeat1, + ACTIONS(8112), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5799), 2, + ACTIONS(8118), 2, anon_sym_0, anon_sym__, - ACTIONS(5795), 5, + ACTIONS(8114), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112570] = 3, + [159560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_esac, - ACTIONS(5803), 12, - anon_sym_LPAREN, + ACTIONS(8122), 1, + anon_sym_RBRACE, + ACTIONS(8128), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8132), 1, + sym_variable_name, + STATE(723), 1, + sym_subscript, + STATE(3156), 1, + aux_sym_expansion_repeat1, + ACTIONS(8124), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8130), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8126), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112591] = 8, + anon_sym_AT, + [159594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(8134), 1, anon_sym_RBRACE, - ACTIONS(5813), 1, + ACTIONS(8140), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5817), 1, + ACTIONS(8144), 1, sym_variable_name, - STATE(1036), 1, + STATE(859), 1, sym_subscript, - ACTIONS(5809), 2, + STATE(3128), 1, + aux_sym_expansion_repeat1, + ACTIONS(8136), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5815), 2, + ACTIONS(8142), 2, anon_sym_0, anon_sym__, - ACTIONS(5811), 5, + ACTIONS(8138), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [159628] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_RBRACE, + ACTIONS(8148), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8152), 1, + sym_variable_name, + STATE(518), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8150), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8146), 5, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - [112622] = 3, + [159662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym__concat, - sym_word, - ACTIONS(1406), 11, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(6260), 1, + aux_sym__simple_variable_name_token1, + STATE(3039), 1, + sym_string, + ACTIONS(838), 2, + anon_sym_PIPE, anon_sym_RPAREN, + ACTIONS(6256), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6258), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [112643] = 3, + anon_sym_POUND, + anon_sym_AT, + [159692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_esac, - ACTIONS(5803), 12, - anon_sym_LPAREN, + ACTIONS(8154), 1, + anon_sym_RBRACE, + ACTIONS(8160), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8164), 1, + sym_variable_name, + STATE(583), 1, + sym_subscript, + STATE(3178), 1, + aux_sym_expansion_repeat1, + ACTIONS(8156), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8162), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8158), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112664] = 3, - ACTIONS(3), 1, + anon_sym_AT, + [159726] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1412), 2, - sym__concat, - sym_word, - ACTIONS(1410), 11, - anon_sym_RPAREN, + ACTIONS(8166), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8168), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112685] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159748] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5821), 1, - anon_sym_esac, - ACTIONS(5819), 12, - anon_sym_LPAREN, + ACTIONS(8038), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8040), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112706] = 3, + sym_test_operator, + [159770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, - anon_sym_esac, - ACTIONS(5823), 12, - anon_sym_LPAREN, + ACTIONS(2913), 1, + anon_sym_RBRACE, + ACTIONS(8172), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8176), 1, + sym_variable_name, + STATE(732), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8174), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8170), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112727] = 8, + anon_sym_AT, + [159804] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(8178), 1, anon_sym_RBRACE, - ACTIONS(5833), 1, + ACTIONS(8184), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5837), 1, + ACTIONS(8188), 1, sym_variable_name, - STATE(1156), 1, + STATE(645), 1, sym_subscript, - ACTIONS(5829), 2, + STATE(3207), 1, + aux_sym_expansion_repeat1, + ACTIONS(8180), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5835), 2, + ACTIONS(8186), 2, anon_sym_0, anon_sym__, - ACTIONS(5831), 5, + ACTIONS(8182), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [159838] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8190), 1, + anon_sym_RBRACE, + ACTIONS(8196), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8200), 1, + sym_variable_name, + STATE(846), 1, + sym_subscript, + STATE(3221), 1, + aux_sym_expansion_repeat1, + ACTIONS(8192), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8198), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8194), 5, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - [112758] = 3, + [159872] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, - sym__concat, - sym_word, - ACTIONS(1418), 11, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(6260), 1, + aux_sym__simple_variable_name_token1, + STATE(3039), 1, + sym_string, + ACTIONS(844), 2, + anon_sym_PIPE, anon_sym_RPAREN, + ACTIONS(6256), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6258), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [159902] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + anon_sym_RBRACE, + ACTIONS(8204), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8208), 1, + sym_variable_name, + STATE(773), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8206), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8202), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [159936] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8210), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8212), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112779] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159958] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5841), 1, - anon_sym_esac, - ACTIONS(5839), 12, - anon_sym_LPAREN, + ACTIONS(8166), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8168), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112800] = 3, - ACTIONS(3), 1, + sym_test_operator, + [159980] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1424), 2, - sym__concat, - sym_word, - ACTIONS(1422), 11, - anon_sym_RPAREN, + ACTIONS(8214), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8216), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [112821] = 5, - ACTIONS(3), 1, + sym_test_operator, + [160002] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(8218), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5843), 1, + ACTIONS(8220), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, sym__special_character, - STATE(2600), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 10, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112846] = 8, + sym_test_operator, + [160024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 1, + ACTIONS(8222), 1, anon_sym_RBRACE, - ACTIONS(5852), 1, + ACTIONS(8228), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5856), 1, + ACTIONS(8232), 1, sym_variable_name, - STATE(936), 1, + STATE(764), 1, sym_subscript, - ACTIONS(5848), 2, + STATE(3160), 1, + aux_sym_expansion_repeat1, + ACTIONS(8224), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5854), 2, + ACTIONS(8230), 2, anon_sym_0, anon_sym__, - ACTIONS(5850), 5, + ACTIONS(8226), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112877] = 3, - ACTIONS(3), 1, + [160058] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5860), 1, - anon_sym_esac, - ACTIONS(5858), 12, - anon_sym_LPAREN, + ACTIONS(8218), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8220), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112898] = 8, + sym_test_operator, + [160080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 1, + ACTIONS(2679), 1, anon_sym_RBRACE, - ACTIONS(5868), 1, + ACTIONS(8236), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5872), 1, + ACTIONS(8240), 1, sym_variable_name, - STATE(1142), 1, + STATE(692), 1, sym_subscript, - ACTIONS(5864), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5870), 2, + ACTIONS(8238), 2, anon_sym_0, anon_sym__, - ACTIONS(5866), 5, + ACTIONS(8234), 5, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - [112929] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5874), 1, - anon_sym_RBRACE, - ACTIONS(5880), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5884), 1, - sym_variable_name, - STATE(1183), 1, - sym_subscript, - ACTIONS(5876), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5882), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5878), 5, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [112960] = 8, + [160114] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 1, + ACTIONS(2621), 1, anon_sym_RBRACE, - ACTIONS(5892), 1, + ACTIONS(8244), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5896), 1, + ACTIONS(8248), 1, sym_variable_name, - STATE(1008), 1, + STATE(676), 1, sym_subscript, - ACTIONS(5888), 2, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5894), 2, + ACTIONS(8246), 2, anon_sym_0, anon_sym__, - ACTIONS(5890), 5, + ACTIONS(8242), 5, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - [112991] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 1, - anon_sym_RBRACE, - ACTIONS(5904), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5908), 1, - sym_variable_name, - STATE(1150), 1, - sym_subscript, - ACTIONS(5900), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5906), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5902), 5, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - [113022] = 3, - ACTIONS(3), 1, + [160148] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym_esac, - ACTIONS(5771), 12, - anon_sym_LPAREN, + ACTIONS(8166), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8168), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [113043] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160170] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5912), 1, - anon_sym_esac, - ACTIONS(5910), 12, - anon_sym_LPAREN, + ACTIONS(8166), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8168), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [113064] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160192] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5916), 1, - anon_sym_esac, - ACTIONS(5914), 12, - anon_sym_LPAREN, + ACTIONS(8250), 3, anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(8252), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [113085] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160214] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(8218), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5920), 11, + ACTIONS(8220), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160236] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7626), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7630), 11, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113105] = 6, + sym_test_operator, + [160258] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, + ACTIONS(2319), 1, + anon_sym_RBRACE, + ACTIONS(8256), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5924), 1, - anon_sym_DQUOTE, - STATE(797), 1, - sym_string, - ACTIONS(940), 2, + ACTIONS(8260), 1, + sym_variable_name, + STATE(619), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8258), 2, anon_sym_0, anon_sym__, - ACTIONS(5922), 7, - anon_sym_BANG, + ACTIONS(8254), 5, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, anon_sym_STAR, - anon_sym_AT, - [113131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5928), 1, - anon_sym_DQUOTE, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113155] = 3, - ACTIONS(3), 1, + [160292] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5934), 1, + ACTIONS(8218), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5936), 11, + ACTIONS(8220), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113175] = 5, - ACTIONS(3), 1, + sym_test_operator, + [160314] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5938), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(8262), 3, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5934), 1, + sym_number, sym_word, - ACTIONS(5936), 11, + ACTIONS(8264), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113219] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160336] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(7676), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5942), 11, + ACTIONS(7680), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113239] = 3, + sym_test_operator, + [160358] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(2239), 1, + anon_sym_RBRACE, + ACTIONS(8268), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8272), 1, + sym_variable_name, + STATE(601), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8270), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8266), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [160392] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8214), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5946), 11, + ACTIONS(8216), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160414] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7652), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7656), 11, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113259] = 6, + sym_test_operator, + [160436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_DQUOTE, - ACTIONS(5539), 1, + ACTIONS(3029), 1, + anon_sym_RBRACE, + ACTIONS(8276), 1, aux_sym__simple_variable_name_token1, - STATE(3278), 1, - sym_string, - ACTIONS(5541), 2, + ACTIONS(8280), 1, + sym_variable_name, + STATE(748), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8278), 2, anon_sym_0, anon_sym__, - ACTIONS(5535), 7, - anon_sym_BANG, + ACTIONS(8274), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [113285] = 3, - ACTIONS(3), 1, + [160470] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7638), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7642), 11, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160492] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(7596), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5946), 11, + ACTIONS(7600), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113305] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160514] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(7620), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5946), 11, + ACTIONS(7624), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113325] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160536] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(8038), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5950), 11, + ACTIONS(8040), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113345] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160558] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5952), 1, + ACTIONS(7608), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5954), 11, + ACTIONS(7612), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113365] = 6, + sym_test_operator, + [160580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(818), 1, + ACTIONS(3943), 1, + anon_sym_RBRACE, + ACTIONS(8284), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5958), 1, - anon_sym_DQUOTE, - STATE(556), 1, - sym_string, - ACTIONS(814), 2, + ACTIONS(8288), 1, + sym_variable_name, + STATE(910), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8286), 2, anon_sym_0, anon_sym__, - ACTIONS(5956), 7, - anon_sym_BANG, + ACTIONS(8282), 5, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, anon_sym_STAR, - anon_sym_AT, - [113391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5960), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113415] = 3, - ACTIONS(3), 1, + [160614] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(7946), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5964), 11, + ACTIONS(7948), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_test_operator, + [160636] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7596), 3, + anon_sym_DOLLAR, + sym_number, + sym_word, + ACTIONS(7600), 11, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113435] = 5, + sym_test_operator, + [160658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8290), 1, + anon_sym_RBRACE, + ACTIONS(8296), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5966), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8300), 1, + sym_variable_name, + STATE(609), 1, + sym_subscript, + STATE(3174), 1, + aux_sym_expansion_repeat1, + ACTIONS(8292), 2, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113459] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5970), 1, - anon_sym_DQUOTE, - STATE(1943), 1, - sym_string, - ACTIONS(1669), 2, + ACTIONS(8298), 2, anon_sym_0, anon_sym__, - ACTIONS(5968), 7, - anon_sym_BANG, + ACTIONS(8294), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [113485] = 3, - ACTIONS(3), 1, + [160692] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5952), 1, + ACTIONS(7608), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5954), 11, + ACTIONS(7612), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113505] = 5, + sym_test_operator, + [160714] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(3087), 1, + anon_sym_RBRACE, + ACTIONS(8304), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5972), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8308), 1, + sym_variable_name, + STATE(760), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8306), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8302), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113529] = 5, + [160748] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8310), 1, + anon_sym_RBRACE, + ACTIONS(8316), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8320), 1, + sym_variable_name, + STATE(736), 1, + sym_subscript, + STATE(3201), 1, + aux_sym_expansion_repeat1, + ACTIONS(8312), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8318), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8314), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113553] = 3, - ACTIONS(3), 1, + [160782] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5976), 1, + ACTIONS(7688), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5978), 11, + ACTIONS(7692), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113573] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160804] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(8038), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5920), 11, + ACTIONS(8040), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113593] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160826] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5980), 1, + ACTIONS(7646), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5982), 11, + ACTIONS(7650), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113613] = 5, + sym_test_operator, + [160848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8322), 1, + anon_sym_RBRACE, + ACTIONS(8328), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8332), 1, + sym_variable_name, + STATE(752), 1, + sym_subscript, + STATE(3192), 1, + aux_sym_expansion_repeat1, + ACTIONS(8324), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8330), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8326), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113637] = 3, - ACTIONS(3), 1, + [160882] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(7946), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5920), 11, + ACTIONS(7948), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113657] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4416), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5988), 1, - anon_sym_DQUOTE, - STATE(2537), 1, - sym_string, - ACTIONS(4412), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5986), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [113683] = 5, - ACTIONS(3), 1, + sym_test_operator, + [160904] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5990), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(7658), 3, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5918), 1, + sym_number, sym_word, - ACTIONS(5920), 11, + ACTIONS(7662), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113727] = 3, - ACTIONS(3), 1, + sym_test_operator, + [160926] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(5992), 1, + ACTIONS(7602), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5994), 11, + ACTIONS(7606), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113747] = 5, + sym_test_operator, + [160948] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(2971), 1, + anon_sym_RBRACE, + ACTIONS(8336), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5996), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8340), 1, + sym_variable_name, + STATE(740), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(8338), 2, anon_sym_0, anon_sym__, - [113771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, + ACTIONS(8334), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113795] = 3, - ACTIONS(3), 1, + [160982] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6000), 1, + ACTIONS(8214), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5479), 11, + ACTIONS(8216), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113815] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161004] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6002), 1, + ACTIONS(8214), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(6004), 11, + ACTIONS(8216), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113835] = 3, + sym_test_operator, + [161026] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - sym_word, - ACTIONS(5519), 11, - anon_sym_LPAREN, + ACTIONS(3805), 1, + anon_sym_RBRACE, + ACTIONS(8344), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8348), 1, + sym_variable_name, + STATE(883), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8346), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8342), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [113855] = 3, - ACTIONS(3), 1, + anon_sym_AT, + [161060] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6000), 1, + ACTIONS(7646), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5479), 11, + ACTIONS(7650), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113875] = 6, - ACTIONS(3), 1, + sym_test_operator, + [161082] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(922), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6010), 1, - anon_sym_DQUOTE, - STATE(461), 1, - sym_string, - ACTIONS(920), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6008), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(7602), 3, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [113901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6012), 1, + sym_number, sym_word, - ACTIONS(5555), 11, + ACTIONS(7606), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113921] = 6, + sym_test_operator, + [161104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, + ACTIONS(2442), 1, + anon_sym_RBRACE, + ACTIONS(8352), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6016), 1, - anon_sym_DQUOTE, - STATE(1924), 1, - sym_string, - ACTIONS(1711), 2, + ACTIONS(8356), 1, + sym_variable_name, + STATE(651), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8354), 2, anon_sym_0, anon_sym__, - ACTIONS(6014), 7, - anon_sym_BANG, + ACTIONS(8350), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [113947] = 5, + [161138] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(8360), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6018), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8364), 1, + sym_variable_name, + STATE(871), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8362), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8358), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [113971] = 3, - ACTIONS(3), 1, + [161172] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6020), 1, + ACTIONS(7664), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(6022), 11, + ACTIONS(7668), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [113991] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161194] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(7670), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5671), 11, + ACTIONS(7674), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114011] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161216] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(7694), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5751), 11, + ACTIONS(7696), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114031] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161238] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6028), 1, + ACTIONS(7632), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5767), 11, + ACTIONS(7636), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114051] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161260] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6030), 1, + ACTIONS(7670), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5803), 11, + ACTIONS(7674), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114071] = 5, + sym_test_operator, + [161282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8366), 1, + anon_sym_RBRACE, + ACTIONS(8372), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6032), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8376), 1, + sym_variable_name, + STATE(680), 1, + sym_subscript, + STATE(3167), 1, + aux_sym_expansion_repeat1, + ACTIONS(8368), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8374), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8370), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114095] = 3, + [161316] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6034), 1, - sym_word, - ACTIONS(6036), 11, - anon_sym_LPAREN, + ACTIONS(8378), 1, + anon_sym_RBRACE, + ACTIONS(8384), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8388), 1, + sym_variable_name, + STATE(707), 1, + sym_subscript, + STATE(3093), 1, + aux_sym_expansion_repeat1, + ACTIONS(8380), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8386), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8382), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114115] = 3, + anon_sym_AT, + [161350] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 1, - sym_word, - ACTIONS(5803), 11, - anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(8392), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8396), 1, + sym_variable_name, + STATE(526), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8394), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8390), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114135] = 3, - ACTIONS(3), 1, + anon_sym_AT, + [161384] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6038), 1, - sym_word, - ACTIONS(5823), 11, - anon_sym_LPAREN, + ACTIONS(7782), 3, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6040), 1, + sym_number, sym_word, - ACTIONS(5914), 11, + ACTIONS(7784), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6042), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [114199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [114223] = 5, + sym_test_operator, + [161406] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8398), 1, + anon_sym_RBRACE, + ACTIONS(8404), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6046), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8408), 1, + sym_variable_name, + STATE(530), 1, + sym_subscript, + STATE(3216), 1, + aux_sym_expansion_repeat1, + ACTIONS(8400), 2, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(8406), 2, anon_sym_0, anon_sym__, - [114247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6048), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, - anon_sym_BANG, + ACTIONS(8402), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114271] = 3, - ACTIONS(3), 1, + [161440] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6050), 1, + ACTIONS(8410), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5858), 11, + ACTIONS(8412), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114291] = 3, - ACTIONS(3), 1, + sym_test_operator, + [161462] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(7626), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(5771), 11, + ACTIONS(7630), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114311] = 6, + sym_test_operator, + [161484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 1, + ACTIONS(3631), 1, + anon_sym_RBRACE, + ACTIONS(8416), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6056), 1, - anon_sym_DQUOTE, - STATE(857), 1, - sym_string, - ACTIONS(1167), 2, + ACTIONS(8420), 1, + sym_variable_name, + STATE(853), 1, + sym_subscript, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(7698), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8418), 2, anon_sym_0, anon_sym__, - ACTIONS(6054), 7, - anon_sym_BANG, + ACTIONS(8414), 5, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + [161518] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8422), 1, + anon_sym_RBRACE, + ACTIONS(8428), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8432), 1, + sym_variable_name, + STATE(876), 1, + sym_subscript, + STATE(3204), 1, + aux_sym_expansion_repeat1, + ACTIONS(8424), 2, + anon_sym_BANG, anon_sym_POUND, + ACTIONS(8430), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8426), 5, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - [114337] = 3, + [161552] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 1, + ACTIONS(8434), 1, + anon_sym_RBRACE, + ACTIONS(8440), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8444), 1, + sym_variable_name, + STATE(744), 1, + sym_subscript, + STATE(3181), 1, + aux_sym_expansion_repeat1, + ACTIONS(8436), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8442), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8438), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + [161586] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7782), 3, + anon_sym_DOLLAR, + sym_number, sym_word, - ACTIONS(6060), 11, + ACTIONS(7784), 11, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, 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_LT_LPAREN, anon_sym_GT_LPAREN, - [114357] = 5, + sym_test_operator, + [161608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6062), 1, + ACTIONS(844), 1, + anon_sym_RBRACE, + ACTIONS(6310), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8448), 1, + aux_sym__simple_variable_name_token1, + STATE(3957), 1, + sym_string, + ACTIONS(8450), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8446), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114381] = 5, + [161637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6064), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + STATE(3226), 1, + aux_sym_expansion_repeat1, + ACTIONS(8454), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(8457), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(8452), 7, + sym_variable_name, + anon_sym_RBRACE, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114405] = 3, + [161662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, - sym_word, - ACTIONS(5819), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(838), 1, + anon_sym_RBRACE, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5447), 1, + ACTIONS(8448), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6070), 1, - anon_sym_DQUOTE, - STATE(2957), 1, + STATE(3957), 1, sym_string, - ACTIONS(5445), 2, + ACTIONS(8450), 2, anon_sym_0, anon_sym__, - ACTIONS(6068), 7, + ACTIONS(8446), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114451] = 3, + [161691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, - sym_word, - ACTIONS(5954), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(8461), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6072), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114495] = 5, + [161715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6074), 1, + ACTIONS(8467), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114519] = 6, + [161739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_DQUOTE, - ACTIONS(1729), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - STATE(2023), 1, - sym_string, - ACTIONS(1723), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1725), 7, + ACTIONS(8469), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5952), 1, - sym_word, - ACTIONS(5954), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114565] = 5, + anon_sym_0, + anon_sym__, + [161763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6076), 1, + ACTIONS(8471), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114589] = 6, + [161787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3944), 1, + ACTIONS(1673), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6080), 1, + ACTIONS(6004), 1, anon_sym_DQUOTE, - STATE(2503), 1, + STATE(1737), 1, sym_string, - ACTIONS(3940), 2, + ACTIONS(1671), 2, anon_sym_0, anon_sym__, - ACTIONS(6078), 7, + ACTIONS(8473), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114615] = 6, + [161813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6084), 1, + ACTIONS(760), 1, anon_sym_DQUOTE, - STATE(2349), 1, + ACTIONS(1453), 1, + aux_sym__simple_variable_name_token1, + STATE(632), 1, sym_string, - ACTIONS(3818), 2, + ACTIONS(1449), 2, anon_sym_0, anon_sym__, - ACTIONS(6082), 7, + ACTIONS(1451), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6086), 1, - sym_word, - ACTIONS(5735), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114661] = 5, + [161839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(1677), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6088), 1, + ACTIONS(7218), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + STATE(1649), 1, + sym_string, + ACTIONS(1675), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8475), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114685] = 5, + [161865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6090), 1, + ACTIONS(8477), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114709] = 3, + [161889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - sym_word, - ACTIONS(5771), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6092), 1, - sym_word, - ACTIONS(5910), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [114749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(981), 1, + ACTIONS(5696), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6096), 1, + ACTIONS(6670), 1, anon_sym_DQUOTE, - STATE(617), 1, + STATE(2993), 1, sym_string, - ACTIONS(979), 2, + ACTIONS(5694), 2, anon_sym_0, anon_sym__, - ACTIONS(6094), 7, + ACTIONS(8479), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114775] = 5, + [161915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6098), 1, + ACTIONS(8481), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114799] = 5, + [161939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6100), 1, + ACTIONS(8483), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114823] = 5, + [161963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6102), 1, + ACTIONS(8485), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114847] = 5, + [161987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(1419), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6104), 1, + ACTIONS(5831), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + STATE(623), 1, + sym_string, + ACTIONS(1417), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8487), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [114871] = 3, + [162013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 1, - sym_word, - ACTIONS(5787), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(200), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114891] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1719), 1, + ACTIONS(1605), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6110), 1, - anon_sym_DQUOTE, - STATE(1836), 1, + STATE(1807), 1, sym_string, - ACTIONS(1717), 2, + ACTIONS(1603), 2, anon_sym_0, anon_sym__, - ACTIONS(6108), 7, + ACTIONS(8489), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, + anon_sym_AT, + [162039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8491), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_AT, - [114917] = 6, + anon_sym_0, + anon_sym__, + [162063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 1, + ACTIONS(1601), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6114), 1, + ACTIONS(7254), 1, anon_sym_DQUOTE, - STATE(729), 1, + STATE(1163), 1, sym_string, - ACTIONS(983), 2, + ACTIONS(1599), 2, anon_sym_0, anon_sym__, - ACTIONS(6112), 7, + ACTIONS(8493), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [114943] = 5, + [162089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6116), 1, + ACTIONS(8495), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114967] = 5, + [162113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6118), 1, + ACTIONS(8497), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [114991] = 3, + [162137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, - sym_word, - ACTIONS(6122), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [115011] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(762), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6126), 1, + ACTIONS(8499), 1, anon_sym_DQUOTE, - STATE(429), 1, - sym_string, - ACTIONS(758), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6124), 7, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115037] = 5, + anon_sym_0, + anon_sym__, + [162161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6128), 1, + ACTIONS(8501), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115061] = 5, + [162185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6130), 1, + ACTIONS(8503), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115085] = 3, + [162209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, - sym_word, - ACTIONS(6122), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115105] = 5, + ACTIONS(8459), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [162233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6132), 1, + ACTIONS(8507), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115129] = 6, + [162257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6136), 1, + ACTIONS(8509), 1, anon_sym_DQUOTE, - STATE(463), 1, - sym_string, - ACTIONS(842), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6134), 7, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115155] = 5, + anon_sym_0, + anon_sym__, + [162281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6138), 1, + ACTIONS(8511), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115179] = 5, + [162305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6140), 1, + ACTIONS(8513), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115203] = 6, + [162329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(808), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6144), 1, + ACTIONS(292), 1, anon_sym_DQUOTE, - STATE(304), 1, + ACTIONS(1163), 1, + aux_sym__simple_variable_name_token1, + STATE(647), 1, sym_string, - ACTIONS(806), 2, + ACTIONS(1159), 2, anon_sym_0, anon_sym__, - ACTIONS(6142), 7, + ACTIONS(8515), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, + anon_sym_AT, + [162355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1948), 1, + anon_sym_DQUOTE, + ACTIONS(5399), 1, + aux_sym__simple_variable_name_token1, + STATE(2292), 1, + sym_string, + ACTIONS(5395), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5397), 7, + anon_sym_BANG, + anon_sym_DASH, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_AT, - [115229] = 5, + [162381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6146), 1, + ACTIONS(8517), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115253] = 3, + [162405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 1, - sym_word, - ACTIONS(6060), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1218), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5439), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6058), 1, - sym_word, - ACTIONS(6060), 11, - anon_sym_LPAREN, + STATE(462), 1, + sym_string, + ACTIONS(1216), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8519), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [115293] = 5, + anon_sym_POUND, + anon_sym_AT, + [162431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6148), 1, + ACTIONS(396), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(1377), 1, + aux_sym__simple_variable_name_token1, + STATE(1027), 1, + sym_string, + ACTIONS(1375), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8521), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [115317] = 3, + [162457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 1, - sym_word, - ACTIONS(6060), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(816), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115337] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, + ACTIONS(1703), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6152), 1, - anon_sym_DQUOTE, - STATE(860), 1, + STATE(1763), 1, sym_string, - ACTIONS(946), 2, + ACTIONS(1699), 2, anon_sym_0, anon_sym__, - ACTIONS(6150), 7, + ACTIONS(1701), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115363] = 5, + [162483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6154), 1, + ACTIONS(8523), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115387] = 3, + [162507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6156), 1, - sym_word, - ACTIONS(6158), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [115407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6160), 1, + ACTIONS(8525), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115431] = 3, + [162531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6020), 1, - sym_word, - ACTIONS(6022), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1497), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5920), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115451] = 5, + STATE(1149), 1, + sym_string, + ACTIONS(1493), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8527), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, + [162557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6162), 1, + ACTIONS(8529), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115475] = 6, + [162581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(926), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6166), 1, + ACTIONS(8531), 1, anon_sym_DQUOTE, - STATE(715), 1, - sym_string, - ACTIONS(924), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6164), 7, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115501] = 5, + anon_sym_0, + anon_sym__, + [162605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6168), 1, + ACTIONS(8533), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115525] = 6, + [162629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - STATE(2305), 1, - sym_string, - ACTIONS(2163), 2, - anon_sym_0, - anon_sym__, - ACTIONS(2165), 7, + ACTIONS(8535), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115551] = 6, + anon_sym_0, + anon_sym__, + [162653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(1811), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6172), 1, + ACTIONS(7300), 1, anon_sym_DQUOTE, - STATE(309), 1, + STATE(2080), 1, sym_string, - ACTIONS(601), 2, + ACTIONS(1809), 2, anon_sym_0, anon_sym__, - ACTIONS(6170), 7, + ACTIONS(8537), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115577] = 6, + [162679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(930), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6176), 1, + ACTIONS(8539), 1, anon_sym_DQUOTE, - STATE(738), 1, - sym_string, - ACTIONS(928), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6174), 7, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115603] = 6, + anon_sym_0, + anon_sym__, + [162703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6180), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - STATE(784), 1, + ACTIONS(5411), 1, + aux_sym__simple_variable_name_token1, + STATE(2408), 1, sym_string, - ACTIONS(1067), 2, + ACTIONS(5405), 2, anon_sym_0, anon_sym__, - ACTIONS(6178), 7, + ACTIONS(5409), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115629] = 5, + [162729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6182), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6024), 1, - sym_word, - ACTIONS(5671), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [115673] = 5, + [162753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6184), 1, + ACTIONS(8543), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115697] = 5, + [162777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6186), 1, + ACTIONS(8545), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115721] = 5, + [162801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6188), 1, + ACTIONS(8547), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115745] = 5, + [162825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6190), 1, + ACTIONS(8549), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115769] = 3, + [162849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, - sym_word, - ACTIONS(5946), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115789] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8448), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6192), 1, - anon_sym_DQUOTE, - ACTIONS(5926), 9, + STATE(3957), 1, + sym_string, + ACTIONS(8450), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8446), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [115813] = 5, + [162875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6194), 1, + ACTIONS(8551), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115837] = 5, + [162899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6196), 1, + ACTIONS(8553), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115861] = 5, + [162923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, - sym__string_content, - ACTIONS(5932), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6198), 1, + ACTIONS(5980), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(7578), 1, + aux_sym__simple_variable_name_token1, + STATE(3480), 1, + sym_string, + ACTIONS(7574), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8555), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [115885] = 6, + [162949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(1807), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6202), 1, + ACTIONS(7522), 1, anon_sym_DQUOTE, - STATE(423), 1, + STATE(1924), 1, sym_string, - ACTIONS(724), 2, + ACTIONS(1805), 2, anon_sym_0, anon_sym__, - ACTIONS(6200), 7, + ACTIONS(8557), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115911] = 5, + [162975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6204), 1, + ACTIONS(8559), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115935] = 6, + [162999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 1, + ACTIONS(1769), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6208), 1, + ACTIONS(5890), 1, anon_sym_DQUOTE, - STATE(562), 1, + STATE(2072), 1, sym_string, - ACTIONS(1061), 2, + ACTIONS(1765), 2, anon_sym_0, anon_sym__, - ACTIONS(6206), 7, + ACTIONS(8561), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [115961] = 5, + [163025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6210), 1, + ACTIONS(8563), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [115985] = 5, + [163049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6212), 1, + ACTIONS(8565), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116009] = 5, + [163073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6214), 1, + ACTIONS(8567), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116033] = 3, + [163097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6156), 1, - sym_word, - ACTIONS(6158), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [116053] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1633), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6218), 1, + ACTIONS(5778), 1, anon_sym_DQUOTE, - STATE(1815), 1, + STATE(1690), 1, sym_string, - ACTIONS(1663), 2, + ACTIONS(1629), 2, anon_sym_0, anon_sym__, - ACTIONS(6216), 7, + ACTIONS(8569), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [116079] = 3, + [163123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, - sym_word, - ACTIONS(1221), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [116099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6220), 1, - sym_word, - ACTIONS(5839), 11, - anon_sym_LPAREN, - anon_sym_DOLLAR, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - [116119] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6222), 1, + ACTIONS(8571), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116143] = 5, + [163147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6224), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116167] = 6, + [163171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6228), 1, + ACTIONS(8575), 1, anon_sym_DQUOTE, - STATE(1716), 1, - sym_string, - ACTIONS(1637), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6226), 7, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [116193] = 5, + anon_sym_0, + anon_sym__, + [163195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6230), 1, + ACTIONS(8577), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116217] = 5, + [163219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6232), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116241] = 5, + [163243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6234), 1, + ACTIONS(8581), 1, anon_sym_DQUOTE, - ACTIONS(5926), 9, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116265] = 6, + [163267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, - anon_sym_DQUOTE, - ACTIONS(3043), 1, + ACTIONS(1743), 1, aux_sym__simple_variable_name_token1, - STATE(2168), 1, + ACTIONS(5950), 1, + anon_sym_DQUOTE, + STATE(1984), 1, sym_string, - ACTIONS(3037), 2, + ACTIONS(1739), 2, anon_sym_0, anon_sym__, - ACTIONS(3039), 7, + ACTIONS(8583), 7, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, - [116291] = 7, - ACTIONS(4141), 1, + [163293] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6236), 1, - anon_sym_RBRACE, - ACTIONS(6240), 1, + ACTIONS(135), 1, + anon_sym_DQUOTE, + ACTIONS(850), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6244), 1, - sym_variable_name, - STATE(1103), 1, - sym_subscript, - ACTIONS(6242), 2, + STATE(274), 1, + sym_string, + ACTIONS(846), 2, anon_sym_0, anon_sym__, - ACTIONS(6238), 5, + ACTIONS(8585), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116318] = 7, - ACTIONS(4141), 1, + [163319] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, + ACTIONS(5141), 1, + anon_sym_DQUOTE, + ACTIONS(6260), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6254), 1, - sym_variable_name, - STATE(1057), 1, - sym_subscript, - ACTIONS(6252), 2, + STATE(3039), 1, + sym_string, + ACTIONS(6256), 2, anon_sym_0, anon_sym__, - ACTIONS(6248), 5, + ACTIONS(6258), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116345] = 7, - ACTIONS(4141), 1, + [163345] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 1, - anon_sym_RBRACE, - ACTIONS(6260), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6264), 1, - sym_variable_name, - STATE(1068), 1, - sym_subscript, - ACTIONS(6262), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6258), 5, + ACTIONS(8587), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116372] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163369] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 1, - anon_sym_RBRACE, - ACTIONS(6270), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6274), 1, - sym_variable_name, - STATE(1165), 1, - sym_subscript, - ACTIONS(6272), 2, + ACTIONS(8589), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(6268), 5, + [163393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8591), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116399] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163417] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6276), 1, - anon_sym_RBRACE, - ACTIONS(6280), 1, + ACTIONS(5387), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6284), 1, - sym_variable_name, - STATE(1011), 1, - sym_subscript, - ACTIONS(6282), 2, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + STATE(2500), 1, + sym_string, + ACTIONS(5383), 2, anon_sym_0, anon_sym__, - ACTIONS(6278), 5, + ACTIONS(8593), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116426] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6290), 1, - anon_sym_LT_LT, - ACTIONS(6292), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6294), 1, - anon_sym_LT_LT_LT, - ACTIONS(6286), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6288), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [116451] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6290), 1, - anon_sym_LT_LT, - ACTIONS(6292), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6300), 1, - anon_sym_LT_LT_LT, - ACTIONS(6296), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6298), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [116476] = 7, - ACTIONS(4141), 1, + [163443] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6302), 1, - anon_sym_RBRACE, - ACTIONS(6306), 1, + ACTIONS(5423), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6310), 1, - sym_variable_name, - STATE(1040), 1, - sym_subscript, - ACTIONS(6308), 2, + ACTIONS(6988), 1, + anon_sym_DQUOTE, + STATE(2756), 1, + sym_string, + ACTIONS(5419), 2, anon_sym_0, anon_sym__, - ACTIONS(6304), 5, + ACTIONS(8595), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116503] = 4, + [163469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5930), 1, + ACTIONS(8463), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5926), 9, + ACTIONS(8597), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [116524] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6316), 1, - anon_sym_LT_LT, - ACTIONS(6318), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6320), 1, - anon_sym_LT_LT_LT, - ACTIONS(6312), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6314), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [116549] = 7, - ACTIONS(4141), 1, + [163493] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6322), 1, - anon_sym_RBRACE, - ACTIONS(6326), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6330), 1, - sym_variable_name, - STATE(1143), 1, - sym_subscript, - ACTIONS(6328), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6324), 5, + ACTIONS(8599), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116576] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163517] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 1, - anon_sym_RBRACE, - ACTIONS(6336), 1, + ACTIONS(5417), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6340), 1, - sym_variable_name, - STATE(1034), 1, - sym_subscript, - ACTIONS(6338), 2, + ACTIONS(6968), 1, + anon_sym_DQUOTE, + STATE(2591), 1, + sym_string, + ACTIONS(5413), 2, anon_sym_0, anon_sym__, - ACTIONS(6334), 5, + ACTIONS(8601), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116603] = 7, - ACTIONS(4141), 1, + [163543] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6342), 1, - anon_sym_RBRACE, - ACTIONS(6346), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6350), 1, - sym_variable_name, - STATE(985), 1, - sym_subscript, - ACTIONS(6348), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6344), 5, + ACTIONS(8603), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116630] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6352), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6360), 1, - sym_variable_name, - STATE(1067), 1, - sym_subscript, - ACTIONS(6358), 2, anon_sym_0, anon_sym__, - ACTIONS(6354), 5, + [163567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8605), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116657] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6362), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6370), 1, - sym_variable_name, - STATE(1112), 1, - sym_subscript, - ACTIONS(6368), 2, anon_sym_0, anon_sym__, - ACTIONS(6364), 5, + [163591] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8607), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116684] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163615] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, - anon_sym_RBRACE, - ACTIONS(6376), 1, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(836), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6380), 1, - sym_variable_name, - STATE(1127), 1, - sym_subscript, - ACTIONS(6378), 2, + STATE(246), 1, + sym_string, + ACTIONS(832), 2, anon_sym_0, anon_sym__, - ACTIONS(6374), 5, + ACTIONS(8609), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116711] = 7, - ACTIONS(4141), 1, + [163641] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 1, - anon_sym_RBRACE, - ACTIONS(6386), 1, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(1567), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6390), 1, - sym_variable_name, - STATE(1123), 1, - sym_subscript, - ACTIONS(6388), 2, + STATE(1654), 1, + sym_string, + ACTIONS(1565), 2, anon_sym_0, anon_sym__, - ACTIONS(6384), 5, + ACTIONS(8611), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116738] = 7, - ACTIONS(4141), 1, + [163667] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6392), 1, - anon_sym_RBRACE, - ACTIONS(6396), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6400), 1, - sym_variable_name, - STATE(947), 1, - sym_subscript, - ACTIONS(6398), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6394), 5, + ACTIONS(8613), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116765] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163691] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 1, - anon_sym_RBRACE, - ACTIONS(6406), 1, + ACTIONS(1737), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6410), 1, - sym_variable_name, - STATE(1148), 1, - sym_subscript, - ACTIONS(6408), 2, + ACTIONS(5855), 1, + anon_sym_DQUOTE, + STATE(1863), 1, + sym_string, + ACTIONS(1735), 2, anon_sym_0, anon_sym__, - ACTIONS(6404), 5, + ACTIONS(8615), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116792] = 7, - ACTIONS(4141), 1, + [163717] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6412), 1, - anon_sym_RBRACE, - ACTIONS(6416), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6420), 1, - sym_variable_name, - STATE(1097), 1, - sym_subscript, - ACTIONS(6418), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6414), 5, + ACTIONS(8617), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116819] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163741] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6422), 1, - anon_sym_RBRACE, - ACTIONS(6426), 1, + ACTIONS(780), 1, + anon_sym_DQUOTE, + ACTIONS(1669), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6430), 1, - sym_variable_name, - STATE(942), 1, - sym_subscript, - ACTIONS(6428), 2, + STATE(1750), 1, + sym_string, + ACTIONS(1665), 2, anon_sym_0, anon_sym__, - ACTIONS(6424), 5, + ACTIONS(1667), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116846] = 7, - ACTIONS(4141), 1, + [163767] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, - anon_sym_RBRACE, - ACTIONS(6436), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6440), 1, - sym_variable_name, - STATE(964), 1, - sym_subscript, - ACTIONS(6438), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6434), 5, + ACTIONS(8619), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116873] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163791] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_RBRACE, - ACTIONS(6446), 1, + ACTIONS(7034), 1, + anon_sym_DQUOTE, + ACTIONS(7758), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6450), 1, - sym_variable_name, - STATE(1147), 1, - sym_subscript, - ACTIONS(6448), 2, + STATE(3974), 1, + sym_string, + ACTIONS(7760), 2, anon_sym_0, anon_sym__, - ACTIONS(6444), 5, + ACTIONS(7756), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116900] = 7, - ACTIONS(4141), 1, + [163817] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 1, - anon_sym_RBRACE, - ACTIONS(6456), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6460), 1, - sym_variable_name, - STATE(1052), 1, - sym_subscript, - ACTIONS(6458), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6454), 5, + ACTIONS(8621), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116927] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6462), 1, - anon_sym_RBRACE, - ACTIONS(6466), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6470), 1, - sym_variable_name, - STATE(940), 1, - sym_subscript, - ACTIONS(6468), 2, anon_sym_0, anon_sym__, - ACTIONS(6464), 5, + [163841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8623), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116954] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACE, - ACTIONS(6476), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6480), 1, - sym_variable_name, - STATE(1159), 1, - sym_subscript, - ACTIONS(6478), 2, anon_sym_0, anon_sym__, - ACTIONS(6474), 5, + [163865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8625), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [116981] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_RBRACE, - ACTIONS(6486), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6490), 1, - sym_variable_name, - STATE(1135), 1, - sym_subscript, - ACTIONS(6488), 2, anon_sym_0, anon_sym__, - ACTIONS(6484), 5, + [163889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8627), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117008] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6492), 1, - anon_sym_RBRACE, - ACTIONS(6496), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6500), 1, - sym_variable_name, - STATE(1087), 1, - sym_subscript, - ACTIONS(6498), 2, anon_sym_0, anon_sym__, - ACTIONS(6494), 5, + [163913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8629), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117035] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6502), 1, - anon_sym_RBRACE, - ACTIONS(6506), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6510), 1, - sym_variable_name, - STATE(1178), 1, - sym_subscript, - ACTIONS(6508), 2, anon_sym_0, anon_sym__, - ACTIONS(6504), 5, + [163937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8631), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117062] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6512), 1, - anon_sym_RBRACE, - ACTIONS(6516), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6520), 1, - sym_variable_name, - STATE(1004), 1, - sym_subscript, - ACTIONS(6518), 2, anon_sym_0, anon_sym__, - ACTIONS(6514), 5, + [163961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8633), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117089] = 7, - ACTIONS(4141), 1, + anon_sym_0, + anon_sym__, + [163985] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym_RBRACE, - ACTIONS(6526), 1, + ACTIONS(1547), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6530), 1, - sym_variable_name, - STATE(1078), 1, - sym_subscript, - ACTIONS(6528), 2, + ACTIONS(5730), 1, + anon_sym_DQUOTE, + STATE(978), 1, + sym_string, + ACTIONS(1545), 2, anon_sym_0, anon_sym__, - ACTIONS(6524), 5, + ACTIONS(8635), 7, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117116] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6536), 1, - anon_sym_LT_LT, - ACTIONS(6538), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6540), 1, - anon_sym_LT_LT_LT, - ACTIONS(6532), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6534), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [117141] = 7, - ACTIONS(4141), 1, + [164011] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, - anon_sym_RBRACE, - ACTIONS(6546), 1, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6550), 1, - sym_variable_name, - STATE(943), 1, - sym_subscript, - ACTIONS(6548), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6544), 5, + ACTIONS(8637), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117168] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6552), 1, - anon_sym_RBRACE, - ACTIONS(6556), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6560), 1, - sym_variable_name, - STATE(1031), 1, - sym_subscript, - ACTIONS(6558), 2, anon_sym_0, anon_sym__, - ACTIONS(6554), 5, + [164035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8639), 1, + anon_sym_DQUOTE, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117195] = 7, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6562), 1, - anon_sym_RBRACE, - ACTIONS(6566), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6570), 1, - sym_variable_name, - STATE(998), 1, - sym_subscript, - ACTIONS(6568), 2, anon_sym_0, anon_sym__, - ACTIONS(6564), 5, - anon_sym_DASH, - anon_sym_QMARK, + [164059] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8643), 1, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [117222] = 7, - ACTIONS(4141), 1, + ACTIONS(8645), 1, + anon_sym_DQUOTE, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + STATE(3379), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164090] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 1, - anon_sym_RBRACE, - ACTIONS(6576), 1, + ACTIONS(8571), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8653), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8463), 1, + sym__string_content, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6580), 1, - sym_variable_name, - STATE(987), 1, - sym_subscript, - ACTIONS(6578), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6574), 5, + ACTIONS(8459), 9, + anon_sym_BANG, anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, + anon_sym_POUND, anon_sym_AT, - [117249] = 9, + anon_sym_0, + anon_sym__, + [164142] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8659), 1, + anon_sym_LT_LT, + ACTIONS(8661), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8663), 1, + anon_sym_LT_LT_LT, + ACTIONS(8655), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8657), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [164167] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(8607), 1, anon_sym_DQUOTE, - ACTIONS(6582), 1, - anon_sym_DOLLAR, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - STATE(2826), 1, + ACTIONS(8665), 1, + anon_sym_DOLLAR, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117279] = 9, + [164198] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8563), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6592), 1, + ACTIONS(8667), 1, anon_sym_DOLLAR, - ACTIONS(6594), 1, - anon_sym_DQUOTE, - STATE(2821), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117309] = 9, + [164229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6596), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR, - ACTIONS(6598), 1, + ACTIONS(8671), 1, anon_sym_DQUOTE, - STATE(2832), 1, + STATE(3343), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117339] = 9, + [164260] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6090), 1, + ACTIONS(8617), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8673), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164291] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8471), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6600), 1, + ACTIONS(8675), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117369] = 9, + [164322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8677), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8680), 1, + anon_sym_DOLLAR, + ACTIONS(8683), 1, + anon_sym_DQUOTE, + ACTIONS(8685), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8691), 1, + anon_sym_BQUOTE, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164353] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8698), 1, + anon_sym_LT_LT, + ACTIONS(8700), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8702), 1, + anon_sym_LT_LT_LT, + ACTIONS(8694), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8696), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [164378] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6602), 1, + ACTIONS(8704), 1, anon_sym_DOLLAR, - ACTIONS(6604), 1, + ACTIONS(8706), 1, anon_sym_DQUOTE, - STATE(2789), 1, + STATE(3361), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117399] = 4, + [164409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6610), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6606), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8708), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [117419] = 8, - ACTIONS(4141), 1, + ACTIONS(8710), 1, + anon_sym_DQUOTE, + STATE(3346), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164440] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, - anon_sym_DOLLAR, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(8467), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6620), 1, - sym__heredoc_body_middle, - ACTIONS(6622), 1, - sym__heredoc_body_end, - STATE(2795), 4, + ACTIONS(8712), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [117447] = 9, + [164471] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6624), 1, + ACTIONS(8714), 1, anon_sym_DOLLAR, - ACTIONS(6626), 1, + ACTIONS(8716), 1, anon_sym_DQUOTE, - STATE(2794), 1, + STATE(3358), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117477] = 9, + [164502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(8547), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6628), 1, + ACTIONS(8718), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117507] = 8, - ACTIONS(4141), 1, + [164533] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_DOLLAR, - ACTIONS(6633), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6636), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6639), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6642), 1, - sym__heredoc_body_middle, - ACTIONS(6645), 1, - sym__heredoc_body_end, - STATE(2795), 4, + ACTIONS(8720), 1, + anon_sym_DOLLAR, + ACTIONS(8722), 1, + anon_sym_DQUOTE, + STATE(3391), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [117535] = 8, - ACTIONS(4141), 1, + [164564] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, - anon_sym_DOLLAR, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6647), 1, - sym__heredoc_body_middle, - ACTIONS(6649), 1, - sym__heredoc_body_end, - STATE(2818), 4, + ACTIONS(8724), 1, + anon_sym_DOLLAR, + ACTIONS(8726), 1, + anon_sym_DQUOTE, + STATE(3345), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [117563] = 9, + [164595] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6651), 1, + ACTIONS(8728), 1, anon_sym_DOLLAR, - ACTIONS(6653), 1, + ACTIONS(8730), 1, anon_sym_DQUOTE, - STATE(2798), 1, + STATE(3332), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117593] = 9, + [164626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6048), 1, + ACTIONS(8477), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6655), 1, + ACTIONS(8732), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117623] = 9, + [164657] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5996), 1, + ACTIONS(8637), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, + ACTIONS(8734), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117653] = 9, + [164688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8619), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6659), 1, + ACTIONS(8736), 1, anon_sym_DOLLAR, - ACTIONS(6661), 1, - anon_sym_DQUOTE, - STATE(2799), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117683] = 9, + [164719] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8491), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6663), 1, + ACTIONS(8738), 1, anon_sym_DOLLAR, - ACTIONS(6665), 1, - anon_sym_DQUOTE, - STATE(2830), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117713] = 9, + [164750] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8591), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8740), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [164781] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6667), 1, + ACTIONS(8742), 1, anon_sym_DOLLAR, - ACTIONS(6669), 1, + ACTIONS(8744), 1, anon_sym_DQUOTE, - STATE(2843), 1, + STATE(3387), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117743] = 9, + [164812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(8497), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6671), 1, + ACTIONS(8746), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117773] = 9, + [164843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6032), 1, + ACTIONS(8621), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6673), 1, + ACTIONS(8748), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117803] = 9, + [164874] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8605), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6675), 1, + ACTIONS(8750), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, - anon_sym_DQUOTE, - STATE(2809), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117833] = 8, - ACTIONS(4141), 1, + [164905] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, - anon_sym_DOLLAR, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6679), 1, - sym__heredoc_body_middle, - ACTIONS(6681), 1, - sym__heredoc_body_end, - STATE(2792), 4, + ACTIONS(8752), 1, + anon_sym_DOLLAR, + ACTIONS(8754), 1, + anon_sym_DQUOTE, + STATE(3356), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [117861] = 9, + [164936] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6683), 1, + ACTIONS(8756), 1, anon_sym_DOLLAR, - ACTIONS(6685), 1, + ACTIONS(8758), 1, anon_sym_DQUOTE, - STATE(2820), 1, + STATE(3344), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117891] = 9, + [164967] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6687), 1, + ACTIONS(8760), 1, anon_sym_DOLLAR, - ACTIONS(6689), 1, + ACTIONS(8762), 1, anon_sym_DQUOTE, - STATE(2804), 1, + STATE(3350), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117921] = 9, + [164998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5928), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6691), 1, + ACTIONS(8764), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8766), 1, + anon_sym_DQUOTE, + STATE(3337), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117951] = 9, + [165029] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, + ACTIONS(8499), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6693), 1, + ACTIONS(8768), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117981] = 9, + [165060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6695), 1, + ACTIONS(8770), 1, anon_sym_DOLLAR, - ACTIONS(6697), 1, + ACTIONS(8772), 1, anon_sym_DQUOTE, - STATE(2850), 1, + STATE(3325), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118011] = 9, + [165091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, + ACTIONS(8629), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6699), 1, + ACTIONS(8774), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118041] = 9, + [165122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6701), 1, + ACTIONS(8776), 1, anon_sym_DOLLAR, - ACTIONS(6703), 1, + ACTIONS(8778), 1, anon_sym_DQUOTE, - STATE(2786), 1, + STATE(3351), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118071] = 9, + [165153] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, + ACTIONS(8567), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6705), 1, + ACTIONS(8780), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118101] = 9, + [165184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6707), 1, + ACTIONS(8782), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118131] = 9, + [165215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5960), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6709), 1, + ACTIONS(8784), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8786), 1, + anon_sym_DQUOTE, + STATE(3328), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118161] = 9, + [165246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6711), 1, + ACTIONS(8788), 1, anon_sym_DOLLAR, - ACTIONS(6713), 1, + ACTIONS(8790), 1, anon_sym_DQUOTE, - STATE(2814), 1, + STATE(3367), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118191] = 8, - ACTIONS(4141), 1, + [165277] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, - anon_sym_DOLLAR, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + ACTIONS(8533), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6620), 1, - sym__heredoc_body_middle, - ACTIONS(6715), 1, - sym__heredoc_body_end, - STATE(2795), 4, + ACTIONS(8792), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [118219] = 9, + [165308] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(8525), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8794), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [165339] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8511), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6717), 1, + ACTIONS(8796), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118249] = 9, + [165370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, + ACTIONS(8513), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8651), 1, + anon_sym_BQUOTE, + ACTIONS(8798), 1, + anon_sym_DOLLAR, + STATE(3333), 1, + aux_sym_string_repeat1, + STATE(3433), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [165401] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8647), 1, + sym__string_content, + ACTIONS(8649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6719), 1, + ACTIONS(8800), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8802), 1, + anon_sym_DQUOTE, + STATE(3347), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118279] = 9, + [165432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, + ACTIONS(8603), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6721), 1, + ACTIONS(8804), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118309] = 9, + [165463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6723), 1, + ACTIONS(8806), 1, anon_sym_DOLLAR, - ACTIONS(6725), 1, + ACTIONS(8808), 1, anon_sym_DQUOTE, - STATE(2816), 1, + STATE(3349), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118339] = 9, + [165494] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6727), 1, + ACTIONS(8810), 1, anon_sym_DOLLAR, - ACTIONS(6729), 1, + ACTIONS(8812), 1, anon_sym_DQUOTE, - STATE(2815), 1, + STATE(3366), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118369] = 9, + [165525] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6160), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6731), 1, + ACTIONS(8814), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8816), 1, + anon_sym_DQUOTE, + STATE(3378), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118399] = 9, + [165556] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6733), 1, + ACTIONS(8818), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8820), 1, + anon_sym_DQUOTE, + STATE(3369), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118429] = 9, + [165587] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8826), 1, + anon_sym_LT_LT, + ACTIONS(8828), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8830), 1, + anon_sym_LT_LT_LT, + ACTIONS(8822), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8824), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [165612] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6735), 1, - anon_sym_DOLLAR, - ACTIONS(6738), 1, - anon_sym_DQUOTE, - ACTIONS(6740), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6743), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6746), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6749), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - STATE(2826), 1, + ACTIONS(8832), 1, + anon_sym_DOLLAR, + ACTIONS(8834), 1, + anon_sym_DQUOTE, + STATE(3360), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118459] = 9, + [165643] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6752), 1, + ACTIONS(8836), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8838), 1, + anon_sym_DQUOTE, + STATE(3329), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118489] = 9, + [165674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8485), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6754), 1, + ACTIONS(8840), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, - anon_sym_DQUOTE, - STATE(2803), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118519] = 9, + [165705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6190), 1, + ACTIONS(8581), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6758), 1, + ACTIONS(8842), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118549] = 9, + [165736] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(8559), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6760), 1, + ACTIONS(8844), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118579] = 9, + [165767] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8523), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6762), 1, + ACTIONS(8846), 1, anon_sym_DOLLAR, - ACTIONS(6764), 1, - anon_sym_DQUOTE, - STATE(2819), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118609] = 9, + [165798] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6766), 1, + ACTIONS(8848), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8850), 1, + anon_sym_DQUOTE, + STATE(3377), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118639] = 9, + [165829] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 1, + ACTIONS(8517), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6768), 1, + ACTIONS(8852), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118669] = 9, + [165860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6770), 1, + ACTIONS(8854), 1, anon_sym_DOLLAR, - ACTIONS(6772), 1, + ACTIONS(8856), 1, anon_sym_DQUOTE, - STATE(2836), 1, + STATE(3365), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118699] = 9, + [165891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8573), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6774), 1, + ACTIONS(8858), 1, anon_sym_DOLLAR, - ACTIONS(6776), 1, - anon_sym_DQUOTE, - STATE(2833), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118729] = 9, + [165922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6778), 1, + ACTIONS(8860), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8862), 1, + anon_sym_DQUOTE, + STATE(3380), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118759] = 9, + [165953] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8659), 1, + anon_sym_LT_LT, + ACTIONS(8661), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8868), 1, + anon_sym_LT_LT_LT, + ACTIONS(8864), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8866), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [165978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8575), 1, + anon_sym_DQUOTE, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6780), 1, + ACTIONS(8870), 1, anon_sym_DOLLAR, - ACTIONS(6782), 1, - anon_sym_DQUOTE, - STATE(2825), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118789] = 9, + [166009] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6784), 1, + ACTIONS(8872), 1, anon_sym_DOLLAR, - ACTIONS(6786), 1, + ACTIONS(8874), 1, anon_sym_DQUOTE, - STATE(2845), 1, + STATE(3364), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118819] = 9, + [166040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6788), 1, + ACTIONS(8876), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(8878), 1, anon_sym_DQUOTE, - STATE(2829), 1, + STATE(3331), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118849] = 9, + [166071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6792), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR, - ACTIONS(6794), 1, + ACTIONS(8882), 1, anon_sym_DQUOTE, - STATE(2824), 1, + STATE(3384), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118879] = 9, + [166102] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, + ACTIONS(8529), 1, anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6796), 1, + ACTIONS(8884), 1, anon_sym_DOLLAR, - STATE(2826), 1, + STATE(3333), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118909] = 9, + [166133] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6798), 1, + ACTIONS(8886), 1, anon_sym_DOLLAR, - ACTIONS(6800), 1, + ACTIONS(8888), 1, anon_sym_DQUOTE, - STATE(2841), 1, + STATE(3339), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118939] = 9, + [166164] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6148), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, + ACTIONS(8641), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8647), 1, sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8651), 1, anon_sym_BQUOTE, - ACTIONS(6802), 1, + ACTIONS(8890), 1, anon_sym_DOLLAR, - STATE(2826), 1, + ACTIONS(8892), 1, + anon_sym_DQUOTE, + STATE(3382), 1, aux_sym_string_repeat1, - STATE(2867), 3, + STATE(3433), 4, + sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [118969] = 8, - ACTIONS(4141), 1, + [166195] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(8896), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8898), 2, + anon_sym_0, + anon_sym__, + ACTIONS(8894), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, + anon_sym_POUND, + anon_sym_AT, + [166215] = 8, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8902), 1, + anon_sym_DOLLAR, + ACTIONS(8904), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8906), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(8908), 1, sym__heredoc_body_middle, - ACTIONS(6806), 1, + ACTIONS(8910), 1, sym__heredoc_body_end, - STATE(2846), 4, + STATE(3398), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [118997] = 9, - ACTIONS(3), 1, + [166243] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, - anon_sym_BQUOTE, - ACTIONS(6808), 1, + ACTIONS(8902), 1, anon_sym_DOLLAR, - STATE(2826), 1, - aux_sym_string_repeat1, - STATE(2867), 3, + ACTIONS(8904), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8906), 1, + anon_sym_BQUOTE, + ACTIONS(8912), 1, + sym__heredoc_body_middle, + ACTIONS(8914), 1, + sym__heredoc_body_end, + STATE(3395), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, - [119027] = 8, - ACTIONS(4141), 1, + aux_sym_heredoc_body_repeat1, + [166271] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8902), 1, anon_sym_DOLLAR, - ACTIONS(6614), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6618), 1, + ACTIONS(8906), 1, anon_sym_BQUOTE, - ACTIONS(6620), 1, + ACTIONS(8908), 1, sym__heredoc_body_middle, - ACTIONS(6810), 1, + ACTIONS(8916), 1, sym__heredoc_body_end, - STATE(2795), 4, + STATE(3398), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [119055] = 9, - ACTIONS(3), 1, + [166299] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, - anon_sym_BQUOTE, - ACTIONS(6812), 1, + ACTIONS(8921), 1, anon_sym_DOLLAR, - ACTIONS(6814), 1, - anon_sym_DQUOTE, - STATE(2848), 1, - aux_sym_string_repeat1, - STATE(2867), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [119085] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8924), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8927), 1, anon_sym_BQUOTE, - ACTIONS(6816), 1, - anon_sym_DOLLAR, - STATE(2826), 1, - aux_sym_string_repeat1, - STATE(2867), 3, + ACTIONS(8930), 1, + sym__heredoc_body_middle, + ACTIONS(8933), 1, + sym__heredoc_body_end, + STATE(3398), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, - [119115] = 9, - ACTIONS(3), 1, + aux_sym_heredoc_body_repeat1, + [166327] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, - anon_sym_BQUOTE, - ACTIONS(6818), 1, + ACTIONS(8902), 1, anon_sym_DOLLAR, - ACTIONS(6820), 1, - anon_sym_DQUOTE, - STATE(2810), 1, - aux_sym_string_repeat1, - STATE(2867), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [119145] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, + ACTIONS(8906), 1, anon_sym_BQUOTE, - ACTIONS(6822), 1, - anon_sym_DOLLAR, - STATE(2826), 1, - aux_sym_string_repeat1, - STATE(2867), 3, + ACTIONS(8908), 1, + sym__heredoc_body_middle, + ACTIONS(8935), 1, + sym__heredoc_body_end, + STATE(3398), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, - [119175] = 9, - ACTIONS(3), 1, + aux_sym_heredoc_body_repeat1, + [166355] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, - anon_sym_BQUOTE, - ACTIONS(6824), 1, + ACTIONS(8902), 1, anon_sym_DOLLAR, - ACTIONS(6826), 1, - anon_sym_DQUOTE, - STATE(2827), 1, - aux_sym_string_repeat1, - STATE(2867), 3, + ACTIONS(8904), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8906), 1, + anon_sym_BQUOTE, + ACTIONS(8937), 1, + sym__heredoc_body_middle, + ACTIONS(8939), 1, + sym__heredoc_body_end, + STATE(3397), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, - [119205] = 9, - ACTIONS(3), 1, + aux_sym_heredoc_body_repeat1, + [166383] = 8, + ACTIONS(59), 1, sym_comment, - ACTIONS(6584), 1, - sym__string_content, - ACTIONS(6586), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6588), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6590), 1, - anon_sym_BQUOTE, - ACTIONS(6828), 1, + ACTIONS(8902), 1, anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - STATE(2812), 1, - aux_sym_string_repeat1, - STATE(2867), 3, + ACTIONS(8904), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8906), 1, + anon_sym_BQUOTE, + ACTIONS(8941), 1, + sym__heredoc_body_middle, + ACTIONS(8943), 1, + sym__heredoc_body_end, + STATE(3399), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, - [119235] = 7, - ACTIONS(151), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, + aux_sym_heredoc_body_repeat1, + [166411] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(8945), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8947), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [166427] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6834), 1, - anon_sym_LPAREN, - ACTIONS(6836), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6838), 1, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, anon_sym_LBRACK_LBRACK, - STATE(1786), 3, + ACTIONS(8949), 1, + anon_sym_LPAREN, + STATE(2630), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119259] = 7, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, + [166451] = 7, + ACTIONS(59), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, anon_sym_LBRACK, - ACTIONS(4141), 1, + ACTIONS(91), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(190), 1, + anon_sym_LPAREN, + STATE(2797), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [166475] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6836), 1, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6838), 1, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, anon_sym_LBRACK_LBRACK, - STATE(1867), 3, + STATE(2560), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119283] = 5, + [166499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(877), 1, anon_sym_LF, - ACTIONS(6840), 1, + ACTIONS(8951), 1, sym__concat, - STATE(2895), 1, + STATE(3438), 1, aux_sym_concatenation_repeat1, - ACTIONS(1221), 5, + ACTIONS(875), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, - sym__special_character, anon_sym_AMP, - [119303] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6842), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6844), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [119319] = 7, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, + sym__special_character, + [166519] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(6846), 1, + ACTIONS(254), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6848), 1, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6850), 1, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, anon_sym_LBRACK_LBRACK, - STATE(2204), 3, + STATE(2653), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119343] = 7, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6852), 1, + [166543] = 7, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6854), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6858), 1, - anon_sym_LBRACK_LBRACK, - STATE(2010), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [119367] = 7, - ACTIONS(79), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6852), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6856), 1, - anon_sym_LBRACE, - ACTIONS(6858), 1, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - STATE(2095), 3, + ACTIONS(59), 1, + sym_comment, + STATE(2881), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119391] = 7, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6832), 1, + [166567] = 7, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6836), 1, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6838), 1, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - STATE(1778), 3, + ACTIONS(59), 1, + sym_comment, + STATE(2976), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119415] = 7, - ACTIONS(79), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6852), 1, + [166591] = 7, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6856), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6858), 1, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - STATE(2073), 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(8953), 1, + anon_sym_LPAREN, + STATE(2886), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119439] = 7, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, + [166615] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(6846), 1, + ACTIONS(73), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6848), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6850), 1, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, - STATE(2212), 3, + ACTIONS(8955), 1, + anon_sym_LPAREN, + STATE(2778), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119463] = 7, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(4141), 1, + [166639] = 7, + ACTIONS(59), 1, sym_comment, - ACTIONS(6846), 1, + ACTIONS(73), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6848), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6850), 1, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6860), 1, + ACTIONS(190), 1, anon_sym_LPAREN, - STATE(2112), 3, + STATE(2730), 3, sym_compound_statement, sym_subshell, sym_test_command, - [119487] = 3, + [166663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 1, + ACTIONS(958), 1, sym__concat, - ACTIONS(1380), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, + ACTIONS(956), 6, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - sym__concat, - ACTIONS(1322), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119517] = 3, + [166678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(912), 1, sym__concat, - ACTIONS(1398), 6, + ACTIONS(910), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119532] = 3, + [166693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(904), 1, sym__concat, - ACTIONS(6862), 6, + ACTIONS(902), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119547] = 6, + [166708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, + ACTIONS(8957), 1, anon_sym_LF, - ACTIONS(6868), 1, + ACTIONS(8959), 1, anon_sym_in, - ACTIONS(6872), 1, + ACTIONS(8963), 1, sym__special_character, - STATE(2891), 1, + STATE(3417), 1, + aux_sym__literal_repeat1, + ACTIONS(8961), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [166729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 1, + anon_sym_LF, + ACTIONS(8965), 1, + sym__special_character, + STATE(3417), 1, aux_sym__literal_repeat1, - ACTIONS(6870), 3, + ACTIONS(922), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [166748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8968), 1, + anon_sym_LF, + ACTIONS(8970), 6, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP, + [166763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LF, + ACTIONS(8951), 1, + sym__concat, + STATE(3498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(875), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119568] = 3, + sym__special_character, + [166782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 1, + ACTIONS(1000), 1, sym__concat, - ACTIONS(1350), 6, + ACTIONS(998), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119583] = 3, + [166797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, + ACTIONS(996), 1, sym__concat, - ACTIONS(1358), 6, + ACTIONS(994), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119598] = 3, + [166812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, + ACTIONS(990), 1, sym__concat, - ACTIONS(1358), 6, + ACTIONS(988), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119613] = 3, + [166827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 1, + ACTIONS(986), 1, sym__concat, - ACTIONS(1368), 6, + ACTIONS(984), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119628] = 3, + [166842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(982), 1, sym__concat, - ACTIONS(1402), 6, + ACTIONS(980), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119643] = 3, + [166857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 1, + ACTIONS(978), 1, sym__concat, - ACTIONS(1384), 6, + ACTIONS(976), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [166872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + sym__concat, + ACTIONS(8972), 1, + anon_sym_LF, + ACTIONS(8974), 1, + anon_sym_in, + STATE(3438), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8976), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [166893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + sym__concat, + ACTIONS(972), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [119658] = 3, + [166908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8978), 1, + anon_sym_LF, + ACTIONS(8980), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1381), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [166925] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + sym__concat, + ACTIONS(8982), 1, + anon_sym_LF, + ACTIONS(8984), 1, + anon_sym_in, + STATE(3450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8986), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [166946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8963), 1, + sym__special_character, + ACTIONS(8988), 1, + anon_sym_LF, + ACTIONS(8990), 1, + anon_sym_in, + STATE(3417), 1, + aux_sym__literal_repeat1, + ACTIONS(8992), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [166967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(970), 1, sym__concat, - ACTIONS(1372), 6, + ACTIONS(968), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [166982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + sym__concat, + ACTIONS(8994), 1, + anon_sym_LF, + ACTIONS(8996), 1, + anon_sym_in, + STATE(3438), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8998), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9002), 1, + sym__concat, + ACTIONS(9000), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [119673] = 3, + [167018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 1, + ACTIONS(966), 1, sym__concat, - ACTIONS(1354), 6, + ACTIONS(964), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + sym__concat, + ACTIONS(8957), 1, + anon_sym_LF, + ACTIONS(8959), 1, + anon_sym_in, + STATE(3450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8961), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + sym__concat, + ACTIONS(933), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [119688] = 3, + [167069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(962), 1, sym__concat, - ACTIONS(1406), 6, + ACTIONS(960), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + anon_sym_LF, + ACTIONS(9004), 1, + sym__concat, + STATE(3440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + sym__concat, + ACTIONS(886), 6, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [119703] = 4, + [167118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(881), 1, anon_sym_LF, - ACTIONS(6876), 2, + ACTIONS(9006), 1, + sym__concat, + STATE(3440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(879), 4, + anon_sym_in, anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(489), 4, - anon_sym_esac, + [167137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8951), 1, + sym__concat, + ACTIONS(8988), 1, + anon_sym_LF, + ACTIONS(8990), 1, + anon_sym_in, + STATE(3450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8992), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [119720] = 6, + anon_sym_AMP, + [167158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(8951), 1, sym__concat, - ACTIONS(6878), 1, + ACTIONS(9009), 1, anon_sym_LF, - ACTIONS(6880), 1, + ACTIONS(9011), 1, anon_sym_in, - STATE(2895), 1, + STATE(3438), 1, aux_sym_concatenation_repeat1, - ACTIONS(6882), 3, + ACTIONS(9013), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 1, + anon_sym_LF, + ACTIONS(9017), 6, anon_sym_SEMI, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [119741] = 3, + [167194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 1, + ACTIONS(9019), 1, + anon_sym_LF, + ACTIONS(9021), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1092), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [167211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 1, sym__concat, - ACTIONS(1336), 6, + ACTIONS(8683), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119756] = 3, + [167226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(920), 1, sym__concat, - ACTIONS(1394), 6, + ACTIONS(918), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119771] = 3, + [167241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8963), 1, + sym__special_character, + ACTIONS(8982), 1, + anon_sym_LF, + ACTIONS(8984), 1, + anon_sym_in, + STATE(3417), 1, + aux_sym__literal_repeat1, + ACTIONS(8986), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9025), 1, + anon_sym_LF, + ACTIONS(9027), 6, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP, + [167277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 1, + ACTIONS(1004), 1, sym__concat, - ACTIONS(1318), 6, + ACTIONS(1002), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119786] = 3, + [167292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(871), 1, + anon_sym_LF, + ACTIONS(9029), 1, + sym__concat, + STATE(3440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(916), 1, sym__concat, - ACTIONS(1410), 6, + ACTIONS(914), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119801] = 3, + [167326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 1, + ACTIONS(950), 1, sym__concat, - ACTIONS(1388), 6, + ACTIONS(948), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119816] = 3, + [167341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 1, + ACTIONS(954), 1, sym__concat, - ACTIONS(1328), 6, + ACTIONS(952), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119831] = 3, + [167356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, + ACTIONS(935), 1, sym__concat, - ACTIONS(1422), 6, + ACTIONS(933), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [119846] = 6, + [167371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(978), 2, sym__concat, - ACTIONS(6884), 1, anon_sym_LF, - ACTIONS(6886), 1, + ACTIONS(976), 4, anon_sym_in, - STATE(2895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6888), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119867] = 6, - ACTIONS(3), 1, + [167385] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6872), 1, - sym__special_character, - ACTIONS(6890), 1, - anon_sym_LF, - ACTIONS(6892), 1, - anon_sym_in, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(6894), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119888] = 5, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, - anon_sym_LF, - ACTIONS(6896), 1, + ACTIONS(892), 2, sym__concat, - STATE(2889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1255), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, anon_sym_LF, - ACTIONS(6901), 6, + ACTIONS(890), 4, + anon_sym_in, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [119922] = 5, + [167413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(982), 2, + sym__concat, anon_sym_LF, - ACTIONS(6903), 1, - sym__special_character, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(1340), 4, + ACTIONS(980), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6906), 1, - sym__concat, - ACTIONS(6738), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119956] = 6, + [167427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(904), 2, sym__concat, - ACTIONS(6908), 1, anon_sym_LF, - ACTIONS(6910), 1, + ACTIONS(902), 4, anon_sym_in, - STATE(2895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6912), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119977] = 6, + [167441] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9031), 1, + anon_sym_fi, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + STATE(4218), 1, + sym_else_clause, + STATE(3531), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [167461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6872), 1, - sym__special_character, - ACTIONS(6914), 1, + ACTIONS(931), 2, + sym__concat, anon_sym_LF, - ACTIONS(6916), 1, + ACTIONS(929), 4, anon_sym_in, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(6918), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119998] = 5, + [167475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, - anon_sym_LF, - ACTIONS(6920), 1, + ACTIONS(958), 2, sym__concat, - STATE(2889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1249), 4, + anon_sym_LF, + ACTIONS(956), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120017] = 3, + [167489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(950), 2, sym__concat, - ACTIONS(1418), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6922), 1, anon_sym_LF, - ACTIONS(6924), 6, + ACTIONS(948), 4, + anon_sym_in, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [120047] = 4, + [167503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(9037), 1, anon_sym_LF, - ACTIONS(6928), 2, + ACTIONS(9039), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(666), 4, - anon_sym_esac, + ACTIONS(1092), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [120064] = 3, + [167519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(877), 1, anon_sym_LF, - ACTIONS(6932), 6, + ACTIONS(875), 5, + anon_sym_in, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [120079] = 3, + sym__special_character, + [167533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, - sym__concat, + ACTIONS(8968), 1, anon_sym_LF, - ACTIONS(1398), 4, - anon_sym_in, + ACTIONS(8970), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120093] = 3, - ACTIONS(1318), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1320), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120107] = 3, - ACTIONS(1322), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1324), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120121] = 3, - ACTIONS(1358), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, + [167547] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120135] = 3, - ACTIONS(1406), 1, + ACTIONS(960), 1, anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1408), 5, + ACTIONS(962), 5, sym__heredoc_body_middle, sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120149] = 3, - ACTIONS(1410), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1412), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120163] = 3, - ACTIONS(1358), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, + [167561] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120177] = 3, - ACTIONS(1418), 1, + ACTIONS(972), 1, anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1420), 5, + ACTIONS(974), 5, sym__heredoc_body_middle, sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120191] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6934), 1, - anon_sym_fi, - ACTIONS(6936), 1, - anon_sym_elif, - ACTIONS(6938), 1, - anon_sym_else, - STATE(3513), 1, - sym_else_clause, - STATE(2963), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [120211] = 3, - ACTIONS(1422), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1424), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120225] = 3, - ACTIONS(1368), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, + [167575] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120239] = 3, - ACTIONS(1372), 1, + ACTIONS(886), 1, anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1374), 5, + ACTIONS(888), 5, sym__heredoc_body_middle, sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120253] = 3, - ACTIONS(1380), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1382), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120267] = 3, - ACTIONS(1336), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, + [167589] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120281] = 3, - ACTIONS(1384), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, + ACTIONS(896), 2, + sym__concat, + anon_sym_LF, + ACTIONS(894), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167603] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1386), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120295] = 3, - ACTIONS(1388), 1, + ACTIONS(910), 1, anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1390), 5, + ACTIONS(912), 5, sym__heredoc_body_middle, sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120309] = 3, - ACTIONS(1394), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1396), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120323] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6936), 1, - anon_sym_elif, - ACTIONS(6938), 1, - anon_sym_else, - ACTIONS(6940), 1, - anon_sym_fi, - STATE(3533), 1, - sym_else_clause, - STATE(2963), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [120343] = 2, + [167617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120355] = 3, - ACTIONS(1350), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1352), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120369] = 3, - ACTIONS(1354), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1356), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120383] = 6, - ACTIONS(4141), 1, + ACTIONS(920), 2, + sym__concat, + anon_sym_LF, + ACTIONS(918), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [167631] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(6936), 1, + ACTIONS(9033), 1, anon_sym_elif, - ACTIONS(6938), 1, + ACTIONS(9035), 1, anon_sym_else, - ACTIONS(6942), 1, + ACTIONS(9041), 1, anon_sym_fi, - STATE(3530), 1, + STATE(4190), 1, sym_else_clause, - STATE(2963), 2, + STATE(3531), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [120403] = 6, - ACTIONS(4141), 1, + [167651] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6936), 1, - anon_sym_elif, - ACTIONS(6938), 1, - anon_sym_else, - ACTIONS(6944), 1, - anon_sym_fi, - STATE(3505), 1, - sym_else_clause, - STATE(2963), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [120423] = 3, - ACTIONS(1398), 1, + ACTIONS(976), 1, anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1400), 5, + ACTIONS(978), 5, sym__heredoc_body_middle, sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120437] = 3, - ACTIONS(1402), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1404), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120451] = 3, + [167665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(986), 2, sym__concat, anon_sym_LF, - ACTIONS(1318), 4, + ACTIONS(984), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120465] = 3, - ACTIONS(3), 1, + [167679] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LF, - ACTIONS(6901), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + ACTIONS(914), 1, + anon_sym_DOLLAR, + ACTIONS(916), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_AMP, - [120479] = 3, + [167693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 2, + ACTIONS(974), 2, sym__concat, anon_sym_LF, - ACTIONS(1255), 4, + ACTIONS(972), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120493] = 3, - ACTIONS(1328), 1, - anon_sym_DOLLAR, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1330), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [120507] = 3, + [167707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(6932), 5, + ACTIONS(8951), 1, + sym__concat, + STATE(3500), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1882), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, anon_sym_AMP, - [120521] = 3, + [167725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 2, + ACTIONS(966), 2, sym__concat, anon_sym_LF, - ACTIONS(1422), 4, + ACTIONS(964), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120535] = 3, + [167739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(939), 2, sym__concat, anon_sym_LF, - ACTIONS(1418), 4, + ACTIONS(937), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120549] = 3, + [167753] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(980), 1, + anon_sym_DOLLAR, + ACTIONS(982), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(935), 2, sym__concat, anon_sym_LF, - ACTIONS(1410), 4, + ACTIONS(933), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120563] = 3, + [167781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, - sym__concat, + ACTIONS(9043), 1, anon_sym_LF, - ACTIONS(1406), 4, - anon_sym_in, + ACTIONS(9045), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - [120577] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6936), 1, - anon_sym_elif, - ACTIONS(6938), 1, - anon_sym_else, - ACTIONS(6946), 1, - anon_sym_fi, - STATE(3439), 1, - sym_else_clause, - STATE(2963), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [120597] = 3, + ACTIONS(1381), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [167797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(990), 2, sym__concat, anon_sym_LF, - ACTIONS(1328), 4, + ACTIONS(988), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120611] = 3, + [167811] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(998), 1, + anon_sym_DOLLAR, + ACTIONS(1000), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(996), 2, sym__concat, anon_sym_LF, - ACTIONS(1402), 4, + ACTIONS(994), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120625] = 3, + [167839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 2, - sym__concat, + ACTIONS(1884), 1, anon_sym_LF, - ACTIONS(1394), 4, - anon_sym_in, + ACTIONS(8963), 1, + sym__special_character, + STATE(3417), 1, + aux_sym__literal_repeat1, + ACTIONS(1882), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120639] = 3, + [167857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 2, - sym__concat, + ACTIONS(1871), 1, anon_sym_LF, - ACTIONS(1388), 4, - anon_sym_in, + ACTIONS(8951), 1, + sym__concat, + STATE(3498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1869), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120653] = 3, + [167875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 2, + ACTIONS(962), 2, sym__concat, anon_sym_LF, - ACTIONS(1384), 4, + ACTIONS(960), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6948), 1, - anon_sym_LF, - ACTIONS(6950), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(666), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [120683] = 3, + [167889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 2, + ACTIONS(881), 2, sym__concat, anon_sym_LF, - ACTIONS(1380), 4, + ACTIONS(879), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120697] = 3, + [167903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(900), 2, sym__concat, anon_sym_LF, - ACTIONS(1372), 4, + ACTIONS(898), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120711] = 3, + [167917] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, - sym__concat, + ACTIONS(9025), 1, anon_sym_LF, - ACTIONS(1368), 4, - anon_sym_in, + ACTIONS(9027), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120725] = 6, - ACTIONS(4141), 1, + anon_sym_BQUOTE, + [167945] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(6936), 1, + ACTIONS(9033), 1, anon_sym_elif, - ACTIONS(6938), 1, + ACTIONS(9035), 1, anon_sym_else, - ACTIONS(6952), 1, + ACTIONS(9047), 1, anon_sym_fi, - STATE(3414), 1, + STATE(4213), 1, sym_else_clause, - STATE(2963), 2, + STATE(3531), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [120745] = 3, + [167965] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_DOLLAR, + ACTIONS(954), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [167979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 2, + ACTIONS(916), 2, sym__concat, anon_sym_LF, - ACTIONS(1291), 4, + ACTIONS(914), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120759] = 3, + [167993] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9049), 1, + anon_sym_fi, + STATE(4066), 1, + sym_else_clause, + STATE(3531), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 1, + ACTIONS(865), 1, anon_sym_LF, - ACTIONS(6924), 5, + ACTIONS(9051), 1, + sym__concat, + STATE(3440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(863), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, anon_sym_AMP, - [120773] = 4, - ACTIONS(3), 1, + [168031] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(6954), 1, - anon_sym_LF, - ACTIONS(6956), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(489), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [120789] = 3, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9053), 1, + anon_sym_fi, + STATE(4145), 1, + sym_else_clause, + STATE(3531), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 2, - sym__concat, + ACTIONS(871), 1, anon_sym_LF, - ACTIONS(1287), 4, - anon_sym_in, + ACTIONS(9055), 1, + sym__concat, + STATE(3440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(869), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120803] = 3, + [168069] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(964), 1, + anon_sym_DOLLAR, + ACTIONS(966), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168083] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(994), 1, + anon_sym_DOLLAR, + ACTIONS(996), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168097] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_DOLLAR, + ACTIONS(904), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(888), 2, sym__concat, anon_sym_LF, - ACTIONS(1358), 4, + ACTIONS(886), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120817] = 3, + [168125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(970), 2, sym__concat, anon_sym_LF, - ACTIONS(1358), 4, + ACTIONS(968), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120831] = 3, + [168139] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(948), 1, + anon_sym_DOLLAR, + ACTIONS(950), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168153] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(984), 1, + anon_sym_DOLLAR, + ACTIONS(986), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 2, + ACTIONS(912), 2, sym__concat, anon_sym_LF, - ACTIONS(1354), 4, + ACTIONS(910), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120845] = 3, + [168181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(908), 2, sym__concat, anon_sym_LF, - ACTIONS(1350), 4, + ACTIONS(906), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120859] = 3, + [168195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, + ACTIONS(954), 2, sym__concat, anon_sym_LF, - ACTIONS(1283), 4, + ACTIONS(952), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120873] = 3, - ACTIONS(3), 1, + [168209] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1223), 1, - anon_sym_LF, - ACTIONS(1221), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - sym__special_character, - anon_sym_AMP, - [120887] = 3, + ACTIONS(1002), 1, + anon_sym_DOLLAR, + ACTIONS(1004), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(1000), 2, sym__concat, anon_sym_LF, - ACTIONS(1336), 4, + ACTIONS(998), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120901] = 3, + [168237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 2, - sym__concat, + ACTIONS(9015), 1, anon_sym_LF, - ACTIONS(1279), 4, - anon_sym_in, + ACTIONS(9017), 5, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120915] = 3, + anon_sym_BQUOTE, + [168251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 2, + ACTIONS(935), 2, sym__concat, anon_sym_LF, - ACTIONS(1275), 4, + ACTIONS(933), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120929] = 3, + [168265] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(918), 1, + anon_sym_DOLLAR, + ACTIONS(920), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168279] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_elif, + ACTIONS(9035), 1, + anon_sym_else, + ACTIONS(9057), 1, + anon_sym_fi, + STATE(4094), 1, + sym_else_clause, + STATE(3531), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8683), 6, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, + ACTIONS(1004), 2, sym__concat, anon_sym_LF, - ACTIONS(1322), 4, + ACTIONS(1002), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120943] = 2, + [168325] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(988), 1, + anon_sym_DOLLAR, + ACTIONS(990), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6958), 6, + ACTIONS(9059), 6, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [168351] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(968), 1, + anon_sym_DOLLAR, + ACTIONS(970), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [120955] = 4, + [168365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, + ACTIONS(1092), 1, + anon_sym_RPAREN, + ACTIONS(9037), 1, anon_sym_LF, - ACTIONS(6962), 1, - anon_sym_in, - ACTIONS(6964), 3, + ACTIONS(9039), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120970] = 5, - ACTIONS(4141), 1, + [168380] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(1094), 1, + ts_builtin_sym_end, + ACTIONS(9061), 1, + anon_sym_LF, + ACTIONS(9063), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168395] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6966), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9065), 1, anon_sym_SEMI, - ACTIONS(6968), 1, + ACTIONS(9067), 1, anon_sym_do, - STATE(1894), 2, + STATE(2847), 2, sym_do_group, sym_compound_statement, - [120987] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4459), 1, - sym__concat, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(6972), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_concatenation_repeat1, - STATE(3237), 1, - aux_sym_case_item_repeat1, - [121006] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6976), 1, - anon_sym_elif, - ACTIONS(6974), 2, - anon_sym_fi, - anon_sym_else, - STATE(2963), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [121021] = 5, - ACTIONS(4141), 1, + [168412] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(9069), 1, anon_sym_SEMI, - ACTIONS(6981), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(2208), 2, + STATE(2675), 2, sym_do_group, sym_compound_statement, - [121038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(489), 1, - anon_sym_BQUOTE, - ACTIONS(6983), 1, - anon_sym_LF, - ACTIONS(6985), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [121053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(666), 1, - anon_sym_BQUOTE, - ACTIONS(6987), 1, - anon_sym_LF, - ACTIONS(6989), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [121068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6884), 1, - anon_sym_LF, - ACTIONS(6886), 1, - anon_sym_in, - ACTIONS(6888), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [121083] = 4, + [168429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, + ACTIONS(1379), 1, + ts_builtin_sym_end, + ACTIONS(9073), 1, anon_sym_LF, - ACTIONS(6993), 1, - anon_sym_in, - ACTIONS(6995), 3, + ACTIONS(9075), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121098] = 5, - ACTIONS(4141), 1, + [168444] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(274), 1, + anon_sym_LBRACE, + ACTIONS(9071), 1, + anon_sym_do, + ACTIONS(9077), 1, + anon_sym_SEMI, + STATE(2642), 2, + sym_do_group, + sym_compound_statement, + [168461] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(9071), 1, anon_sym_do, - ACTIONS(6997), 1, + ACTIONS(9079), 1, anon_sym_SEMI, - STATE(2200), 2, + STATE(2640), 2, sym_do_group, sym_compound_statement, - [121115] = 4, + [168478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, + ACTIONS(1381), 1, anon_sym_RPAREN, - ACTIONS(6948), 1, + ACTIONS(9043), 1, anon_sym_LF, - ACTIONS(6950), 3, + ACTIONS(9045), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121130] = 5, - ACTIONS(4141), 1, + [168493] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - ACTIONS(6999), 1, + ACTIONS(9081), 1, anon_sym_SEMI, - STATE(2162), 2, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2798), 2, sym_do_group, sym_compound_statement, - [121147] = 6, - ACTIONS(4141), 1, + [168510] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4629), 1, - sym__special_character, - ACTIONS(6970), 1, + ACTIONS(9087), 1, + anon_sym_elif, + ACTIONS(9085), 2, + anon_sym_fi, + anon_sym_else, + STATE(3531), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [168525] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(9092), 1, anon_sym_RPAREN, - STATE(2012), 1, - aux_sym__literal_repeat1, - STATE(3202), 1, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + STATE(3821), 1, aux_sym_case_item_repeat1, - [121166] = 6, - ACTIONS(4141), 1, + [168544] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(7583), 1, sym__concat, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7003), 1, + ACTIONS(9094), 1, anon_sym_RPAREN, - STATE(3010), 1, + STATE(3609), 1, aux_sym_concatenation_repeat1, - STATE(3208), 1, + STATE(3828), 1, aux_sym_case_item_repeat1, - [121185] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - ACTIONS(7005), 1, - anon_sym_SEMI, - STATE(2185), 2, - sym_do_group, - sym_compound_statement, - [121202] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - ACTIONS(7007), 1, - anon_sym_SEMI, - STATE(2186), 2, - sym_do_group, - sym_compound_statement, - [121219] = 5, - ACTIONS(4141), 1, + [168563] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(9071), 1, anon_sym_do, - ACTIONS(7009), 1, + ACTIONS(9096), 1, anon_sym_SEMI, - STATE(2188), 2, + STATE(2575), 2, sym_do_group, sym_compound_statement, - [121236] = 4, + [168580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6878), 1, + ACTIONS(9098), 1, anon_sym_LF, - ACTIONS(6880), 1, + ACTIONS(9100), 1, anon_sym_in, - ACTIONS(6882), 3, + ACTIONS(9102), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121251] = 5, - ACTIONS(4141), 1, + [168595] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(7644), 1, + sym__special_character, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9094), 1, + anon_sym_RPAREN, + STATE(3036), 1, + aux_sym__literal_repeat1, + STATE(3836), 1, + aux_sym_case_item_repeat1, + [168614] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(7011), 1, + ACTIONS(9104), 1, anon_sym_SEMI, - STATE(2164), 2, + STATE(2805), 2, sym_do_group, sym_compound_statement, - [121268] = 4, + [168631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_RPAREN, - ACTIONS(6954), 1, + ACTIONS(8968), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6956), 3, + ACTIONS(8970), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121283] = 5, - ACTIONS(4141), 1, + [168644] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9106), 1, + anon_sym_RPAREN, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + STATE(3712), 1, + aux_sym_case_item_repeat1, + [168663] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7013), 1, - anon_sym_SEMI, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(1991), 2, + ACTIONS(9108), 1, + anon_sym_SEMI, + STATE(2807), 2, sym_do_group, sym_compound_statement, - [121300] = 3, + [168680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 2, - ts_builtin_sym_end, + ACTIONS(9009), 1, anon_sym_LF, - ACTIONS(6924), 3, + ACTIONS(9011), 1, + anon_sym_in, + ACTIONS(9013), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121313] = 4, + [168695] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9110), 1, + anon_sym_RPAREN, + STATE(3609), 1, + aux_sym_concatenation_repeat1, + STATE(3642), 1, + aux_sym_case_item_repeat1, + [168714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - ts_builtin_sym_end, - ACTIONS(7017), 1, + ACTIONS(9112), 1, anon_sym_LF, - ACTIONS(7019), 3, + ACTIONS(9114), 1, + anon_sym_in, + ACTIONS(9116), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121328] = 4, + [168729] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9118), 1, + anon_sym_RPAREN, + STATE(3609), 1, + aux_sym_concatenation_repeat1, + STATE(3713), 1, + aux_sym_case_item_repeat1, + [168748] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9120), 1, + anon_sym_RPAREN, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + STATE(3632), 1, + aux_sym_case_item_repeat1, + [168767] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + ACTIONS(9122), 1, + anon_sym_SEMI, + STATE(2808), 2, + sym_do_group, + sym_compound_statement, + [168784] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(274), 1, + anon_sym_LBRACE, + ACTIONS(9071), 1, + anon_sym_do, + ACTIONS(9124), 1, + anon_sym_SEMI, + STATE(2717), 2, + sym_do_group, + sym_compound_statement, + [168801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(8994), 1, anon_sym_LF, - ACTIONS(7023), 1, + ACTIONS(8996), 1, anon_sym_in, - ACTIONS(7025), 3, + ACTIONS(8998), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121343] = 5, - ACTIONS(4141), 1, + [168816] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7583), 1, + sym__concat, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [168831] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(7027), 1, + ACTIONS(9126), 1, anon_sym_SEMI, - STATE(2017), 2, + STATE(2816), 2, sym_do_group, sym_compound_statement, - [121360] = 5, - ACTIONS(4141), 1, + [168848] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(7029), 1, + ACTIONS(9128), 1, anon_sym_SEMI, - STATE(1936), 2, + STATE(2818), 2, sym_do_group, sym_compound_statement, - [121377] = 5, - ACTIONS(4141), 1, + [168865] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(7031), 1, + ACTIONS(9130), 1, anon_sym_SEMI, - STATE(2038), 2, + STATE(2804), 2, sym_do_group, sym_compound_statement, - [121394] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4629), 1, - sym__special_character, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7033), 1, - anon_sym_RPAREN, - STATE(2012), 1, - aux_sym__literal_repeat1, - STATE(3224), 1, - aux_sym_case_item_repeat1, - [121413] = 5, - ACTIONS(4141), 1, + [168882] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9071), 1, anon_sym_do, - ACTIONS(7035), 1, + ACTIONS(9132), 1, anon_sym_SEMI, - STATE(1893), 2, + STATE(2715), 2, sym_do_group, sym_compound_statement, - [121430] = 4, - ACTIONS(3), 1, + [168899] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(810), 1, - ts_builtin_sym_end, - ACTIONS(7037), 1, - anon_sym_LF, - ACTIONS(7039), 3, + ACTIONS(274), 1, + anon_sym_LBRACE, + ACTIONS(9071), 1, + anon_sym_do, + ACTIONS(9134), 1, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [121445] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4459), 1, - sym__concat, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_concatenation_repeat1, - STATE(3153), 1, - aux_sym_case_item_repeat1, - [121464] = 3, + STATE(2708), 2, + sym_do_group, + sym_compound_statement, + [168916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 2, + ACTIONS(9025), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6901), 3, + ACTIONS(9027), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121477] = 4, - ACTIONS(4141), 1, + [168929] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(4459), 1, - sym__concat, - STATE(3010), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 3, - anon_sym_PIPE, - anon_sym_RPAREN, + ACTIONS(7644), 1, sym__special_character, - [121492] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4629), 1, - sym__special_character, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7043), 1, + ACTIONS(9110), 1, anon_sym_RPAREN, - STATE(2012), 1, + STATE(3036), 1, aux_sym__literal_repeat1, - STATE(3150), 1, + STATE(3645), 1, aux_sym_case_item_repeat1, - [121511] = 5, - ACTIONS(4141), 1, + [168948] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - ACTIONS(7045), 1, + ACTIONS(9136), 1, anon_sym_SEMI, - STATE(2097), 2, + STATE(2829), 2, sym_do_group, sym_compound_statement, - [121528] = 5, - ACTIONS(4141), 1, + [168965] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_do, - ACTIONS(7047), 1, + ACTIONS(8972), 1, + anon_sym_LF, + ACTIONS(8974), 1, + anon_sym_in, + ACTIONS(8976), 3, anon_sym_SEMI, - STATE(2098), 2, - sym_do_group, - sym_compound_statement, - [121545] = 5, - ACTIONS(4141), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168980] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_do, - ACTIONS(7049), 1, + ACTIONS(9138), 1, + anon_sym_LF, + ACTIONS(9140), 1, + anon_sym_in, + ACTIONS(9142), 3, anon_sym_SEMI, - STATE(2099), 2, - sym_do_group, - sym_compound_statement, - [121562] = 5, - ACTIONS(4141), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [168995] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - ACTIONS(7051), 1, + ACTIONS(1092), 1, + anon_sym_BQUOTE, + ACTIONS(9144), 1, + anon_sym_LF, + ACTIONS(9146), 3, anon_sym_SEMI, - STATE(2134), 2, - sym_do_group, - sym_compound_statement, - [121579] = 4, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(1381), 1, + anon_sym_BQUOTE, + ACTIONS(9148), 1, anon_sym_LF, - ACTIONS(6910), 1, - anon_sym_in, - ACTIONS(6912), 3, + ACTIONS(9150), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121594] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6836), 1, + [169025] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - ACTIONS(7053), 1, + ACTIONS(9152), 1, anon_sym_SEMI, - STATE(1932), 2, + STATE(2858), 2, sym_do_group, sym_compound_statement, - [121611] = 5, - ACTIONS(4141), 1, + [169042] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9154), 1, + anon_sym_RPAREN, + STATE(3609), 1, + aux_sym_concatenation_repeat1, + STATE(3651), 1, + aux_sym_case_item_repeat1, + [169061] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - ACTIONS(7055), 1, + ACTIONS(9156), 1, anon_sym_SEMI, - STATE(1934), 2, + STATE(2854), 2, sym_do_group, sym_compound_statement, - [121628] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6836), 1, + [169078] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - ACTIONS(7057), 1, + ACTIONS(9158), 1, anon_sym_SEMI, - STATE(1927), 2, + STATE(2936), 2, sym_do_group, sym_compound_statement, - [121645] = 5, - ACTIONS(4141), 1, + [169095] = 5, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(9067), 1, + anon_sym_do, + ACTIONS(9160), 1, + anon_sym_SEMI, + STATE(2851), 2, + sym_do_group, + sym_compound_statement, + [169112] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - ACTIONS(7059), 1, + ACTIONS(9162), 1, anon_sym_SEMI, - STATE(2037), 2, + STATE(2962), 2, sym_do_group, sym_compound_statement, - [121662] = 5, - ACTIONS(4141), 1, + [169129] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9071), 1, anon_sym_do, - ACTIONS(7061), 1, + ACTIONS(9164), 1, anon_sym_SEMI, - STATE(1878), 2, + STATE(2571), 2, sym_do_group, sym_compound_statement, - [121679] = 6, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(4459), 1, - sym__concat, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_RPAREN, - STATE(3010), 1, - aux_sym_concatenation_repeat1, - STATE(3137), 1, - aux_sym_case_item_repeat1, - [121698] = 5, - ACTIONS(4141), 1, + [169146] = 5, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(9067), 1, + anon_sym_do, + ACTIONS(9166), 1, + anon_sym_SEMI, + STATE(2892), 2, + sym_do_group, + sym_compound_statement, + [169163] = 5, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - ACTIONS(7065), 1, + ACTIONS(9168), 1, anon_sym_SEMI, - STATE(1907), 2, + STATE(2922), 2, sym_do_group, sym_compound_statement, - [121715] = 6, - ACTIONS(4141), 1, + [169180] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(7644), 1, sym__special_character, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7067), 1, + ACTIONS(9154), 1, anon_sym_RPAREN, - STATE(2012), 1, + STATE(3036), 1, aux_sym__literal_repeat1, - STATE(3134), 1, + STATE(3646), 1, aux_sym_case_item_repeat1, - [121734] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6836), 1, - anon_sym_LBRACE, - ACTIONS(6968), 1, - anon_sym_do, - ACTIONS(7069), 1, - anon_sym_SEMI, - STATE(1895), 2, - sym_do_group, - sym_compound_statement, - [121751] = 3, + [169199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 2, + ACTIONS(9015), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6932), 3, + ACTIONS(9017), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121764] = 3, - ACTIONS(3), 1, + [169212] = 6, + ACTIONS(59), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym_LF, - ACTIONS(7073), 3, - anon_sym_SEMI, + ACTIONS(7583), 1, + sym__concat, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9170), 1, + anon_sym_RPAREN, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + STATE(3652), 1, + aux_sym_case_item_repeat1, + [169231] = 6, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7644), 1, + sym__special_character, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9118), 1, + anon_sym_RPAREN, + STATE(3036), 1, + aux_sym__literal_repeat1, + STATE(3717), 1, + aux_sym_case_item_repeat1, + [169250] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9172), 1, + anon_sym_esac, + ACTIONS(9174), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [121776] = 4, - ACTIONS(4141), 1, + ACTIONS(9176), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [169264] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9178), 1, + anon_sym_esac, + ACTIONS(9180), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9182), 1, + anon_sym_SEMI_AMP, + ACTIONS(9184), 1, + anon_sym_SEMI_SEMI_AMP, + [169280] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7644), 1, + sym__special_character, + STATE(3036), 1, + aux_sym__literal_repeat1, + ACTIONS(9186), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169294] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(7583), 1, sym__concat, - STATE(2093), 1, + STATE(3609), 1, aux_sym_concatenation_repeat1, - ACTIONS(1251), 2, + ACTIONS(9186), 2, anon_sym_PIPE, anon_sym_RPAREN, - [121790] = 4, - ACTIONS(4141), 1, + [169308] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(7583), 1, + sym__concat, + STATE(3606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9188), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169322] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, - anon_sym_do, - STATE(1777), 2, - sym_do_group, - sym_compound_statement, - [121804] = 4, - ACTIONS(4141), 1, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9067), 1, anon_sym_do, - STATE(1883), 2, + STATE(2918), 2, sym_do_group, sym_compound_statement, - [121818] = 5, - ACTIONS(4141), 1, + [169336] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_esac, - ACTIONS(7079), 1, + ACTIONS(1871), 1, + anon_sym_LF, + ACTIONS(1869), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - ACTIONS(7081), 1, - anon_sym_SEMI_AMP, - ACTIONS(7083), 1, - anon_sym_SEMI_SEMI_AMP, - [121834] = 4, - ACTIONS(4141), 1, + anon_sym_AMP, + [169348] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(1905), 2, + STATE(2676), 2, sym_do_group, sym_compound_statement, - [121848] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6848), 1, + [169362] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - STATE(2111), 2, + STATE(2919), 2, sym_do_group, sym_compound_statement, - [121862] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6848), 1, + [169376] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - STATE(2171), 2, + STATE(2920), 2, sym_do_group, sym_compound_statement, - [121876] = 4, - ACTIONS(4141), 1, + [169390] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(9190), 1, + anon_sym_esac, + ACTIONS(9192), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9194), 1, + anon_sym_SEMI_AMP, + ACTIONS(9196), 1, + anon_sym_SEMI_SEMI_AMP, + [169406] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - STATE(1911), 2, + STATE(2964), 2, sym_do_group, sym_compound_statement, - [121890] = 4, - ACTIONS(4141), 1, + [169420] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(9067), 1, + anon_sym_do, + STATE(2870), 2, + sym_do_group, + sym_compound_statement, + [169434] = 4, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - STATE(1912), 2, + STATE(2888), 2, sym_do_group, sym_compound_statement, - [121904] = 5, - ACTIONS(4141), 1, + [169448] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(9198), 1, anon_sym_esac, - ACTIONS(7087), 1, + ACTIONS(9200), 1, anon_sym_SEMI_SEMI, - ACTIONS(7089), 1, + ACTIONS(9202), 2, anon_sym_SEMI_AMP, - ACTIONS(7091), 1, anon_sym_SEMI_SEMI_AMP, - [121920] = 5, - ACTIONS(4141), 1, + [169462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9204), 1, + anon_sym_LF, + ACTIONS(4120), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169474] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(9206), 1, anon_sym_esac, - ACTIONS(7093), 1, + ACTIONS(9208), 1, anon_sym_SEMI_SEMI, - ACTIONS(7095), 1, + ACTIONS(9210), 1, anon_sym_SEMI_AMP, - ACTIONS(7097), 1, + ACTIONS(9212), 1, anon_sym_SEMI_SEMI_AMP, - [121936] = 5, - ACTIONS(4141), 1, + [169490] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_do, + STATE(2836), 2, + sym_do_group, + sym_compound_statement, + [169504] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2831), 2, + sym_do_group, + sym_compound_statement, + [169518] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(9214), 1, anon_sym_esac, - ACTIONS(7101), 1, + ACTIONS(9216), 1, anon_sym_SEMI_SEMI, - ACTIONS(7103), 1, + ACTIONS(9218), 2, anon_sym_SEMI_AMP, - ACTIONS(7105), 1, anon_sym_SEMI_SEMI_AMP, - [121952] = 3, + [169532] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2828), 2, + sym_do_group, + sym_compound_statement, + [169546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 1, + ACTIONS(9220), 1, anon_sym_LF, - ACTIONS(7109), 3, + ACTIONS(9222), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121964] = 4, - ACTIONS(4141), 1, + [169558] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(1986), 2, + STATE(2706), 2, sym_do_group, sym_compound_statement, - [121978] = 3, + [169572] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2827), 2, + sym_do_group, + sym_compound_statement, + [169586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4515), 1, anon_sym_LF, - ACTIONS(7113), 3, + ACTIONS(4513), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [121990] = 3, + [169598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7115), 1, + ACTIONS(4535), 1, anon_sym_LF, - ACTIONS(7117), 3, + ACTIONS(4533), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [122002] = 5, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_RBRACK, - ACTIONS(7121), 1, - sym__special_character, - ACTIONS(7123), 1, - sym__concat, - STATE(3059), 1, - aux_sym__literal_repeat1, - [122018] = 4, - ACTIONS(4141), 1, + [169610] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(1873), 2, + STATE(2826), 2, sym_do_group, sym_compound_statement, - [122032] = 5, - ACTIONS(4141), 1, + [169624] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7125), 1, + ACTIONS(9224), 1, anon_sym_esac, - ACTIONS(7127), 1, + ACTIONS(9226), 1, anon_sym_SEMI_SEMI, - ACTIONS(7129), 1, + ACTIONS(9228), 2, anon_sym_SEMI_AMP, - ACTIONS(7131), 1, anon_sym_SEMI_SEMI_AMP, - [122048] = 5, - ACTIONS(4141), 1, + [169638] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(7125), 1, + ACTIONS(9190), 1, anon_sym_esac, - ACTIONS(7133), 1, + ACTIONS(9230), 1, anon_sym_SEMI_SEMI, - ACTIONS(7135), 1, + ACTIONS(9232), 1, anon_sym_SEMI_AMP, - ACTIONS(7137), 1, + ACTIONS(9234), 1, anon_sym_SEMI_SEMI_AMP, - [122064] = 4, - ACTIONS(4141), 1, + [169654] = 4, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_do, + STATE(2941), 2, + sym_do_group, + sym_compound_statement, + [169668] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(1931), 2, + STATE(2817), 2, sym_do_group, sym_compound_statement, - [122078] = 4, - ACTIONS(4141), 1, + [169682] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7139), 1, - anon_sym_esac, - ACTIONS(7141), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7143), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [122092] = 4, - ACTIONS(4141), 1, + ACTIONS(9236), 1, + sym__concat, + STATE(3025), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169696] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(2101), 2, + STATE(2815), 2, sym_do_group, sym_compound_statement, - [122106] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7145), 1, - anon_sym_esac, - ACTIONS(7147), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7149), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [122120] = 4, - ACTIONS(4141), 1, + [169710] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(2137), 2, + STATE(2814), 2, sym_do_group, sym_compound_statement, - [122134] = 3, - ACTIONS(3), 1, + [169724] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7151), 1, - anon_sym_LF, - ACTIONS(7153), 3, - anon_sym_SEMI, + ACTIONS(9238), 1, + sym__concat, + STATE(3025), 1, + aux_sym_concatenation_repeat1, + ACTIONS(871), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [169738] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9240), 1, + anon_sym_RBRACK, + ACTIONS(9242), 1, + sym__special_character, + ACTIONS(9244), 1, + sym__concat, + STATE(3621), 1, + aux_sym__literal_repeat1, + [169754] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9206), 1, + anon_sym_esac, + ACTIONS(9246), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122146] = 3, + ACTIONS(9248), 1, + anon_sym_SEMI_AMP, + ACTIONS(9250), 1, + anon_sym_SEMI_SEMI_AMP, + [169770] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9178), 1, + anon_sym_esac, + ACTIONS(9252), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9254), 1, + anon_sym_SEMI_AMP, + ACTIONS(9256), 1, + anon_sym_SEMI_SEMI_AMP, + [169786] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 1, + sym__special_character, + ACTIONS(877), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [169802] = 5, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9242), 1, + sym__special_character, + ACTIONS(9260), 1, + anon_sym_RBRACK, + ACTIONS(9262), 1, + sym__concat, + STATE(3621), 1, + aux_sym__literal_repeat1, + [169818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7155), 1, + ACTIONS(9264), 1, anon_sym_LF, - ACTIONS(7157), 3, + ACTIONS(9266), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [122158] = 4, - ACTIONS(4141), 1, + [169830] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(2139), 2, + STATE(2689), 2, sym_do_group, sym_compound_statement, - [122172] = 4, - ACTIONS(4141), 1, + [169844] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(85), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2820), 2, + sym_do_group, + sym_compound_statement, + [169858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9268), 1, + anon_sym_LF, + ACTIONS(4065), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [169870] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(274), 1, + anon_sym_LBRACE, + ACTIONS(9071), 1, anon_sym_do, - STATE(1880), 2, + STATE(2596), 2, sym_do_group, sym_compound_statement, - [122186] = 4, - ACTIONS(4141), 1, + [169884] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(7159), 1, + ACTIONS(9270), 1, anon_sym_esac, - ACTIONS(7161), 1, + ACTIONS(9272), 1, anon_sym_SEMI_SEMI, - ACTIONS(7163), 2, + ACTIONS(9274), 1, anon_sym_SEMI_AMP, + ACTIONS(9276), 1, anon_sym_SEMI_SEMI_AMP, - [122200] = 4, - ACTIONS(4141), 1, + [169900] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9278), 1, + sym__special_character, + STATE(3621), 1, + aux_sym__literal_repeat1, + ACTIONS(927), 2, + sym__concat, + anon_sym_RBRACK, + [169914] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(875), 1, + sym__special_character, + STATE(3734), 1, + aux_sym_concatenation_repeat1, + ACTIONS(877), 2, + sym__concat, + anon_sym_RBRACK, + [169928] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(2059), 2, + STATE(2624), 2, sym_do_group, sym_compound_statement, - [122214] = 4, - ACTIONS(4141), 1, + [169942] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(1978), 2, + STATE(2629), 2, sym_do_group, sym_compound_statement, - [122228] = 3, + [169956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7165), 1, + ACTIONS(9281), 1, anon_sym_LF, - ACTIONS(7167), 3, + ACTIONS(4053), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [122240] = 5, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1223), 1, - anon_sym_RBRACE, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, - sym__concat, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [122256] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7171), 1, - anon_sym_esac, - ACTIONS(7173), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7175), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [122270] = 4, - ACTIONS(4141), 1, + [169968] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(2032), 2, + STATE(2634), 2, sym_do_group, sym_compound_statement, - [122284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7177), 1, - anon_sym_LF, - ACTIONS(7179), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122296] = 3, + [169982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(9283), 1, anon_sym_LF, - ACTIONS(7183), 3, + ACTIONS(9285), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [122308] = 4, - ACTIONS(4141), 1, + [169994] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(274), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(9071), 1, anon_sym_do, - STATE(2003), 2, + STATE(2648), 2, sym_do_group, sym_compound_statement, - [122322] = 4, - ACTIONS(4141), 1, + [170008] = 5, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_do, - STATE(2002), 2, - sym_do_group, - sym_compound_statement, - [122336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7185), 1, - anon_sym_LF, - ACTIONS(7187), 3, - anon_sym_SEMI, + ACTIONS(9270), 1, + anon_sym_esac, + ACTIONS(9287), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122348] = 3, - ACTIONS(3), 1, + ACTIONS(9289), 1, + anon_sym_SEMI_AMP, + ACTIONS(9291), 1, + anon_sym_SEMI_SEMI_AMP, + [170024] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7189), 1, - anon_sym_LF, - ACTIONS(7191), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122360] = 3, - ACTIONS(3), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9293), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170037] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9295), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170050] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9297), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170063] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170076] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4475), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170089] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9299), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170102] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9301), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170115] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_RBRACE, + ACTIONS(9303), 1, + sym__special_character, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170128] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9307), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170139] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9309), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170152] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9301), 1, + anon_sym_RBRACE, + ACTIONS(9303), 1, + sym__special_character, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170165] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9311), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170178] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9313), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170191] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9311), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170204] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170217] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9315), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170230] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9317), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170243] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9319), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170256] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9321), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170269] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9319), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170282] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3187), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170295] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9323), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170308] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9325), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [170321] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1980), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170334] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7193), 1, - anon_sym_LF, - ACTIONS(7195), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122372] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9327), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170347] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_do, - STATE(2000), 2, - sym_do_group, - sym_compound_statement, - [122386] = 3, - ACTIONS(3), 1, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9329), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170358] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7197), 1, - anon_sym_LF, - ACTIONS(7199), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122398] = 3, - ACTIONS(3), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9331), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170371] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7201), 1, - anon_sym_LF, - ACTIONS(7203), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122410] = 3, - ACTIONS(3), 1, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170384] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7205), 1, - anon_sym_LF, - ACTIONS(7207), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122422] = 3, - ACTIONS(3), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9331), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170397] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7209), 1, - anon_sym_LF, - ACTIONS(7211), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122434] = 5, - ACTIONS(4141), 1, + ACTIONS(4957), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170410] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7121), 1, - sym__special_character, - ACTIONS(7213), 1, - anon_sym_RBRACK, - ACTIONS(7215), 1, + ACTIONS(9333), 1, sym__concat, - STATE(3059), 1, - aux_sym__literal_repeat1, - [122450] = 4, - ACTIONS(4141), 1, + ACTIONS(5549), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170421] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7217), 1, + ACTIONS(9303), 1, sym__special_character, - STATE(3059), 1, + ACTIONS(9335), 1, + anon_sym_RBRACE, + STATE(3673), 1, aux_sym__literal_repeat1, - ACTIONS(1345), 2, + [170434] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, sym__concat, - anon_sym_RBRACK, - [122464] = 4, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(4141), 1, + ACTIONS(9337), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170447] = 4, + ACTIONS(59), 1, sym_comment, - STATE(3102), 1, + ACTIONS(3615), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - ACTIONS(1223), 2, + [170460] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, sym__concat, - anon_sym_RBRACK, - [122478] = 4, - ACTIONS(4141), 1, + ACTIONS(9339), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170473] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2167), 2, - sym_do_group, - sym_compound_statement, - [122492] = 3, - ACTIONS(3), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9327), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170486] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_LF, - ACTIONS(7222), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [122504] = 4, - ACTIONS(4141), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9339), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170499] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2190), 2, - sym_do_group, - sym_compound_statement, - [122518] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9335), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170512] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(3129), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - STATE(3010), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - ACTIONS(7224), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [122532] = 4, - ACTIONS(4141), 1, + [170525] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2141), 2, - sym_do_group, - sym_compound_statement, - [122546] = 4, - ACTIONS(4141), 1, + ACTIONS(5077), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170538] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170551] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(9303), 1, sym__special_character, - STATE(2012), 1, + ACTIONS(9337), 1, + anon_sym_RBRACE, + STATE(3673), 1, aux_sym__literal_repeat1, - ACTIONS(7226), 2, + [170564] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, anon_sym_PIPE, + ACTIONS(9120), 1, anon_sym_RPAREN, - [122560] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6848), 1, - anon_sym_LBRACE, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2172), 2, - sym_do_group, - sym_compound_statement, - [122574] = 4, - ACTIONS(4141), 1, + STATE(3757), 1, + aux_sym_case_item_repeat1, + [170577] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(927), 1, anon_sym_RBRACE, - ACTIONS(7230), 1, + ACTIONS(9341), 1, sym__special_character, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122587] = 4, - ACTIONS(4141), 1, + [170590] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9344), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170603] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7232), 1, + ACTIONS(9346), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122600] = 3, - ACTIONS(4141), 1, + [170616] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9348), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170629] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4441), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170642] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9350), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170655] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9352), 1, anon_sym_SEMI_SEMI, - ACTIONS(7149), 2, + ACTIONS(9228), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [122611] = 4, - ACTIONS(4141), 1, + [170666] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7236), 1, + ACTIONS(9350), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122624] = 4, - ACTIONS(4141), 1, + [170679] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7238), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9346), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [122637] = 4, - ACTIONS(4141), 1, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170692] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(5021), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170705] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170718] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7240), 1, + ACTIONS(9354), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122650] = 4, - ACTIONS(4141), 1, + [170731] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(4363), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7242), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170744] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9354), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170757] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3071), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [122663] = 4, - ACTIONS(4141), 1, + [170770] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7244), 1, + ACTIONS(9356), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122676] = 4, - ACTIONS(4141), 1, + [170783] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(4303), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170796] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9358), 1, + sym__concat, + ACTIONS(5570), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170807] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9360), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170820] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7246), 1, + ACTIONS(9356), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122689] = 4, - ACTIONS(4141), 1, + [170833] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(871), 1, + anon_sym_RBRACK, + ACTIONS(9362), 1, sym__concat, - ACTIONS(7248), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3781), 1, aux_sym_concatenation_repeat1, - [122702] = 4, - ACTIONS(4141), 1, + [170846] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7250), 1, + ACTIONS(9364), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122715] = 4, - ACTIONS(4141), 1, + [170859] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9366), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170870] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7252), 1, + ACTIONS(9368), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122728] = 4, - ACTIONS(4141), 1, + [170883] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7254), 1, + ACTIONS(9370), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122741] = 3, - ACTIONS(4141), 1, + [170896] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, - anon_sym_LBRACK, - ACTIONS(7258), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122752] = 4, - ACTIONS(4141), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9360), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [170909] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7260), 1, + ACTIONS(9344), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122765] = 4, - ACTIONS(4141), 1, + [170922] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7262), 1, + ACTIONS(9368), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122778] = 4, - ACTIONS(4141), 1, + [170935] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7264), 1, + ACTIONS(5045), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [122791] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [170948] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9092), 1, + anon_sym_RPAREN, + STATE(3829), 1, + aux_sym_case_item_repeat1, + [170961] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9370), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [170974] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7266), 1, + ACTIONS(9372), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122804] = 4, - ACTIONS(4141), 1, + [170987] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9374), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [170998] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7268), 1, + ACTIONS(9372), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122817] = 4, - ACTIONS(4141), 1, + [171011] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7270), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171024] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3673), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [122830] = 4, - ACTIONS(4141), 1, + [171037] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7272), 1, + ACTIONS(9376), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122843] = 4, - ACTIONS(4141), 1, + [171050] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7274), 1, + ACTIONS(9378), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122856] = 4, - ACTIONS(4141), 1, + [171063] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7276), 1, + ACTIONS(9376), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122869] = 4, - ACTIONS(4141), 1, + [171076] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9380), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [171089] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9382), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [171102] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9384), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [171115] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(3557), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7278), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171128] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9386), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9176), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [171139] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9388), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [171152] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9378), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122882] = 4, - ACTIONS(4141), 1, + [171165] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7280), 1, + ACTIONS(9390), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122895] = 4, - ACTIONS(4141), 1, + [171178] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7282), 1, + ACTIONS(9364), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122908] = 4, - ACTIONS(4141), 1, + [171191] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7284), 1, + ACTIONS(9390), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122921] = 4, - ACTIONS(4141), 1, + [171204] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(4407), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7286), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171217] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9392), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [122934] = 4, - ACTIONS(4141), 1, + [171230] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(4579), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171243] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7288), 1, + ACTIONS(9392), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [122947] = 4, - ACTIONS(4141), 1, + [171256] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(2221), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7290), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171269] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9394), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3673), 1, + aux_sym__literal_repeat1, + [171282] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4771), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [122960] = 3, - ACTIONS(4141), 1, + [171295] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, - anon_sym_LBRACK, - ACTIONS(7292), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122971] = 4, - ACTIONS(1345), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9394), 1, anon_sym_RBRACE, - ACTIONS(4141), 1, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [171308] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7294), 1, - sym__special_character, - STATE(3099), 1, - aux_sym__literal_repeat1, - [122984] = 3, - ACTIONS(4141), 1, + ACTIONS(2955), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171321] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9396), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [171334] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(9398), 1, anon_sym_SEMI_SEMI, - ACTIONS(7163), 2, + ACTIONS(9202), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [122995] = 4, - ACTIONS(4141), 1, + [171345] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7299), 1, + ACTIONS(9400), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123008] = 4, - ACTIONS(1251), 1, - anon_sym_RBRACK, - ACTIONS(4141), 1, + [171358] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(865), 1, + anon_sym_RBRACK, + ACTIONS(9402), 1, sym__concat, - STATE(2191), 1, + STATE(3781), 1, aux_sym_concatenation_repeat1, - [123021] = 4, - ACTIONS(4141), 1, + [171371] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7303), 1, + ACTIONS(9396), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, + aux_sym__literal_repeat1, + [171384] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9404), 1, + anon_sym_RBRACE, + STATE(3673), 1, aux_sym__literal_repeat1, - [123034] = 4, - ACTIONS(4141), 1, + [171397] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4389), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171410] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7305), 1, + ACTIONS(9404), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [171423] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5001), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123047] = 4, - ACTIONS(4141), 1, + [171436] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9406), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [171449] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7307), 1, + ACTIONS(9408), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123060] = 4, - ACTIONS(4141), 1, + [171462] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9240), 1, + anon_sym_RBRACK, + ACTIONS(9410), 1, + sym__concat, + STATE(3693), 1, + aux_sym_concatenation_repeat1, + [171475] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7309), 1, + ACTIONS(9400), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123073] = 4, - ACTIONS(4141), 1, + [171488] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7311), 1, + ACTIONS(9406), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123086] = 4, - ACTIONS(4141), 1, + [171501] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(2897), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7313), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171514] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4941), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123099] = 4, - ACTIONS(4141), 1, + [171527] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7315), 1, + ACTIONS(9412), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123112] = 4, - ACTIONS(4141), 1, + [171540] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7317), 1, + ACTIONS(9412), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123125] = 4, - ACTIONS(4141), 1, + [171553] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9414), 1, + anon_sym_RBRACK, + ACTIONS(9416), 1, + sym__concat, + STATE(3734), 1, + aux_sym_concatenation_repeat1, + [171566] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7319), 1, + ACTIONS(9408), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123138] = 3, - ACTIONS(4141), 1, + [171579] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7175), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [123149] = 4, - ACTIONS(4141), 1, + ACTIONS(881), 1, + anon_sym_RBRACE, + ACTIONS(9418), 1, + sym__concat, + STATE(3751), 1, + aux_sym_concatenation_repeat1, + [171592] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9421), 1, + sym__concat, + ACTIONS(5576), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171603] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(3731), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171616] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7323), 1, + ACTIONS(9423), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123162] = 4, - ACTIONS(4141), 1, + [171629] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9106), 1, + anon_sym_RPAREN, + STATE(3714), 1, + aux_sym_case_item_repeat1, + [171642] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7325), 1, + ACTIONS(9423), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123175] = 4, - ACTIONS(4141), 1, + [171655] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9425), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [171668] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7327), 1, + ACTIONS(9309), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, + aux_sym__literal_repeat1, + [171681] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9427), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171692] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9429), 1, + anon_sym_RBRACE, + STATE(3673), 1, aux_sym__literal_repeat1, - [123188] = 4, - ACTIONS(4141), 1, + [171705] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(4163), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7329), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171718] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3319), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123201] = 4, - ACTIONS(4141), 1, + [171731] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7331), 1, + ACTIONS(9429), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123214] = 4, - ACTIONS(4141), 1, + [171744] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9431), 1, + sym__concat, + ACTIONS(5555), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [171755] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4949), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171768] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7333), 1, + ACTIONS(9433), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123227] = 4, - ACTIONS(4141), 1, + [171781] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171794] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7335), 1, + ACTIONS(9435), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123240] = 4, - ACTIONS(4141), 1, + [171807] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7337), 1, + ACTIONS(9437), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123253] = 4, - ACTIONS(4141), 1, + [171820] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7339), 1, + ACTIONS(9435), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123266] = 4, - ACTIONS(4141), 1, + [171833] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(4911), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171846] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9433), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [171859] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2839), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171872] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9439), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [171885] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9232), 1, + anon_sym_SEMI_AMP, + ACTIONS(9234), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9441), 1, + anon_sym_SEMI_SEMI, + [171898] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9295), 1, + anon_sym_RBRACE, + ACTIONS(9303), 1, + sym__special_character, + STATE(3673), 1, + aux_sym__literal_repeat1, + [171911] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7341), 1, + ACTIONS(9439), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123279] = 4, - ACTIONS(4141), 1, + [171924] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(871), 1, + anon_sym_RBRACE, + ACTIONS(9443), 1, sym__concat, - ACTIONS(7343), 1, + STATE(3751), 1, + aux_sym_concatenation_repeat1, + [171937] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4686), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123292] = 4, - ACTIONS(4141), 1, + [171950] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(865), 1, + anon_sym_RBRACE, + ACTIONS(9445), 1, + sym__concat, + STATE(3751), 1, + aux_sym_concatenation_repeat1, + [171963] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(881), 1, + anon_sym_RBRACK, + ACTIONS(9447), 1, + sym__concat, + STATE(3781), 1, + aux_sym_concatenation_repeat1, + [171976] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4049), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [171989] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7345), 1, + ACTIONS(9450), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123305] = 4, - ACTIONS(4141), 1, + [172002] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9452), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172015] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9450), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172028] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7347), 1, + ACTIONS(9454), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123318] = 4, - ACTIONS(4141), 1, + [172041] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7349), 1, + ACTIONS(9456), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123331] = 4, - ACTIONS(4141), 1, + [172054] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9348), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172067] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9289), 1, + anon_sym_SEMI_AMP, + ACTIONS(9291), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9458), 1, + anon_sym_SEMI_SEMI, + [172080] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9460), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172093] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9452), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172106] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7351), 1, + ACTIONS(9460), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123344] = 4, - ACTIONS(4141), 1, + [172119] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(2781), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7353), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172132] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9254), 1, + anon_sym_SEMI_AMP, + ACTIONS(9256), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9462), 1, + anon_sym_SEMI_SEMI, + [172145] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4501), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123357] = 3, - ACTIONS(4141), 1, + [172158] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(9305), 1, anon_sym_LBRACK, - ACTIONS(7355), 2, + ACTIONS(9464), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123368] = 4, - ACTIONS(4141), 1, + [172169] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9194), 1, + anon_sym_SEMI_AMP, + ACTIONS(9196), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9466), 1, + anon_sym_SEMI_SEMI, + [172182] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172195] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9468), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172208] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9456), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172221] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9468), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172234] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9470), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9218), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [172245] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9472), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172258] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7357), 1, + ACTIONS(9437), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123381] = 4, - ACTIONS(4141), 1, + [172271] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7359), 1, + ACTIONS(9472), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123394] = 4, - ACTIONS(4141), 1, + [172284] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7361), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123407] = 4, - ACTIONS(1257), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7363), 1, + ACTIONS(9258), 1, sym__concat, - STATE(3133), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123420] = 4, - ACTIONS(4141), 1, + [172297] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7366), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [123433] = 4, - ACTIONS(4141), 1, + ACTIONS(9274), 1, + anon_sym_SEMI_AMP, + ACTIONS(9276), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9474), 1, + anon_sym_SEMI_SEMI, + [172310] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7368), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123446] = 4, - ACTIONS(4141), 1, + [172323] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7370), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [123459] = 4, - ACTIONS(4141), 1, + ACTIONS(9182), 1, + anon_sym_SEMI_AMP, + ACTIONS(9184), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9478), 1, + anon_sym_SEMI_SEMI, + [172336] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [123472] = 4, - ACTIONS(4141), 1, + ACTIONS(9248), 1, + anon_sym_SEMI_AMP, + ACTIONS(9250), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9480), 1, + anon_sym_SEMI_SEMI, + [172349] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7374), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123485] = 4, - ACTIONS(4141), 1, + [172362] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7376), 1, + ACTIONS(4218), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123498] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172375] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9482), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172388] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2364), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172401] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7378), 1, + ACTIONS(9482), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123511] = 3, - ACTIONS(4141), 1, + [172414] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(2721), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172427] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9484), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172440] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9305), 1, anon_sym_LBRACK, - ACTIONS(7380), 2, + ACTIONS(9486), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123522] = 4, - ACTIONS(4141), 1, + [172451] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7382), 1, + ACTIONS(9484), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123535] = 4, - ACTIONS(4141), 1, + [172464] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7384), 1, + ACTIONS(4335), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123548] = 4, - ACTIONS(4141), 1, + [172477] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7386), 1, - anon_sym_RBRACK, - ACTIONS(7388), 1, + ACTIONS(9090), 1, + anon_sym_PIPE, + ACTIONS(9488), 1, + anon_sym_RPAREN, + STATE(3862), 1, + aux_sym_case_item_repeat1, + [172490] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - STATE(3102), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123561] = 4, - ACTIONS(4141), 1, + [172503] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7390), 1, + ACTIONS(9490), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123574] = 4, - ACTIONS(4141), 1, + [172516] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7392), 1, + ACTIONS(9492), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123587] = 4, - ACTIONS(4141), 1, + [172529] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7394), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [123600] = 4, - ACTIONS(1251), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9494), 1, anon_sym_RBRACE, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7396), 1, - sym__concat, - STATE(3133), 1, - aux_sym_concatenation_repeat1, - [123613] = 4, - ACTIONS(4141), 1, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172542] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7398), 1, + ACTIONS(9490), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123626] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7400), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [123639] = 4, - ACTIONS(4141), 1, + [172555] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7402), 1, + ACTIONS(4861), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123652] = 4, - ACTIONS(4141), 1, + [172568] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7404), 1, + ACTIONS(9496), 1, anon_sym_RPAREN, - STATE(3198), 1, + STATE(3862), 1, aux_sym_case_item_repeat1, - [123665] = 4, - ACTIONS(4141), 1, + [172581] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7406), 1, + ACTIONS(9498), 1, anon_sym_RPAREN, - STATE(3198), 1, + STATE(3862), 1, aux_sym_case_item_repeat1, - [123678] = 4, - ACTIONS(4141), 1, + [172594] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7408), 1, + ACTIONS(9500), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123691] = 4, - ACTIONS(4141), 1, + [172607] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7410), 1, + ACTIONS(9494), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123704] = 4, - ACTIONS(4141), 1, + [172620] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7412), 1, + ACTIONS(4139), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123717] = 4, - ACTIONS(4141), 1, + [172633] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7414), 1, + ACTIONS(9492), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123730] = 4, - ACTIONS(4141), 1, + [172646] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7416), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9500), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123743] = 4, - ACTIONS(4141), 1, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172659] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172672] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(9502), 1, anon_sym_RPAREN, - STATE(3136), 1, + STATE(3862), 1, aux_sym_case_item_repeat1, - [123756] = 3, - ACTIONS(4141), 1, + [172685] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(9210), 1, + anon_sym_SEMI_AMP, + ACTIONS(9212), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9504), 1, + anon_sym_SEMI_SEMI, + [172698] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9305), 1, anon_sym_LBRACK, - ACTIONS(7418), 2, + ACTIONS(9506), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123767] = 4, - ACTIONS(4141), 1, + [172709] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7420), 1, + ACTIONS(9454), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123780] = 4, - ACTIONS(4141), 1, + [172722] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7422), 1, + ACTIONS(3371), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123793] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172735] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7424), 1, + ACTIONS(3285), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123806] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7426), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123819] = 4, - ACTIONS(4141), 1, + [172748] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7428), 1, + ACTIONS(2426), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123832] = 4, - ACTIONS(4141), 1, + [172761] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7430), 1, + ACTIONS(3853), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123845] = 4, - ACTIONS(4141), 1, + [172774] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7432), 1, + ACTIONS(9508), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123858] = 3, - ACTIONS(4141), 1, + [172787] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7436), 1, - sym__concat, - ACTIONS(7434), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123869] = 4, - ACTIONS(4141), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9510), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172800] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7438), 1, + ACTIONS(9508), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123882] = 4, - ACTIONS(4141), 1, + [172813] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7440), 1, + ACTIONS(9510), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123895] = 3, - ACTIONS(4141), 1, + [172826] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9512), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [172839] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7442), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123906] = 4, - ACTIONS(4141), 1, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172852] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7446), 1, + ACTIONS(9512), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [123919] = 4, - ACTIONS(4141), 1, + [172865] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7448), 1, + ACTIONS(4831), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123932] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [172878] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7450), 1, + ACTIONS(9293), 1, anon_sym_RBRACE, - STATE(3099), 1, + ACTIONS(9303), 1, + sym__special_character, + STATE(3673), 1, aux_sym__literal_repeat1, - [123945] = 4, - ACTIONS(4141), 1, + [172891] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7452), 1, + ACTIONS(9514), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123958] = 4, - ACTIONS(4141), 1, + [172904] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7454), 1, + ACTIONS(9516), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [123971] = 4, - ACTIONS(4141), 1, + [172917] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7456), 1, + ACTIONS(4672), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [123984] = 4, - ACTIONS(4141), 1, + [172930] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7458), 1, + ACTIONS(9258), 1, + sym__concat, + ACTIONS(9514), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [123997] = 4, - ACTIONS(4141), 1, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [172943] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7460), 1, + ACTIONS(4189), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124010] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7103), 1, - anon_sym_SEMI_AMP, - ACTIONS(7105), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7462), 1, - anon_sym_SEMI_SEMI, - [124023] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7464), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [124036] = 4, - ACTIONS(4141), 1, + [172956] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7466), 1, + ACTIONS(9518), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124049] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7256), 1, - anon_sym_LBRACK, - ACTIONS(7468), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [124060] = 4, - ACTIONS(4141), 1, + [172969] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7470), 1, + ACTIONS(9520), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124073] = 4, - ACTIONS(4141), 1, + [172982] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7472), 1, + ACTIONS(9518), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124086] = 4, - ACTIONS(4141), 1, + [172995] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7474), 1, + ACTIONS(2605), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124099] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7135), 1, - anon_sym_SEMI_AMP, - ACTIONS(7137), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7476), 1, - anon_sym_SEMI_SEMI, - [124112] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7478), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [124125] = 4, - ACTIONS(4141), 1, + [173008] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(9522), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(9525), 1, anon_sym_RPAREN, - STATE(3152), 1, + STATE(3862), 1, aux_sym_case_item_repeat1, - [124138] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7129), 1, - anon_sym_SEMI_AMP, - ACTIONS(7131), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7480), 1, - anon_sym_SEMI_SEMI, - [124151] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7482), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124164] = 4, - ACTIONS(4141), 1, + [173021] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7484), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124177] = 4, - ACTIONS(4141), 1, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9527), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173032] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7486), 1, + ACTIONS(2038), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [124190] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7488), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [124203] = 3, - ACTIONS(4141), 1, + [173045] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7492), 1, - sym__concat, - ACTIONS(7490), 2, + ACTIONS(9305), 1, + anon_sym_LBRACK, + ACTIONS(9529), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [124214] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7081), 1, - anon_sym_SEMI_AMP, - ACTIONS(7083), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7494), 1, - anon_sym_SEMI_SEMI, - [124227] = 3, - ACTIONS(4141), 1, + [173056] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7498), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7496), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [124238] = 4, - ACTIONS(4141), 1, + ACTIONS(9516), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [173069] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_PIPE, - ACTIONS(7503), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124251] = 4, - ACTIONS(4141), 1, + ACTIONS(9303), 1, + sym__special_character, + ACTIONS(9520), 1, + anon_sym_RBRACE, + STATE(3673), 1, + aux_sym__literal_repeat1, + [173082] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7505), 1, + ACTIONS(9531), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124264] = 4, - ACTIONS(4141), 1, + [173095] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7507), 1, + ACTIONS(9533), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124277] = 4, - ACTIONS(4141), 1, + [173108] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(3499), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [173121] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7509), 1, + ACTIONS(9531), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124290] = 4, - ACTIONS(4141), 1, + [173134] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7511), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124303] = 4, - ACTIONS(4141), 1, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [173147] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7513), 1, + ACTIONS(9533), 1, + anon_sym_RBRACE, + STATE(3778), 1, + aux_sym_concatenation_repeat1, + [173160] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4767), 1, anon_sym_RBRACE, - STATE(3148), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [124316] = 4, - ACTIONS(4141), 1, + [173173] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(9090), 1, anon_sym_PIPE, - ACTIONS(7515), 1, + ACTIONS(9170), 1, anon_sym_RPAREN, - STATE(3198), 1, + STATE(3648), 1, aux_sym_case_item_repeat1, - [124329] = 4, - ACTIONS(4141), 1, + [173186] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7517), 1, + ACTIONS(9535), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124342] = 4, - ACTIONS(4141), 1, + [173199] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(875), 1, sym__special_character, - ACTIONS(7519), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124355] = 4, - ACTIONS(4141), 1, + ACTIONS(877), 2, + sym__concat, + anon_sym_RBRACK, + [173210] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7521), 1, + ACTIONS(2489), 1, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124368] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7523), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124381] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7256), 1, - anon_sym_LBRACK, - ACTIONS(7525), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [124392] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(6972), 1, - anon_sym_RPAREN, - STATE(3229), 1, - aux_sym_case_item_repeat1, - [124405] = 4, - ACTIONS(4141), 1, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [173223] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7527), 1, + ACTIONS(9535), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124418] = 4, - ACTIONS(4141), 1, + [173236] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7089), 1, - anon_sym_SEMI_AMP, - ACTIONS(7091), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7529), 1, - anon_sym_SEMI_SEMI, - [124431] = 4, - ACTIONS(4141), 1, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [173249] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_RBRACE, + ACTIONS(9258), 1, + sym__concat, + STATE(3780), 1, + aux_sym_concatenation_repeat1, + [173262] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7531), 1, + ACTIONS(9537), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124444] = 4, - ACTIONS(4141), 1, + [173275] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7533), 1, + ACTIONS(9539), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124457] = 4, - ACTIONS(4141), 1, + [173288] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7535), 1, + ACTIONS(9537), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124470] = 4, - ACTIONS(4141), 1, + [173301] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7537), 1, + ACTIONS(9541), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124483] = 4, - ACTIONS(4141), 1, + [173314] = 4, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9260), 1, + anon_sym_RBRACK, + ACTIONS(9543), 1, + sym__concat, + STATE(3693), 1, + aux_sym_concatenation_repeat1, + [173327] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7539), 1, + ACTIONS(9541), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124496] = 4, - ACTIONS(4141), 1, + [173340] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7541), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124509] = 4, - ACTIONS(4141), 1, + ACTIONS(9545), 1, + anon_sym_RBRACK, + ACTIONS(9547), 1, + sym__concat, + STATE(3734), 1, + aux_sym_concatenation_repeat1, + [173353] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7543), 1, + ACTIONS(9549), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124522] = 4, - ACTIONS(4141), 1, + [173366] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7545), 1, + ACTIONS(9549), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3778), 1, aux_sym_concatenation_repeat1, - [124535] = 4, - ACTIONS(4141), 1, + [173379] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, - sym__concat, - ACTIONS(7547), 1, + ACTIONS(4722), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [124548] = 4, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7169), 1, + ACTIONS(9258), 1, sym__concat, - ACTIONS(7549), 1, - anon_sym_RBRACE, - STATE(3148), 1, + STATE(3780), 1, aux_sym_concatenation_repeat1, - [124561] = 4, - ACTIONS(4141), 1, + [173392] = 4, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(9303), 1, sym__special_character, - ACTIONS(7551), 1, + ACTIONS(9539), 1, anon_sym_RBRACE, - STATE(3099), 1, + STATE(3673), 1, aux_sym__literal_repeat1, - [124574] = 4, - ACTIONS(4141), 1, + [173405] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124587] = 3, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(4141), 1, + ACTIONS(881), 2, + sym__concat, + anon_sym_RBRACK, + [173413] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9553), 1, + anon_sym_EQ, + [173423] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9555), 1, + anon_sym_EQ, + [173433] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(908), 2, sym__concat, anon_sym_RBRACK, - [124598] = 3, - ACTIONS(4141), 1, + [173441] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7143), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [124609] = 4, - ACTIONS(4141), 1, + ACTIONS(970), 2, + sym__concat, + anon_sym_RBRACE, + [173449] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(974), 2, sym__concat, - ACTIONS(7557), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [124622] = 3, - ACTIONS(4141), 1, + [173457] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, - anon_sym_LBRACK, - ACTIONS(7559), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [124633] = 4, - ACTIONS(4141), 1, + ACTIONS(996), 2, + sym__concat, + anon_sym_RBRACK, + [173465] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7561), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124646] = 4, - ACTIONS(4141), 1, + ACTIONS(1000), 2, + sym__concat, + anon_sym_RBRACK, + [173473] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7563), 1, + ACTIONS(978), 2, + sym__concat, anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124659] = 4, - ACTIONS(4141), 1, + [173481] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7230), 1, - sym__special_character, - ACTIONS(7565), 1, - anon_sym_RBRACE, - STATE(3099), 1, - aux_sym__literal_repeat1, - [124672] = 3, - ACTIONS(4141), 1, + ACTIONS(990), 2, + sym__concat, + anon_sym_RBRACK, + [173489] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7567), 2, + ACTIONS(9557), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124683] = 4, - ACTIONS(4141), 1, + [173499] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7095), 1, - anon_sym_SEMI_AMP, - ACTIONS(7097), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7569), 1, - anon_sym_SEMI_SEMI, - [124696] = 4, - ACTIONS(4141), 1, + ACTIONS(9529), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [173507] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(9545), 1, anon_sym_RBRACK, - ACTIONS(7573), 1, + ACTIONS(9559), 1, sym__concat, - STATE(3102), 1, - aux_sym_concatenation_repeat1, - [124709] = 4, - ACTIONS(4141), 1, + [173517] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7003), 1, - anon_sym_RPAREN, - STATE(3204), 1, - aux_sym_case_item_repeat1, - [124722] = 4, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9561), 1, + anon_sym_EQ, + [173527] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(986), 2, sym__concat, - ACTIONS(7575), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [124735] = 4, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [173535] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_PIPE, - ACTIONS(7577), 1, - anon_sym_RPAREN, - STATE(3198), 1, - aux_sym_case_item_repeat1, - [124748] = 4, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9563), 1, + anon_sym_EQ, + [173545] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(982), 2, sym__concat, - ACTIONS(7579), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym_concatenation_repeat1, - [124761] = 2, - ACTIONS(4141), 1, + [173553] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1281), 2, - sym__concat, - anon_sym_RBRACE, - [124769] = 2, - ACTIONS(4141), 1, + ACTIONS(9071), 1, + anon_sym_do, + STATE(2592), 1, + sym_do_group, + [173563] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9565), 1, + anon_sym_EQ, + [173573] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9567), 1, + anon_sym_EQ, + [173583] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9569), 1, + anon_sym_EQ, + [173593] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1382), 2, + ACTIONS(982), 2, sym__concat, - anon_sym_RBRACE, - [124777] = 3, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [173601] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7583), 1, + ACTIONS(9571), 1, anon_sym_EQ, - [124787] = 2, - ACTIONS(4141), 1, + [173611] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7585), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9573), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124795] = 3, - ACTIONS(4141), 1, + [173621] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7587), 1, + ACTIONS(9575), 1, anon_sym_EQ, - [124805] = 2, - ACTIONS(4141), 1, + [173631] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7589), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9577), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124813] = 3, - ACTIONS(4141), 1, + [173641] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(986), 2, + sym__concat, + anon_sym_RBRACE, + [173649] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7591), 1, + ACTIONS(9579), 1, anon_sym_EQ, - [124823] = 2, - ACTIONS(4141), 1, + [173659] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(990), 2, + sym__concat, + anon_sym_RBRACE, + [173667] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7525), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9581), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124831] = 3, - ACTIONS(4141), 1, + [173677] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(1004), 2, + sym__concat, anon_sym_RBRACK, - ACTIONS(7593), 1, + [173685] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(978), 2, sym__concat, - [124841] = 2, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [173693] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9583), 1, + anon_sym_EQ, + [173703] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7559), 2, + ACTIONS(9506), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [124849] = 3, - ACTIONS(4141), 1, + [173711] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(962), 2, + sym__concat, + anon_sym_RBRACE, + [173719] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(996), 2, + sym__concat, + anon_sym_RBRACE, + [173727] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9188), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [173735] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9585), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9587), 1, + aux_sym__simple_variable_name_token1, + [173745] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7595), 1, + ACTIONS(9589), 1, anon_sym_EQ, - [124859] = 3, - ACTIONS(4141), 1, + [173755] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1000), 2, + sym__concat, + anon_sym_RBRACE, + [173763] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7597), 1, + ACTIONS(9591), 1, anon_sym_EQ, - [124869] = 3, - ACTIONS(4141), 1, + [173773] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7599), 1, + ACTIONS(9593), 1, anon_sym_EQ, - [124879] = 3, - ACTIONS(4141), 1, + [173783] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7601), 1, + ACTIONS(9595), 1, anon_sym_EQ, - [124889] = 3, - ACTIONS(4141), 1, + [173793] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1004), 2, + sym__concat, + anon_sym_RBRACE, + [173801] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(904), 2, + sym__concat, + anon_sym_RBRACE, + [173809] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7603), 1, + ACTIONS(9597), 1, anon_sym_EQ, - [124899] = 3, - ACTIONS(4141), 1, + [173819] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7605), 1, + ACTIONS(9599), 1, + anon_sym_EQ, + [173829] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9464), 2, anon_sym_EQ, - [124909] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [173837] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7607), 1, + ACTIONS(9601), 1, anon_sym_EQ, - [124919] = 3, - ACTIONS(4141), 1, + [173847] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(904), 2, + sym__concat, + anon_sym_RBRACK, + [173855] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9071), 1, + anon_sym_do, + STATE(2625), 1, + sym_do_group, + [173865] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7609), 1, + ACTIONS(9603), 1, anon_sym_EQ, - [124929] = 3, - ACTIONS(4141), 1, + [173875] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(892), 2, + sym__concat, + anon_sym_RBRACK, + [173883] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7611), 1, + ACTIONS(9605), 1, anon_sym_EQ, - [124939] = 2, - ACTIONS(4141), 1, + [173893] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7224), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [124947] = 3, - ACTIONS(4141), 1, + ACTIONS(9067), 1, + anon_sym_do, + STATE(2959), 1, + sym_do_group, + [173903] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7613), 1, + ACTIONS(9607), 1, anon_sym_EQ, - [124957] = 2, - ACTIONS(4141), 1, + [173913] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7468), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9609), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124965] = 3, - ACTIONS(4141), 1, + [173923] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7615), 1, + ACTIONS(9611), 1, anon_sym_EQ, - [124975] = 2, - ACTIONS(4141), 1, + [173933] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7496), 2, + ACTIONS(9486), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [124983] = 2, - ACTIONS(4141), 1, + [173941] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7490), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9613), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [124991] = 3, - ACTIONS(4141), 1, + [173951] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7617), 1, + ACTIONS(9615), 1, anon_sym_EQ, - [125001] = 3, - ACTIONS(4141), 1, + [173961] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(900), 2, + sym__concat, + anon_sym_RBRACK, + [173969] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7619), 1, + ACTIONS(9617), 1, anon_sym_EQ, - [125011] = 3, - ACTIONS(4141), 1, + [173979] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2197), 1, - sym_do_group, - [125021] = 3, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9619), 1, + anon_sym_EQ, + [173989] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(939), 2, + sym__concat, + anon_sym_RBRACE, + [173997] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(974), 2, + sym__concat, + anon_sym_RBRACK, + [174005] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7621), 1, + ACTIONS(9621), 1, anon_sym_EQ, - [125031] = 3, - ACTIONS(4141), 1, + [174015] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7623), 1, - anon_sym_EQ, - [125041] = 3, - ACTIONS(4141), 1, + ACTIONS(931), 2, + sym__concat, + anon_sym_RBRACE, + [174023] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7625), 1, + ACTIONS(9623), 1, anon_sym_EQ, - [125051] = 3, - ACTIONS(4141), 1, + [174033] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7627), 1, + ACTIONS(9427), 2, anon_sym_EQ, - [125061] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174041] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7629), 1, + ACTIONS(5584), 2, anon_sym_EQ, - [125071] = 2, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174049] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(896), 2, + sym__concat, + anon_sym_RBRACK, + [174057] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7418), 2, + ACTIONS(5588), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [125079] = 3, - ACTIONS(4141), 1, + [174065] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7631), 1, - anon_sym_EQ, - [125089] = 3, - ACTIONS(4141), 1, + ACTIONS(888), 2, + sym__concat, + anon_sym_RBRACE, + [174073] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7633), 1, + ACTIONS(9625), 1, anon_sym_EQ, - [125099] = 3, - ACTIONS(4141), 1, + [174083] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7635), 1, - anon_sym_EQ, - [125109] = 3, - ACTIONS(4141), 1, + ACTIONS(970), 2, + sym__concat, + anon_sym_RBRACK, + [174091] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6981), 1, + ACTIONS(9083), 1, anon_sym_do, - STATE(2220), 1, + STATE(2800), 1, sym_do_group, - [125119] = 3, - ACTIONS(4141), 1, + [174101] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7637), 1, - anon_sym_EQ, - [125129] = 2, - ACTIONS(4141), 1, + ACTIONS(966), 2, + sym__concat, + anon_sym_RBRACK, + [174109] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(881), 2, + sym__concat, + anon_sym_RBRACE, + [174117] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1277), 2, + ACTIONS(896), 2, sym__concat, anon_sym_RBRACE, - [125137] = 3, - ACTIONS(4141), 1, + [174125] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(962), 2, + sym__concat, + anon_sym_RBRACK, + [174133] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(939), 2, + sym__concat, + anon_sym_RBRACK, + [174141] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7639), 1, + ACTIONS(9627), 1, anon_sym_EQ, - [125147] = 3, - ACTIONS(4141), 1, + [174151] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7641), 1, + ACTIONS(9629), 1, anon_sym_EQ, - [125157] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7015), 1, - anon_sym_do, - STATE(1989), 1, - sym_do_group, - [125167] = 3, - ACTIONS(4141), 1, + [174161] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7643), 1, + ACTIONS(5570), 2, anon_sym_EQ, - [125177] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174169] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(900), 2, + sym__concat, + anon_sym_RBRACE, + [174177] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(892), 2, + sym__concat, + anon_sym_RBRACE, + [174185] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7645), 1, + ACTIONS(9631), 1, anon_sym_EQ, - [125187] = 3, - ACTIONS(4141), 1, + [174195] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7647), 1, + ACTIONS(9633), 1, anon_sym_EQ, - [125197] = 3, - ACTIONS(4141), 1, + [174205] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7649), 1, + ACTIONS(9635), 1, anon_sym_EQ, - [125207] = 2, - ACTIONS(4141), 1, + [174215] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1324), 2, + ACTIONS(9414), 1, + anon_sym_RBRACK, + ACTIONS(9637), 1, sym__concat, - anon_sym_RBRACE, - [125215] = 3, - ACTIONS(4141), 1, + [174225] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7651), 1, - anon_sym_EQ, - [125225] = 3, - ACTIONS(4141), 1, + ACTIONS(908), 2, + sym__concat, + anon_sym_RBRACE, + [174233] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7653), 1, + ACTIONS(9639), 1, anon_sym_EQ, - [125235] = 3, - ACTIONS(4141), 1, + [174243] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7655), 1, + ACTIONS(9641), 1, anon_sym_EQ, - [125245] = 3, - ACTIONS(4141), 1, + [174253] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9643), 1, anon_sym_EQ, - [125255] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6981), 1, - anon_sym_do, - STATE(2110), 1, - sym_do_group, - [125265] = 3, - ACTIONS(4141), 1, + [174263] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7659), 1, + ACTIONS(9645), 1, anon_sym_EQ, - [125275] = 3, - ACTIONS(4141), 1, + [174273] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7386), 1, + ACTIONS(888), 2, + sym__concat, anon_sym_RBRACK, - ACTIONS(7661), 1, + [174281] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(958), 2, sym__concat, - [125285] = 3, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174289] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(9647), 1, anon_sym_EQ, - [125295] = 3, - ACTIONS(4141), 1, + [174299] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, + ACTIONS(9649), 1, + anon_sym_EQ, + [174309] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9374), 2, anon_sym_EQ, - [125305] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174317] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(9067), 1, anon_sym_do, - STATE(2061), 1, + STATE(2916), 1, sym_do_group, - [125315] = 3, - ACTIONS(4141), 1, + [174327] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7667), 1, - anon_sym_EQ, - [125325] = 3, - ACTIONS(4141), 1, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2768), 1, + sym_do_group, + [174337] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7669), 1, + ACTIONS(9651), 1, anon_sym_EQ, - [125335] = 2, - ACTIONS(4141), 1, + [174347] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(935), 2, sym__concat, - anon_sym_RBRACE, - [125343] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7567), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [125351] = 3, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174355] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, + ACTIONS(9653), 1, anon_sym_EQ, - [125361] = 2, - ACTIONS(4141), 1, + [174365] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1257), 2, + ACTIONS(966), 2, sym__concat, anon_sym_RBRACE, - [125369] = 2, - ACTIONS(4141), 1, + [174373] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7673), 2, - anon_sym_do, - anon_sym_then, - [125377] = 2, - ACTIONS(4141), 1, + ACTIONS(912), 2, + sym__concat, + anon_sym_RBRACE, + [174381] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7380), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [125385] = 3, - ACTIONS(4141), 1, + ACTIONS(916), 2, + sym__concat, + anon_sym_RBRACE, + [174389] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7675), 1, + ACTIONS(9655), 1, anon_sym_EQ, - [125395] = 3, - ACTIONS(4141), 1, + [174399] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7677), 1, + ACTIONS(9657), 1, anon_sym_EQ, - [125405] = 2, - ACTIONS(4141), 1, + [174409] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1285), 2, - sym__concat, - anon_sym_RBRACE, - [125413] = 3, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9659), 1, + anon_sym_EQ, + [174419] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7679), 1, + ACTIONS(9661), 1, anon_sym_EQ, - [125423] = 3, - ACTIONS(4141), 1, + [174429] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7681), 1, + ACTIONS(9663), 1, anon_sym_EQ, - [125433] = 2, - ACTIONS(4141), 1, + [174439] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1289), 2, + ACTIONS(920), 2, sym__concat, anon_sym_RBRACE, - [125441] = 2, - ACTIONS(4141), 1, + [174447] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7258), 2, + ACTIONS(875), 1, + sym__special_character, + ACTIONS(877), 1, + anon_sym_RBRACE, + [174457] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9366), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [125449] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1293), 2, - sym__concat, - anon_sym_RBRACE, - [125457] = 3, - ACTIONS(4141), 1, + [174465] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7683), 1, + ACTIONS(9665), 1, anon_sym_EQ, - [125467] = 3, - ACTIONS(4141), 1, + [174475] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7685), 1, + ACTIONS(9083), 1, + anon_sym_do, + STATE(2801), 1, + sym_do_group, + [174485] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(958), 2, + sym__concat, + anon_sym_RBRACE, + [174493] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9527), 2, anon_sym_EQ, - [125477] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174501] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7687), 1, + ACTIONS(9667), 1, anon_sym_EQ, - [125487] = 3, - ACTIONS(4141), 1, + [174511] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7689), 1, + ACTIONS(9669), 1, anon_sym_EQ, - [125497] = 2, - ACTIONS(4141), 1, + [174521] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(935), 2, sym__concat, anon_sym_RBRACE, - [125505] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7015), 1, - anon_sym_do, - STATE(1985), 1, - sym_do_group, - [125515] = 2, - ACTIONS(4141), 1, + [174529] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(954), 2, sym__concat, - anon_sym_RBRACE, - [125523] = 3, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174537] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7691), 1, + ACTIONS(9671), 1, anon_sym_EQ, - [125533] = 3, - ACTIONS(4141), 1, + [174547] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7693), 1, + ACTIONS(9329), 2, anon_sym_EQ, - [125543] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174555] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7695), 1, + ACTIONS(9673), 1, anon_sym_EQ, - [125553] = 3, - ACTIONS(4141), 1, + [174565] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7697), 1, - anon_sym_EQ, - [125563] = 3, - ACTIONS(4141), 1, + ACTIONS(950), 2, + sym__concat, + anon_sym_RBRACK, + [174573] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7699), 1, - anon_sym_EQ, - [125573] = 3, - ACTIONS(4141), 1, + ACTIONS(9675), 2, + anon_sym_do, + anon_sym_then, + [174581] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7701), 1, + ACTIONS(9677), 1, anon_sym_EQ, - [125583] = 3, - ACTIONS(4141), 1, + [174591] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7703), 1, + ACTIONS(9679), 1, anon_sym_EQ, - [125593] = 3, - ACTIONS(4141), 1, + [174601] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(931), 2, + sym__concat, + anon_sym_RBRACK, + [174609] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7705), 1, + ACTIONS(9681), 1, anon_sym_EQ, - [125603] = 3, - ACTIONS(4141), 1, + [174619] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7707), 1, + ACTIONS(9683), 1, anon_sym_EQ, - [125613] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7709), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(7711), 1, - aux_sym__simple_variable_name_token1, - [125623] = 3, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1223), 1, - anon_sym_RBRACE, - ACTIONS(4141), 1, - sym_comment, - [125633] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7713), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(7715), 1, - aux_sym__simple_variable_name_token1, - [125643] = 3, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(6968), 1, - anon_sym_do, - STATE(1896), 1, - sym_do_group, - [125653] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1424), 2, - sym__concat, - anon_sym_RBRACE, - [125661] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1420), 2, - sym__concat, - anon_sym_RBRACE, - [125669] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1412), 2, - sym__concat, - anon_sym_RBRACE, - [125677] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(1408), 2, - sym__concat, - anon_sym_RBRACE, - [125685] = 2, - ACTIONS(4141), 1, + [174629] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1330), 2, + ACTIONS(950), 2, sym__concat, anon_sym_RBRACE, - [125693] = 2, - ACTIONS(4141), 1, + [174637] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1404), 2, - sym__concat, - anon_sym_RBRACE, - [125701] = 2, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9685), 1, + anon_sym_EQ, + [174647] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1400), 2, + ACTIONS(954), 2, sym__concat, anon_sym_RBRACE, - [125709] = 2, - ACTIONS(4141), 1, + [174655] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7292), 2, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9687), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [125717] = 2, - ACTIONS(4141), 1, + [174665] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1396), 2, + ACTIONS(935), 2, sym__concat, anon_sym_RBRACE, - [125725] = 3, - ACTIONS(4141), 1, + [174673] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7717), 1, + ACTIONS(9689), 1, anon_sym_EQ, - [125735] = 3, - ACTIONS(4141), 1, + [174683] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(7721), 1, - aux_sym__simple_variable_name_token1, - [125745] = 2, - ACTIONS(4141), 1, + ACTIONS(9071), 1, + anon_sym_do, + STATE(2652), 1, + sym_do_group, + [174693] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1390), 2, + ACTIONS(935), 2, sym__concat, - anon_sym_RBRACE, - [125753] = 3, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174701] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(6968), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9691), 1, + anon_sym_EQ, + [174711] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym_do, - STATE(1868), 1, + STATE(2933), 1, sym_do_group, - [125763] = 3, - ACTIONS(4141), 1, + [174721] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(912), 2, + sym__concat, + anon_sym_RBRACK, + [174729] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7723), 1, + ACTIONS(9693), 1, anon_sym_EQ, - [125773] = 2, - ACTIONS(4141), 1, + [174739] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(1386), 2, - sym__concat, - anon_sym_RBRACE, - [125781] = 2, - ACTIONS(4141), 1, + ACTIONS(9551), 1, + anon_sym_LBRACK, + ACTIONS(9695), 1, + anon_sym_EQ, + [174749] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7355), 2, + ACTIONS(5549), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [125789] = 3, - ACTIONS(4141), 1, + [174757] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_LBRACK, - ACTIONS(7725), 1, + ACTIONS(9307), 2, anon_sym_EQ, - [125799] = 3, - ACTIONS(4141), 1, + anon_sym_PLUS_EQ, + [174765] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9697), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9699), 1, + aux_sym__simple_variable_name_token1, + [174775] = 3, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9701), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9703), 1, + aux_sym__simple_variable_name_token1, + [174785] = 3, + ACTIONS(59), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(9551), 1, anon_sym_LBRACK, - ACTIONS(7727), 1, + ACTIONS(9705), 1, anon_sym_EQ, - [125809] = 2, - ACTIONS(4141), 1, + [174795] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1370), 2, + ACTIONS(916), 2, sym__concat, - anon_sym_RBRACE, - [125817] = 2, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174803] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(920), 2, sym__concat, - anon_sym_RBRACE, - [125825] = 2, - ACTIONS(4141), 1, + anon_sym_RBRACK, + [174811] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1360), 2, - sym__concat, - anon_sym_RBRACE, - [125833] = 2, - ACTIONS(4141), 1, + ACTIONS(9707), 1, + anon_sym_RPAREN, + [174818] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1356), 2, - sym__concat, - anon_sym_RBRACE, - [125841] = 3, - ACTIONS(4141), 1, + ACTIONS(9709), 1, + anon_sym_esac, + [174825] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6968), 1, - anon_sym_do, - STATE(1837), 1, - sym_do_group, - [125851] = 2, - ACTIONS(4141), 1, + ACTIONS(9711), 1, + anon_sym_RPAREN, + [174832] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(1338), 2, - sym__concat, - anon_sym_RBRACE, - [125859] = 2, - ACTIONS(4141), 1, + ACTIONS(9713), 1, + anon_sym_esac, + [174839] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7729), 1, + ACTIONS(9715), 1, anon_sym_BQUOTE, - [125866] = 2, - ACTIONS(4141), 1, + [174846] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_BQUOTE, - [125873] = 2, - ACTIONS(4141), 1, + ACTIONS(9717), 1, + anon_sym_in, + [174853] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7331), 1, - anon_sym_RBRACE, - [125880] = 2, - ACTIONS(4141), 1, + ACTIONS(6284), 1, + anon_sym_RPAREN, + [174860] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(4672), 1, anon_sym_RBRACE, - [125887] = 2, - ACTIONS(4141), 1, + [174867] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_RBRACE, - [125894] = 2, - ACTIONS(3), 1, + ACTIONS(9719), 1, + anon_sym_in, + [174874] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7733), 1, - sym_word, - [125901] = 2, - ACTIONS(4141), 1, + ACTIONS(9721), 1, + anon_sym_in, + [174881] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_RPAREN, - [125908] = 2, - ACTIONS(4141), 1, + ACTIONS(9723), 1, + anon_sym_in, + [174888] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(1980), 1, + anon_sym_RBRACE, + [174895] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(9725), 1, anon_sym_RPAREN, - [125915] = 2, - ACTIONS(4141), 1, + [174902] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_BQUOTE, - [125922] = 2, - ACTIONS(4141), 1, + ACTIONS(9727), 1, + anon_sym_then, + [174909] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7384), 1, - anon_sym_RBRACE, - [125929] = 2, - ACTIONS(4141), 1, + ACTIONS(9729), 1, + anon_sym_esac, + [174916] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7311), 1, + ACTIONS(4363), 1, anon_sym_RBRACE, - [125936] = 2, - ACTIONS(4141), 1, + [174923] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7741), 1, - anon_sym_RPAREN, - [125943] = 2, - ACTIONS(4141), 1, + ACTIONS(9731), 1, + sym_word, + [174930] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_BQUOTE, - [125950] = 2, - ACTIONS(4141), 1, + ACTIONS(9733), 1, + anon_sym_esac, + [174937] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_RBRACE, - [125957] = 2, - ACTIONS(4141), 1, + ACTIONS(9735), 1, + anon_sym_fi, + [174944] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(6161), 1, anon_sym_RPAREN, - [125964] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7747), 1, - anon_sym_then, - [125971] = 2, - ACTIONS(4141), 1, + [174951] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_RPAREN, - [125978] = 2, - ACTIONS(4141), 1, + ACTIONS(9737), 1, + anon_sym_BQUOTE, + [174958] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(9739), 1, anon_sym_RPAREN, - [125985] = 2, - ACTIONS(4141), 1, + [174965] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7505), 1, + ACTIONS(2221), 1, anon_sym_RBRACE, - [125992] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7753), 1, - anon_sym_RPAREN, - [125999] = 2, - ACTIONS(4141), 1, + [174972] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(4389), 1, anon_sym_RBRACE, - [126006] = 2, - ACTIONS(4141), 1, + [174979] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7755), 1, + ACTIONS(6248), 1, anon_sym_RPAREN, - [126013] = 2, - ACTIONS(4141), 1, + [174986] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_then, - [126020] = 2, - ACTIONS(4141), 1, + ACTIONS(9741), 1, + anon_sym_BQUOTE, + [174993] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(9743), 1, anon_sym_RPAREN, - [126027] = 2, - ACTIONS(4141), 1, + [175000] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7359), 1, + ACTIONS(2293), 1, anon_sym_RBRACE, - [126034] = 2, - ACTIONS(4141), 1, + [175007] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(9745), 1, anon_sym_in, - [126041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7763), 1, - sym_word, - [126048] = 2, - ACTIONS(4141), 1, + [175014] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7765), 1, + ACTIONS(9747), 1, anon_sym_in, - [126055] = 2, - ACTIONS(4141), 1, + [175021] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_BQUOTE, - [126062] = 2, - ACTIONS(4141), 1, + ACTIONS(4335), 1, + anon_sym_RBRACE, + [175028] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7769), 1, + ACTIONS(9749), 1, anon_sym_RPAREN, - [126069] = 2, - ACTIONS(4141), 1, + [175035] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7398), 1, - anon_sym_RBRACE, - [126076] = 2, - ACTIONS(4141), 1, + ACTIONS(9751), 1, + anon_sym_then, + [175042] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7410), 1, + ACTIONS(4049), 1, anon_sym_RBRACE, - [126083] = 2, - ACTIONS(4141), 1, + [175049] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_RBRACE, - [126090] = 2, - ACTIONS(4141), 1, + ACTIONS(6173), 1, + anon_sym_RPAREN, + [175056] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7440), 1, - anon_sym_RBRACE, - [126097] = 2, - ACTIONS(4141), 1, + ACTIONS(9753), 1, + anon_sym_BQUOTE, + [175063] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7771), 1, + ACTIONS(9755), 1, anon_sym_RPAREN, - [126104] = 2, - ACTIONS(4141), 1, + [175070] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(9757), 1, + sym_word, + [175077] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2364), 1, anon_sym_RBRACE, - [126111] = 2, - ACTIONS(4141), 1, + [175084] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7773), 1, - anon_sym_BQUOTE, - [126118] = 2, - ACTIONS(4141), 1, + ACTIONS(9759), 1, + anon_sym_esac, + [175091] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7775), 1, - anon_sym_RPAREN, - [126125] = 2, - ACTIONS(4141), 1, + ACTIONS(4139), 1, + anon_sym_RBRACE, + [175098] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_RBRACE, + [175105] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7777), 1, + ACTIONS(6153), 1, anon_sym_RPAREN, - [126132] = 2, - ACTIONS(4141), 1, + [175112] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7779), 1, + ACTIONS(9761), 1, anon_sym_esac, - [126139] = 2, - ACTIONS(4141), 1, + [175119] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7488), 1, - anon_sym_RBRACE, - [126146] = 2, - ACTIONS(4141), 1, + ACTIONS(9763), 1, + anon_sym_esac, + [175126] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(9765), 1, anon_sym_BQUOTE, - [126153] = 2, - ACTIONS(4141), 1, + [175133] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7783), 1, - anon_sym_RPAREN, - [126160] = 2, - ACTIONS(4141), 1, + ACTIONS(9049), 1, + anon_sym_fi, + [175140] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7785), 1, + ACTIONS(9767), 1, anon_sym_RPAREN, - [126167] = 2, - ACTIONS(4141), 1, + [175147] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_RBRACE, + [175154] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7547), 1, + ACTIONS(2426), 1, anon_sym_RBRACE, - [126174] = 2, - ACTIONS(4141), 1, + [175161] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(3789), 1, + anon_sym_RBRACE, + [175168] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9769), 1, anon_sym_BQUOTE, - [126181] = 2, - ACTIONS(4141), 1, + [175175] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_esac, - [126188] = 2, - ACTIONS(4141), 1, + ACTIONS(6134), 1, + anon_sym_RPAREN, + [175182] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7791), 1, + ACTIONS(6136), 1, anon_sym_RPAREN, - [126195] = 2, - ACTIONS(4141), 1, + [175189] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9771), 1, + anon_sym_BQUOTE, + [175196] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4163), 1, + anon_sym_RBRACE, + [175203] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7545), 1, + ACTIONS(4722), 1, anon_sym_RBRACE, - [126202] = 2, - ACTIONS(4141), 1, + [175210] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(6181), 1, anon_sym_RPAREN, - [126209] = 2, - ACTIONS(4141), 1, + [175217] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(9773), 1, anon_sym_BQUOTE, - [126216] = 2, - ACTIONS(4141), 1, + [175224] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7797), 1, + ACTIONS(9775), 1, anon_sym_RPAREN, - [126223] = 2, - ACTIONS(4141), 1, + [175231] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(9777), 1, anon_sym_esac, - [126230] = 2, - ACTIONS(4141), 1, + [175238] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(3911), 1, anon_sym_RBRACE, - [126237] = 2, - ACTIONS(4141), 1, + [175245] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7575), 1, + ACTIONS(2547), 1, anon_sym_RBRACE, - [126244] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7801), 1, - anon_sym_RPAREN, - [126251] = 2, - ACTIONS(4141), 1, + [175252] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7803), 1, - anon_sym_esac, - [126258] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7805), 1, - anon_sym_fi, - [126265] = 2, - ACTIONS(4141), 1, + ACTIONS(9779), 1, + sym_heredoc_start, + [175259] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7807), 1, + ACTIONS(9781), 1, anon_sym_BQUOTE, - [126272] = 2, - ACTIONS(4141), 1, + [175266] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7557), 1, + ACTIONS(2038), 1, anon_sym_RBRACE, - [126279] = 2, - ACTIONS(4141), 1, + [175273] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7809), 1, - anon_sym_RPAREN, - [126286] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7811), 1, - anon_sym_BQUOTE, - [126293] = 2, - ACTIONS(4141), 1, + ACTIONS(4767), 1, + anon_sym_RBRACE, + [175280] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7813), 1, + ACTIONS(6197), 1, anon_sym_RPAREN, - [126300] = 2, - ACTIONS(4141), 1, + [175287] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_RBRACE, - [126307] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7815), 1, + ACTIONS(6193), 1, anon_sym_RPAREN, - [126314] = 2, - ACTIONS(4141), 1, + [175294] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(9783), 1, anon_sym_BQUOTE, - [126321] = 2, - ACTIONS(4141), 1, + [175301] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7819), 1, - anon_sym_RPAREN, - [126328] = 2, - ACTIONS(4141), 1, + ACTIONS(9785), 1, + anon_sym_esac, + [175308] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7821), 1, - anon_sym_RPAREN, - [126335] = 2, - ACTIONS(4141), 1, + ACTIONS(9787), 1, + anon_sym_esac, + [175315] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9057), 1, + anon_sym_fi, + [175322] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7823), 1, + ACTIONS(9789), 1, anon_sym_RPAREN, - [126342] = 2, - ACTIONS(4141), 1, + [175329] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7531), 1, + ACTIONS(4189), 1, anon_sym_RBRACE, - [126349] = 2, - ACTIONS(4141), 1, + [175336] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7533), 1, + ACTIONS(9791), 1, + anon_sym_esac, + [175343] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2605), 1, anon_sym_RBRACE, - [126356] = 2, - ACTIONS(4141), 1, + [175350] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7825), 1, - anon_sym_BQUOTE, - [126363] = 2, - ACTIONS(4141), 1, + ACTIONS(9793), 1, + sym_heredoc_start, + [175357] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_RBRACE, + [175364] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2489), 1, + anon_sym_RBRACE, + [175371] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7539), 1, + ACTIONS(3853), 1, anon_sym_RBRACE, - [126370] = 2, - ACTIONS(4141), 1, + [175378] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(9795), 1, sym_heredoc_start, - [126377] = 2, - ACTIONS(4141), 1, + [175385] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7829), 1, - anon_sym_esac, - [126384] = 2, - ACTIONS(4141), 1, + ACTIONS(9797), 1, + anon_sym_BQUOTE, + [175392] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7831), 1, - anon_sym_esac, - [126391] = 2, - ACTIONS(4141), 1, + ACTIONS(9799), 1, + anon_sym_RPAREN, + [175399] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7833), 1, + ACTIONS(9801), 1, anon_sym_RPAREN, - [126398] = 2, - ACTIONS(4141), 1, + [175406] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(9803), 1, anon_sym_RPAREN, - [126405] = 2, - ACTIONS(4141), 1, + [175413] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9805), 1, + anon_sym_BQUOTE, + [175420] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7837), 1, + ACTIONS(9807), 1, anon_sym_RPAREN, - [126412] = 2, - ACTIONS(4141), 1, + [175427] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9809), 1, + anon_sym_BQUOTE, + [175434] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7527), 1, + ACTIONS(2663), 1, anon_sym_RBRACE, - [126419] = 2, - ACTIONS(4141), 1, + [175441] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7513), 1, + ACTIONS(4861), 1, anon_sym_RBRACE, - [126426] = 2, - ACTIONS(4141), 1, + [175448] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7839), 1, - anon_sym_BQUOTE, - [126433] = 2, - ACTIONS(4141), 1, + ACTIONS(6207), 1, + anon_sym_RPAREN, + [175455] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6952), 1, - anon_sym_fi, - [126440] = 2, - ACTIONS(4141), 1, + ACTIONS(6209), 1, + anon_sym_RPAREN, + [175462] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9811), 1, + anon_sym_BQUOTE, + [175469] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7841), 1, + ACTIONS(9813), 1, anon_sym_RPAREN, - [126447] = 2, - ACTIONS(4141), 1, + [175476] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7843), 1, - anon_sym_then, - [126454] = 2, - ACTIONS(4141), 1, + ACTIONS(9815), 1, + anon_sym_esac, + [175483] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7845), 1, + ACTIONS(9817), 1, sym_heredoc_start, - [126461] = 2, - ACTIONS(4141), 1, + [175490] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7847), 1, - anon_sym_RPAREN, - [126468] = 2, - ACTIONS(4141), 1, + ACTIONS(9819), 1, + anon_sym_fi, + [175497] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7305), 1, + ACTIONS(4218), 1, anon_sym_RBRACE, - [126475] = 2, - ACTIONS(4141), 1, + [175504] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(9821), 1, anon_sym_RPAREN, - [126482] = 2, - ACTIONS(4141), 1, + [175511] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9823), 1, + anon_sym_BQUOTE, + [175518] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_RBRACE, + [175525] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(6130), 1, anon_sym_RPAREN, - [126489] = 2, - ACTIONS(4141), 1, + [175532] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7478), 1, + ACTIONS(4941), 1, anon_sym_RBRACE, - [126496] = 2, - ACTIONS(4141), 1, + [175539] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7343), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - [126503] = 2, - ACTIONS(4141), 1, + [175546] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7853), 1, + ACTIONS(6124), 1, anon_sym_RPAREN, - [126510] = 2, - ACTIONS(4141), 1, + [175553] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7855), 1, - anon_sym_BQUOTE, - [126517] = 2, - ACTIONS(4141), 1, + ACTIONS(9825), 1, + anon_sym_RPAREN, + [175560] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7470), 1, + ACTIONS(4911), 1, anon_sym_RBRACE, - [126524] = 2, - ACTIONS(4141), 1, + [175567] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7857), 1, + ACTIONS(6185), 1, anon_sym_RPAREN, - [126531] = 2, - ACTIONS(4141), 1, + [175574] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7859), 1, + ACTIONS(9827), 1, + anon_sym_BQUOTE, + [175581] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9829), 1, anon_sym_RPAREN, - [126538] = 2, - ACTIONS(4141), 1, + [175588] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7861), 1, + ACTIONS(6155), 1, anon_sym_RPAREN, - [126545] = 2, - ACTIONS(4141), 1, + [175595] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7464), 1, + ACTIONS(2781), 1, anon_sym_RBRACE, - [126552] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7863), 1, - anon_sym_BQUOTE, - [126559] = 2, - ACTIONS(4141), 1, + [175602] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7865), 1, + ACTIONS(9831), 1, anon_sym_RPAREN, - [126566] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7456), 1, - anon_sym_RBRACE, - [126573] = 2, - ACTIONS(4141), 1, + [175609] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6946), 1, - anon_sym_fi, - [126580] = 2, - ACTIONS(4141), 1, + ACTIONS(9833), 1, + anon_sym_BQUOTE, + [175616] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7432), 1, - anon_sym_RBRACE, - [126587] = 2, - ACTIONS(4141), 1, + ACTIONS(6203), 1, + anon_sym_RPAREN, + [175623] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7446), 1, - anon_sym_RBRACE, - [126594] = 2, - ACTIONS(4141), 1, + ACTIONS(6211), 1, + anon_sym_RPAREN, + [175630] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACK, - [126601] = 2, - ACTIONS(4141), 1, + ACTIONS(6264), 1, + anon_sym_RPAREN, + [175637] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7869), 1, - anon_sym_RBRACK, - [126608] = 2, - ACTIONS(4141), 1, + ACTIONS(6268), 1, + anon_sym_RPAREN, + [175644] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7430), 1, - anon_sym_RBRACE, - [126615] = 2, - ACTIONS(4141), 1, + ACTIONS(9835), 1, + anon_sym_BQUOTE, + [175651] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_RBRACE, - [126622] = 2, - ACTIONS(4141), 1, + ACTIONS(9837), 1, + anon_sym_RPAREN, + [175658] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(4264), 1, anon_sym_RBRACE, - [126629] = 2, - ACTIONS(4141), 1, + [175665] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7420), 1, + ACTIONS(4949), 1, anon_sym_RBRACE, - [126636] = 2, - ACTIONS(4141), 1, + [175672] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7871), 1, + ACTIONS(6282), 1, anon_sym_RPAREN, - [126643] = 2, - ACTIONS(4141), 1, + [175679] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7873), 1, - anon_sym_RPAREN, - [126650] = 2, - ACTIONS(4141), 1, + ACTIONS(9839), 1, + anon_sym_esac, + [175686] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(9841), 1, + anon_sym_esac, + [175693] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9843), 1, anon_sym_BQUOTE, - [126657] = 2, - ACTIONS(4141), 1, + [175700] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7877), 1, - sym_heredoc_start, - [126664] = 2, - ACTIONS(4141), 1, + ACTIONS(3731), 1, + anon_sym_RBRACE, + [175707] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7879), 1, + ACTIONS(7094), 1, + anon_sym_RBRACK, + [175714] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9845), 1, anon_sym_RPAREN, - [126671] = 2, - ACTIONS(4141), 1, + [175721] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7126), 1, + anon_sym_RBRACK, + [175728] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7881), 1, + ACTIONS(9847), 1, anon_sym_RPAREN, - [126678] = 2, - ACTIONS(4141), 1, + [175735] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7883), 1, + ACTIONS(9849), 1, anon_sym_BQUOTE, - [126685] = 2, - ACTIONS(4141), 1, + [175742] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(2897), 1, anon_sym_RBRACE, - [126692] = 2, - ACTIONS(4141), 1, + [175749] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7885), 1, - anon_sym_RPAREN, - [126699] = 2, - ACTIONS(4141), 1, + ACTIONS(5001), 1, + anon_sym_RBRACE, + [175756] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7887), 1, + ACTIONS(6175), 1, anon_sym_RPAREN, - [126706] = 2, - ACTIONS(4141), 1, + [175763] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7889), 1, + ACTIONS(9851), 1, anon_sym_RPAREN, - [126713] = 2, - ACTIONS(4141), 1, + [175770] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7891), 1, - anon_sym_then, - [126720] = 2, - ACTIONS(4141), 1, + ACTIONS(9853), 1, + anon_sym_esac, + [175777] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7893), 1, + ACTIONS(6169), 1, anon_sym_RPAREN, - [126727] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7895), 1, - anon_sym_BQUOTE, - [126734] = 2, - ACTIONS(4141), 1, + [175784] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7897), 1, + ACTIONS(9855), 1, anon_sym_BQUOTE, - [126741] = 2, - ACTIONS(4141), 1, + [175791] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7899), 1, + ACTIONS(9857), 1, anon_sym_RPAREN, - [126748] = 2, - ACTIONS(4141), 1, + [175798] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7901), 1, - anon_sym_RPAREN, - [126755] = 2, - ACTIONS(4141), 1, + ACTIONS(9859), 1, + anon_sym_esac, + [175805] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9861), 1, + anon_sym_fi, + [175812] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9863), 1, + anon_sym_then, + [175819] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9865), 1, + anon_sym_esac, + [175826] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7394), 1, + ACTIONS(2955), 1, anon_sym_RBRACE, - [126762] = 2, - ACTIONS(4141), 1, + [175833] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7903), 1, - sym_heredoc_start, - [126769] = 2, - ACTIONS(4141), 1, + ACTIONS(2839), 1, + anon_sym_RBRACE, + [175840] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7392), 1, + ACTIONS(4407), 1, + anon_sym_RBRACE, + [175847] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5077), 1, anon_sym_RBRACE, - [126776] = 2, - ACTIONS(4141), 1, + [175854] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(6122), 1, + anon_sym_RPAREN, + [175861] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7905), 1, + ACTIONS(9867), 1, anon_sym_BQUOTE, - [126783] = 2, - ACTIONS(4141), 1, + [175868] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7907), 1, - anon_sym_esac, - [126790] = 2, - ACTIONS(4141), 1, + ACTIONS(9869), 1, + anon_sym_RPAREN, + [175875] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7374), 1, + ACTIONS(3673), 1, anon_sym_RBRACE, - [126797] = 2, - ACTIONS(4141), 1, + [175882] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_esac, - [126804] = 2, - ACTIONS(4141), 1, + ACTIONS(3013), 1, + anon_sym_RBRACE, + [175889] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7911), 1, - sym_heredoc_start, - [126811] = 2, - ACTIONS(4141), 1, + ACTIONS(5045), 1, + anon_sym_RBRACE, + [175896] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7913), 1, - anon_sym_esac, - [126818] = 2, - ACTIONS(4141), 1, + ACTIONS(4303), 1, + anon_sym_RBRACE, + [175903] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7915), 1, + ACTIONS(9871), 1, anon_sym_RPAREN, - [126825] = 2, - ACTIONS(4141), 1, + [175910] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7917), 1, + ACTIONS(9873), 1, anon_sym_BQUOTE, - [126832] = 2, - ACTIONS(4141), 1, + [175917] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7919), 1, - anon_sym_RBRACK, - [126839] = 2, - ACTIONS(4141), 1, + ACTIONS(6157), 1, + anon_sym_RPAREN, + [175924] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7921), 1, - anon_sym_RBRACK, - [126846] = 2, - ACTIONS(4141), 1, + ACTIONS(9875), 1, + anon_sym_BQUOTE, + [175931] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7923), 1, + ACTIONS(9877), 1, anon_sym_RPAREN, - [126853] = 2, - ACTIONS(4141), 1, + [175938] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9879), 1, + anon_sym_esac, + [175945] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9881), 1, + anon_sym_esac, + [175952] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(6159), 1, anon_sym_RPAREN, - [126860] = 2, - ACTIONS(4141), 1, + [175959] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7927), 1, - anon_sym_BQUOTE, - [126867] = 2, - ACTIONS(4141), 1, + ACTIONS(9883), 1, + anon_sym_esac, + [175966] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6934), 1, + ACTIONS(9041), 1, anon_sym_fi, - [126874] = 2, - ACTIONS(4141), 1, + [175973] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(3071), 1, anon_sym_RBRACE, - [126881] = 2, - ACTIONS(4141), 1, + [175980] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7929), 1, - anon_sym_RPAREN, - [126888] = 2, - ACTIONS(4141), 1, + ACTIONS(4441), 1, + anon_sym_RBRACE, + [175987] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(5021), 1, + anon_sym_RBRACE, + [175994] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7931), 1, + ACTIONS(6187), 1, anon_sym_RPAREN, - [126895] = 2, - ACTIONS(4141), 1, + [176001] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(9053), 1, anon_sym_fi, - [126902] = 2, - ACTIONS(4141), 1, + [176008] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7935), 1, + ACTIONS(9885), 1, anon_sym_BQUOTE, - [126909] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7349), 1, - anon_sym_RBRACE, - [126916] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_RBRACE, - [126923] = 2, - ACTIONS(4141), 1, + [176015] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7937), 1, + ACTIONS(9887), 1, ts_builtin_sym_end, - [126930] = 2, - ACTIONS(4141), 1, + [176022] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7939), 1, + ACTIONS(9889), 1, ts_builtin_sym_end, - [126937] = 2, - ACTIONS(4141), 1, + [176029] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(2096), 1, + anon_sym_RBRACE, + [176036] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7941), 1, + ACTIONS(9891), 1, anon_sym_RPAREN, - [126944] = 2, - ACTIONS(4141), 1, + [176043] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7335), 1, - anon_sym_RBRACE, - [126951] = 2, - ACTIONS(4141), 1, + ACTIONS(9893), 1, + anon_sym_then, + [176050] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6942), 1, - anon_sym_fi, - [126958] = 2, - ACTIONS(4141), 1, + ACTIONS(3615), 1, + anon_sym_RBRACE, + [176057] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7329), 1, + ACTIONS(3129), 1, anon_sym_RBRACE, - [126965] = 2, - ACTIONS(4141), 1, + [176064] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(4957), 1, anon_sym_RBRACE, - [126972] = 2, - ACTIONS(4141), 1, + [176071] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7943), 1, + ACTIONS(9895), 1, anon_sym_esac, - [126979] = 2, - ACTIONS(4141), 1, + [176078] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9897), 1, + anon_sym_BQUOTE, + [176085] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9899), 1, + anon_sym_BQUOTE, + [176092] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7945), 1, + ACTIONS(9901), 1, anon_sym_esac, - [126986] = 2, - ACTIONS(4141), 1, + [176099] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_RBRACE, - [126993] = 2, - ACTIONS(4141), 1, + ACTIONS(9047), 1, + anon_sym_fi, + [176106] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7315), 1, - anon_sym_RBRACE, - [127000] = 2, - ACTIONS(4141), 1, + ACTIONS(7060), 1, + anon_sym_RBRACK, + [176113] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(7048), 1, + anon_sym_RBRACK, + [176120] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7947), 1, + ACTIONS(9903), 1, anon_sym_RPAREN, - [127007] = 2, - ACTIONS(4141), 1, + [176127] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7949), 1, + ACTIONS(9905), 1, anon_sym_BQUOTE, - [127014] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7951), 1, - anon_sym_RPAREN, - [127021] = 2, - ACTIONS(3), 1, + [176134] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7953), 1, + ACTIONS(9907), 1, sym_word, - [127028] = 2, - ACTIONS(4141), 1, + [176141] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(9909), 1, + sym_heredoc_start, + [176148] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7955), 1, + ACTIONS(9911), 1, anon_sym_RPAREN, - [127035] = 2, - ACTIONS(4141), 1, + [176155] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7957), 1, - anon_sym_esac, - [127042] = 2, - ACTIONS(4141), 1, + ACTIONS(9031), 1, + anon_sym_fi, + [176162] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7307), 1, + ACTIONS(3187), 1, anon_sym_RBRACE, - [127049] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7959), 1, - anon_sym_BQUOTE, - [127056] = 2, - ACTIONS(4141), 1, + [176169] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7715), 1, + ACTIONS(9703), 1, aux_sym__simple_variable_name_token1, - [127063] = 2, - ACTIONS(4141), 1, + [176176] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7961), 1, - anon_sym_esac, - [127070] = 2, - ACTIONS(4141), 1, + ACTIONS(6252), 1, + anon_sym_RPAREN, + [176183] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7963), 1, - anon_sym_fi, - [127077] = 2, - ACTIONS(4141), 1, + ACTIONS(4822), 1, + anon_sym_RBRACE, + [176190] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_esac, - [127084] = 2, - ACTIONS(4141), 1, + ACTIONS(6266), 1, + anon_sym_RPAREN, + [176197] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(9699), 1, aux_sym__simple_variable_name_token1, - [127091] = 2, - ACTIONS(4141), 1, + [176204] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6944), 1, - anon_sym_fi, - [127098] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(7967), 1, - anon_sym_RPAREN, - [127105] = 2, - ACTIONS(4141), 1, + ACTIONS(4475), 1, + anon_sym_RBRACE, + [176211] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym_esac, - [127112] = 2, - ACTIONS(4141), 1, + ACTIONS(9913), 1, + anon_sym_BQUOTE, + [176218] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_RBRACE, - [127119] = 2, - ACTIONS(4141), 1, + ACTIONS(9915), 1, + anon_sym_RPAREN, + [176225] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7268), 1, + ACTIONS(3557), 1, anon_sym_RBRACE, - [127126] = 2, - ACTIONS(4141), 1, + [176232] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7284), 1, + ACTIONS(3245), 1, anon_sym_RBRACE, - [127133] = 2, - ACTIONS(4141), 1, + [176239] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7278), 1, + ACTIONS(4771), 1, anon_sym_RBRACE, - [127140] = 2, - ACTIONS(4141), 1, + [176246] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_in, - [127147] = 2, - ACTIONS(4141), 1, + ACTIONS(9917), 1, + anon_sym_RPAREN, + [176253] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7973), 1, - anon_sym_in, - [127154] = 2, - ACTIONS(4141), 1, + ACTIONS(9919), 1, + anon_sym_BQUOTE, + [176260] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7975), 1, - anon_sym_esac, - [127161] = 2, - ACTIONS(4141), 1, + ACTIONS(9921), 1, + sym_heredoc_start, + [176267] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7270), 1, - anon_sym_RBRACE, - [127168] = 2, - ACTIONS(4141), 1, + ACTIONS(9923), 1, + anon_sym_RPAREN, + [176274] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_RBRACE, - [127175] = 2, - ACTIONS(4141), 1, + ACTIONS(9925), 1, + anon_sym_BQUOTE, + [176281] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7977), 1, + ACTIONS(9927), 1, anon_sym_esac, - [127182] = 2, - ACTIONS(4141), 1, + [176288] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_fi, - [127189] = 2, - ACTIONS(4141), 1, + ACTIONS(6270), 1, + anon_sym_RPAREN, + [176295] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7979), 1, - anon_sym_BQUOTE, - [127196] = 2, - ACTIONS(4141), 1, + ACTIONS(9929), 1, + anon_sym_RPAREN, + [176302] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7981), 1, - sym_heredoc_start, - [127203] = 2, - ACTIONS(4141), 1, + ACTIONS(9931), 1, + anon_sym_BQUOTE, + [176309] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7983), 1, + ACTIONS(6272), 1, anon_sym_RPAREN, - [127210] = 2, - ACTIONS(4141), 1, + [176316] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7985), 1, - anon_sym_RPAREN, - [127217] = 2, - ACTIONS(4141), 1, + ACTIONS(3319), 1, + anon_sym_RBRACE, + [176323] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4501), 1, + anon_sym_RBRACE, + [176330] = 2, + ACTIONS(59), 1, + sym_comment, + ACTIONS(4686), 1, + anon_sym_RBRACE, + [176337] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(6286), 1, anon_sym_RPAREN, - [127224] = 2, - ACTIONS(4141), 1, + [176344] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7989), 1, - anon_sym_esac, - [127231] = 2, - ACTIONS(4141), 1, + ACTIONS(9933), 1, + anon_sym_BQUOTE, + [176351] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(9587), 1, aux_sym__simple_variable_name_token1, - [127238] = 2, - ACTIONS(4141), 1, + [176358] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(9935), 1, anon_sym_RPAREN, - [127245] = 2, - ACTIONS(4141), 1, + [176365] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7993), 1, - anon_sym_BQUOTE, - [127252] = 2, - ACTIONS(4141), 1, + ACTIONS(3499), 1, + anon_sym_RBRACE, + [176372] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7995), 1, - anon_sym_BQUOTE, - [127259] = 2, - ACTIONS(4141), 1, + ACTIONS(9937), 1, + anon_sym_esac, + [176379] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7997), 1, + ACTIONS(9939), 1, anon_sym_RPAREN, - [127266] = 2, - ACTIONS(4141), 1, + [176386] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7999), 1, + ACTIONS(9941), 1, anon_sym_BQUOTE, - [127273] = 2, - ACTIONS(4141), 1, + [176393] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(3371), 1, anon_sym_RBRACE, - [127280] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(8001), 1, - anon_sym_in, - [127287] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(8003), 1, - anon_sym_in, - [127294] = 2, - ACTIONS(4141), 1, + [176400] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(8005), 1, - anon_sym_BQUOTE, - [127301] = 2, - ACTIONS(4141), 1, + ACTIONS(6294), 1, + anon_sym_RPAREN, + [176407] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7248), 1, + ACTIONS(3285), 1, anon_sym_RBRACE, - [127308] = 2, - ACTIONS(4141), 1, + [176414] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7242), 1, + ACTIONS(4579), 1, anon_sym_RBRACE, - [127315] = 2, - ACTIONS(4141), 1, + [176421] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(8007), 1, - anon_sym_RPAREN, - [127322] = 2, - ACTIONS(4141), 1, + ACTIONS(4539), 1, + anon_sym_RBRACE, + [176428] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(8009), 1, + ACTIONS(6296), 1, anon_sym_RPAREN, - [127329] = 2, - ACTIONS(4141), 1, + [176435] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(8011), 1, + ACTIONS(9943), 1, anon_sym_RPAREN, - [127336] = 2, - ACTIONS(4141), 1, + [176442] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7262), 1, - anon_sym_RBRACE, - [127343] = 2, - ACTIONS(4141), 1, - sym_comment, - ACTIONS(8013), 1, + ACTIONS(9945), 1, anon_sym_RPAREN, - [127350] = 2, - ACTIONS(4141), 1, + [176449] = 2, + ACTIONS(59), 1, sym_comment, - ACTIONS(7486), 1, + ACTIONS(3431), 1, anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(168)] = 0, - [SMALL_STATE(169)] = 64, - [SMALL_STATE(170)] = 128, - [SMALL_STATE(171)] = 191, - [SMALL_STATE(172)] = 274, - [SMALL_STATE(173)] = 357, - [SMALL_STATE(174)] = 420, - [SMALL_STATE(175)] = 481, - [SMALL_STATE(176)] = 564, - [SMALL_STATE(177)] = 646, - [SMALL_STATE(178)] = 708, - [SMALL_STATE(179)] = 790, - [SMALL_STATE(180)] = 872, - [SMALL_STATE(181)] = 951, - [SMALL_STATE(182)] = 1010, - [SMALL_STATE(183)] = 1065, - [SMALL_STATE(184)] = 1120, - [SMALL_STATE(185)] = 1201, - [SMALL_STATE(186)] = 1262, - [SMALL_STATE(187)] = 1343, - [SMALL_STATE(188)] = 1404, - [SMALL_STATE(189)] = 1485, - [SMALL_STATE(190)] = 1544, - [SMALL_STATE(191)] = 1625, - [SMALL_STATE(192)] = 1704, - [SMALL_STATE(193)] = 1765, - [SMALL_STATE(194)] = 1820, - [SMALL_STATE(195)] = 1875, - [SMALL_STATE(196)] = 1936, - [SMALL_STATE(197)] = 1991, - [SMALL_STATE(198)] = 2046, - [SMALL_STATE(199)] = 2125, - [SMALL_STATE(200)] = 2184, - [SMALL_STATE(201)] = 2263, - [SMALL_STATE(202)] = 2344, - [SMALL_STATE(203)] = 2423, - [SMALL_STATE(204)] = 2484, - [SMALL_STATE(205)] = 2545, - [SMALL_STATE(206)] = 2606, - [SMALL_STATE(207)] = 2661, - [SMALL_STATE(208)] = 2742, - [SMALL_STATE(209)] = 2797, - [SMALL_STATE(210)] = 2857, - [SMALL_STATE(211)] = 2933, - [SMALL_STATE(212)] = 2993, - [SMALL_STATE(213)] = 3051, - [SMALL_STATE(214)] = 3129, - [SMALL_STATE(215)] = 3205, - [SMALL_STATE(216)] = 3257, - [SMALL_STATE(217)] = 3309, - [SMALL_STATE(218)] = 3387, - [SMALL_STATE(219)] = 3465, - [SMALL_STATE(220)] = 3543, - [SMALL_STATE(221)] = 3619, - [SMALL_STATE(222)] = 3697, - [SMALL_STATE(223)] = 3757, - [SMALL_STATE(224)] = 3817, - [SMALL_STATE(225)] = 3877, - [SMALL_STATE(226)] = 3955, - [SMALL_STATE(227)] = 4033, - [SMALL_STATE(228)] = 4093, - [SMALL_STATE(229)] = 4153, - [SMALL_STATE(230)] = 4230, - [SMALL_STATE(231)] = 4307, - [SMALL_STATE(232)] = 4384, - [SMALL_STATE(233)] = 4443, - [SMALL_STATE(234)] = 4520, - [SMALL_STATE(235)] = 4579, - [SMALL_STATE(236)] = 4656, - [SMALL_STATE(237)] = 4715, - [SMALL_STATE(238)] = 4774, - [SMALL_STATE(239)] = 4851, - [SMALL_STATE(240)] = 4926, - [SMALL_STATE(241)] = 5003, - [SMALL_STATE(242)] = 5080, - [SMALL_STATE(243)] = 5155, - [SMALL_STATE(244)] = 5232, - [SMALL_STATE(245)] = 5309, - [SMALL_STATE(246)] = 5384, - [SMALL_STATE(247)] = 5443, - [SMALL_STATE(248)] = 5493, - [SMALL_STATE(249)] = 5543, - [SMALL_STATE(250)] = 5617, - [SMALL_STATE(251)] = 5669, - [SMALL_STATE(252)] = 5727, - [SMALL_STATE(253)] = 5779, - [SMALL_STATE(254)] = 5853, - [SMALL_STATE(255)] = 5903, - [SMALL_STATE(256)] = 5955, - [SMALL_STATE(257)] = 6029, - [SMALL_STATE(258)] = 6081, - [SMALL_STATE(259)] = 6155, - [SMALL_STATE(260)] = 6205, - [SMALL_STATE(261)] = 6279, - [SMALL_STATE(262)] = 6353, - [SMALL_STATE(263)] = 6427, - [SMALL_STATE(264)] = 6477, - [SMALL_STATE(265)] = 6551, - [SMALL_STATE(266)] = 6625, - [SMALL_STATE(267)] = 6683, - [SMALL_STATE(268)] = 6757, - [SMALL_STATE(269)] = 6807, - [SMALL_STATE(270)] = 6858, - [SMALL_STATE(271)] = 6909, - [SMALL_STATE(272)] = 7000, - [SMALL_STATE(273)] = 7091, - [SMALL_STATE(274)] = 7182, - [SMALL_STATE(275)] = 7253, - [SMALL_STATE(276)] = 7304, - [SMALL_STATE(277)] = 7375, - [SMALL_STATE(278)] = 7424, - [SMALL_STATE(279)] = 7475, - [SMALL_STATE(280)] = 7566, - [SMALL_STATE(281)] = 7615, - [SMALL_STATE(282)] = 7706, - [SMALL_STATE(283)] = 7769, - [SMALL_STATE(284)] = 7822, - [SMALL_STATE(285)] = 7885, - [SMALL_STATE(286)] = 7938, - [SMALL_STATE(287)] = 7991, - [SMALL_STATE(288)] = 8043, - [SMALL_STATE(289)] = 8093, - [SMALL_STATE(290)] = 8145, - [SMALL_STATE(291)] = 8207, - [SMALL_STATE(292)] = 8259, - [SMALL_STATE(293)] = 8309, - [SMALL_STATE(294)] = 8359, - [SMALL_STATE(295)] = 8409, - [SMALL_STATE(296)] = 8471, - [SMALL_STATE(297)] = 8521, - [SMALL_STATE(298)] = 8571, - [SMALL_STATE(299)] = 8621, - [SMALL_STATE(300)] = 8671, - [SMALL_STATE(301)] = 8721, - [SMALL_STATE(302)] = 8771, - [SMALL_STATE(303)] = 8821, - [SMALL_STATE(304)] = 8870, - [SMALL_STATE(305)] = 8915, - [SMALL_STATE(306)] = 8960, - [SMALL_STATE(307)] = 9005, - [SMALL_STATE(308)] = 9050, - [SMALL_STATE(309)] = 9095, - [SMALL_STATE(310)] = 9140, - [SMALL_STATE(311)] = 9185, - [SMALL_STATE(312)] = 9230, - [SMALL_STATE(313)] = 9275, - [SMALL_STATE(314)] = 9320, - [SMALL_STATE(315)] = 9369, - [SMALL_STATE(316)] = 9414, - [SMALL_STATE(317)] = 9465, - [SMALL_STATE(318)] = 9510, - [SMALL_STATE(319)] = 9571, - [SMALL_STATE(320)] = 9620, - [SMALL_STATE(321)] = 9665, - [SMALL_STATE(322)] = 9710, - [SMALL_STATE(323)] = 9759, - [SMALL_STATE(324)] = 9804, - [SMALL_STATE(325)] = 9853, - [SMALL_STATE(326)] = 9902, - [SMALL_STATE(327)] = 9947, - [SMALL_STATE(328)] = 9996, - [SMALL_STATE(329)] = 10045, - [SMALL_STATE(330)] = 10090, - [SMALL_STATE(331)] = 10135, - [SMALL_STATE(332)] = 10180, - [SMALL_STATE(333)] = 10225, - [SMALL_STATE(334)] = 10274, - [SMALL_STATE(335)] = 10323, - [SMALL_STATE(336)] = 10368, - [SMALL_STATE(337)] = 10413, - [SMALL_STATE(338)] = 10462, - [SMALL_STATE(339)] = 10507, - [SMALL_STATE(340)] = 10552, - [SMALL_STATE(341)] = 10597, - [SMALL_STATE(342)] = 10658, - [SMALL_STATE(343)] = 10703, - [SMALL_STATE(344)] = 10748, - [SMALL_STATE(345)] = 10793, - [SMALL_STATE(346)] = 10838, - [SMALL_STATE(347)] = 10883, - [SMALL_STATE(348)] = 10928, - [SMALL_STATE(349)] = 10977, - [SMALL_STATE(350)] = 11022, - [SMALL_STATE(351)] = 11067, - [SMALL_STATE(352)] = 11118, - [SMALL_STATE(353)] = 11163, - [SMALL_STATE(354)] = 11212, - [SMALL_STATE(355)] = 11257, - [SMALL_STATE(356)] = 11306, - [SMALL_STATE(357)] = 11357, - [SMALL_STATE(358)] = 11402, - [SMALL_STATE(359)] = 11451, - [SMALL_STATE(360)] = 11500, - [SMALL_STATE(361)] = 11561, - [SMALL_STATE(362)] = 11610, - [SMALL_STATE(363)] = 11659, - [SMALL_STATE(364)] = 11704, - [SMALL_STATE(365)] = 11753, - [SMALL_STATE(366)] = 11802, - [SMALL_STATE(367)] = 11847, - [SMALL_STATE(368)] = 11908, - [SMALL_STATE(369)] = 11953, - [SMALL_STATE(370)] = 11998, - [SMALL_STATE(371)] = 12047, - [SMALL_STATE(372)] = 12092, - [SMALL_STATE(373)] = 12137, - [SMALL_STATE(374)] = 12186, - [SMALL_STATE(375)] = 12231, - [SMALL_STATE(376)] = 12282, - [SMALL_STATE(377)] = 12327, - [SMALL_STATE(378)] = 12376, - [SMALL_STATE(379)] = 12421, - [SMALL_STATE(380)] = 12470, - [SMALL_STATE(381)] = 12519, - [SMALL_STATE(382)] = 12564, - [SMALL_STATE(383)] = 12617, - [SMALL_STATE(384)] = 12662, - [SMALL_STATE(385)] = 12707, - [SMALL_STATE(386)] = 12758, - [SMALL_STATE(387)] = 12807, - [SMALL_STATE(388)] = 12852, - [SMALL_STATE(389)] = 12897, - [SMALL_STATE(390)] = 12942, - [SMALL_STATE(391)] = 12987, - [SMALL_STATE(392)] = 13031, - [SMALL_STATE(393)] = 13075, - [SMALL_STATE(394)] = 13119, - [SMALL_STATE(395)] = 13163, - [SMALL_STATE(396)] = 13207, - [SMALL_STATE(397)] = 13251, - [SMALL_STATE(398)] = 13299, - [SMALL_STATE(399)] = 13349, - [SMALL_STATE(400)] = 13397, - [SMALL_STATE(401)] = 13445, - [SMALL_STATE(402)] = 13489, - [SMALL_STATE(403)] = 13533, - [SMALL_STATE(404)] = 13577, - [SMALL_STATE(405)] = 13621, - [SMALL_STATE(406)] = 13665, - [SMALL_STATE(407)] = 13709, - [SMALL_STATE(408)] = 13765, - [SMALL_STATE(409)] = 13809, - [SMALL_STATE(410)] = 13853, - [SMALL_STATE(411)] = 13897, - [SMALL_STATE(412)] = 13941, - [SMALL_STATE(413)] = 13985, - [SMALL_STATE(414)] = 14029, - [SMALL_STATE(415)] = 14073, - [SMALL_STATE(416)] = 14117, - [SMALL_STATE(417)] = 14161, - [SMALL_STATE(418)] = 14205, - [SMALL_STATE(419)] = 14249, - [SMALL_STATE(420)] = 14293, - [SMALL_STATE(421)] = 14337, - [SMALL_STATE(422)] = 14381, - [SMALL_STATE(423)] = 14425, - [SMALL_STATE(424)] = 14469, - [SMALL_STATE(425)] = 14513, - [SMALL_STATE(426)] = 14557, - [SMALL_STATE(427)] = 14601, - [SMALL_STATE(428)] = 14645, - [SMALL_STATE(429)] = 14703, - [SMALL_STATE(430)] = 14747, - [SMALL_STATE(431)] = 14795, - [SMALL_STATE(432)] = 14839, - [SMALL_STATE(433)] = 14883, - [SMALL_STATE(434)] = 14927, - [SMALL_STATE(435)] = 14971, - [SMALL_STATE(436)] = 15015, - [SMALL_STATE(437)] = 15063, - [SMALL_STATE(438)] = 15107, - [SMALL_STATE(439)] = 15151, - [SMALL_STATE(440)] = 15201, - [SMALL_STATE(441)] = 15245, - [SMALL_STATE(442)] = 15293, - [SMALL_STATE(443)] = 15337, - [SMALL_STATE(444)] = 15381, - [SMALL_STATE(445)] = 15425, - [SMALL_STATE(446)] = 15469, - [SMALL_STATE(447)] = 15513, - [SMALL_STATE(448)] = 15557, - [SMALL_STATE(449)] = 15601, - [SMALL_STATE(450)] = 15645, - [SMALL_STATE(451)] = 15689, - [SMALL_STATE(452)] = 15733, - [SMALL_STATE(453)] = 15777, - [SMALL_STATE(454)] = 15821, - [SMALL_STATE(455)] = 15865, - [SMALL_STATE(456)] = 15909, - [SMALL_STATE(457)] = 15953, - [SMALL_STATE(458)] = 15997, - [SMALL_STATE(459)] = 16041, - [SMALL_STATE(460)] = 16085, - [SMALL_STATE(461)] = 16129, - [SMALL_STATE(462)] = 16173, - [SMALL_STATE(463)] = 16217, - [SMALL_STATE(464)] = 16261, - [SMALL_STATE(465)] = 16305, - [SMALL_STATE(466)] = 16349, - [SMALL_STATE(467)] = 16393, - [SMALL_STATE(468)] = 16437, - [SMALL_STATE(469)] = 16497, - [SMALL_STATE(470)] = 16541, - [SMALL_STATE(471)] = 16585, - [SMALL_STATE(472)] = 16629, - [SMALL_STATE(473)] = 16677, - [SMALL_STATE(474)] = 16725, - [SMALL_STATE(475)] = 16769, - [SMALL_STATE(476)] = 16813, - [SMALL_STATE(477)] = 16871, - [SMALL_STATE(478)] = 16919, - [SMALL_STATE(479)] = 16967, - [SMALL_STATE(480)] = 17015, - [SMALL_STATE(481)] = 17063, - [SMALL_STATE(482)] = 17121, - [SMALL_STATE(483)] = 17169, - [SMALL_STATE(484)] = 17213, - [SMALL_STATE(485)] = 17257, - [SMALL_STATE(486)] = 17301, - [SMALL_STATE(487)] = 17349, - [SMALL_STATE(488)] = 17407, - [SMALL_STATE(489)] = 17451, - [SMALL_STATE(490)] = 17511, - [SMALL_STATE(491)] = 17555, - [SMALL_STATE(492)] = 17603, - [SMALL_STATE(493)] = 17651, - [SMALL_STATE(494)] = 17699, - [SMALL_STATE(495)] = 17757, - [SMALL_STATE(496)] = 17805, - [SMALL_STATE(497)] = 17853, - [SMALL_STATE(498)] = 17901, - [SMALL_STATE(499)] = 17949, - [SMALL_STATE(500)] = 17997, - [SMALL_STATE(501)] = 18045, - [SMALL_STATE(502)] = 18093, - [SMALL_STATE(503)] = 18141, - [SMALL_STATE(504)] = 18185, - [SMALL_STATE(505)] = 18229, - [SMALL_STATE(506)] = 18273, - [SMALL_STATE(507)] = 18317, - [SMALL_STATE(508)] = 18361, - [SMALL_STATE(509)] = 18409, - [SMALL_STATE(510)] = 18453, - [SMALL_STATE(511)] = 18497, - [SMALL_STATE(512)] = 18541, - [SMALL_STATE(513)] = 18585, - [SMALL_STATE(514)] = 18629, - [SMALL_STATE(515)] = 18677, - [SMALL_STATE(516)] = 18721, - [SMALL_STATE(517)] = 18765, - [SMALL_STATE(518)] = 18809, - [SMALL_STATE(519)] = 18857, - [SMALL_STATE(520)] = 18905, - [SMALL_STATE(521)] = 18949, - [SMALL_STATE(522)] = 18993, - [SMALL_STATE(523)] = 19037, - [SMALL_STATE(524)] = 19081, - [SMALL_STATE(525)] = 19125, - [SMALL_STATE(526)] = 19169, - [SMALL_STATE(527)] = 19217, - [SMALL_STATE(528)] = 19265, - [SMALL_STATE(529)] = 19309, - [SMALL_STATE(530)] = 19353, - [SMALL_STATE(531)] = 19401, - [SMALL_STATE(532)] = 19445, - [SMALL_STATE(533)] = 19493, - [SMALL_STATE(534)] = 19537, - [SMALL_STATE(535)] = 19581, - [SMALL_STATE(536)] = 19625, - [SMALL_STATE(537)] = 19669, - [SMALL_STATE(538)] = 19717, - [SMALL_STATE(539)] = 19765, - [SMALL_STATE(540)] = 19813, - [SMALL_STATE(541)] = 19857, - [SMALL_STATE(542)] = 19901, - [SMALL_STATE(543)] = 19945, - [SMALL_STATE(544)] = 19993, - [SMALL_STATE(545)] = 20037, - [SMALL_STATE(546)] = 20085, - [SMALL_STATE(547)] = 20129, - [SMALL_STATE(548)] = 20177, - [SMALL_STATE(549)] = 20221, - [SMALL_STATE(550)] = 20265, - [SMALL_STATE(551)] = 20309, - [SMALL_STATE(552)] = 20353, - [SMALL_STATE(553)] = 20401, - [SMALL_STATE(554)] = 20449, - [SMALL_STATE(555)] = 20492, - [SMALL_STATE(556)] = 20535, - [SMALL_STATE(557)] = 20578, - [SMALL_STATE(558)] = 20625, - [SMALL_STATE(559)] = 20668, - [SMALL_STATE(560)] = 20711, - [SMALL_STATE(561)] = 20754, - [SMALL_STATE(562)] = 20801, - [SMALL_STATE(563)] = 20844, - [SMALL_STATE(564)] = 20891, - [SMALL_STATE(565)] = 20934, - [SMALL_STATE(566)] = 20981, - [SMALL_STATE(567)] = 21024, - [SMALL_STATE(568)] = 21071, - [SMALL_STATE(569)] = 21114, - [SMALL_STATE(570)] = 21157, - [SMALL_STATE(571)] = 21204, - [SMALL_STATE(572)] = 21251, - [SMALL_STATE(573)] = 21298, - [SMALL_STATE(574)] = 21341, - [SMALL_STATE(575)] = 21384, - [SMALL_STATE(576)] = 21427, - [SMALL_STATE(577)] = 21470, - [SMALL_STATE(578)] = 21513, - [SMALL_STATE(579)] = 21556, - [SMALL_STATE(580)] = 21603, - [SMALL_STATE(581)] = 21646, - [SMALL_STATE(582)] = 21689, - [SMALL_STATE(583)] = 21732, - [SMALL_STATE(584)] = 21775, - [SMALL_STATE(585)] = 21818, - [SMALL_STATE(586)] = 21861, - [SMALL_STATE(587)] = 21904, - [SMALL_STATE(588)] = 21947, - [SMALL_STATE(589)] = 21990, - [SMALL_STATE(590)] = 22033, - [SMALL_STATE(591)] = 22076, - [SMALL_STATE(592)] = 22119, - [SMALL_STATE(593)] = 22162, - [SMALL_STATE(594)] = 22209, - [SMALL_STATE(595)] = 22252, - [SMALL_STATE(596)] = 22299, - [SMALL_STATE(597)] = 22342, - [SMALL_STATE(598)] = 22385, - [SMALL_STATE(599)] = 22428, - [SMALL_STATE(600)] = 22471, - [SMALL_STATE(601)] = 22514, - [SMALL_STATE(602)] = 22557, - [SMALL_STATE(603)] = 22600, - [SMALL_STATE(604)] = 22643, - [SMALL_STATE(605)] = 22690, - [SMALL_STATE(606)] = 22737, - [SMALL_STATE(607)] = 22780, - [SMALL_STATE(608)] = 22823, - [SMALL_STATE(609)] = 22866, - [SMALL_STATE(610)] = 22909, - [SMALL_STATE(611)] = 22952, - [SMALL_STATE(612)] = 22999, - [SMALL_STATE(613)] = 23042, - [SMALL_STATE(614)] = 23085, - [SMALL_STATE(615)] = 23128, - [SMALL_STATE(616)] = 23171, - [SMALL_STATE(617)] = 23218, - [SMALL_STATE(618)] = 23261, - [SMALL_STATE(619)] = 23304, - [SMALL_STATE(620)] = 23347, - [SMALL_STATE(621)] = 23390, - [SMALL_STATE(622)] = 23433, - [SMALL_STATE(623)] = 23476, - [SMALL_STATE(624)] = 23519, - [SMALL_STATE(625)] = 23566, - [SMALL_STATE(626)] = 23609, - [SMALL_STATE(627)] = 23652, - [SMALL_STATE(628)] = 23695, - [SMALL_STATE(629)] = 23738, - [SMALL_STATE(630)] = 23781, - [SMALL_STATE(631)] = 23824, - [SMALL_STATE(632)] = 23867, - [SMALL_STATE(633)] = 23910, - [SMALL_STATE(634)] = 23953, - [SMALL_STATE(635)] = 23996, - [SMALL_STATE(636)] = 24039, - [SMALL_STATE(637)] = 24082, - [SMALL_STATE(638)] = 24125, - [SMALL_STATE(639)] = 24172, - [SMALL_STATE(640)] = 24215, - [SMALL_STATE(641)] = 24258, - [SMALL_STATE(642)] = 24301, - [SMALL_STATE(643)] = 24344, - [SMALL_STATE(644)] = 24387, - [SMALL_STATE(645)] = 24430, - [SMALL_STATE(646)] = 24473, - [SMALL_STATE(647)] = 24516, - [SMALL_STATE(648)] = 24559, - [SMALL_STATE(649)] = 24602, - [SMALL_STATE(650)] = 24645, - [SMALL_STATE(651)] = 24688, - [SMALL_STATE(652)] = 24731, - [SMALL_STATE(653)] = 24774, - [SMALL_STATE(654)] = 24817, - [SMALL_STATE(655)] = 24860, - [SMALL_STATE(656)] = 24907, - [SMALL_STATE(657)] = 24950, - [SMALL_STATE(658)] = 24993, - [SMALL_STATE(659)] = 25040, - [SMALL_STATE(660)] = 25083, - [SMALL_STATE(661)] = 25126, - [SMALL_STATE(662)] = 25169, - [SMALL_STATE(663)] = 25212, - [SMALL_STATE(664)] = 25255, - [SMALL_STATE(665)] = 25298, - [SMALL_STATE(666)] = 25341, - [SMALL_STATE(667)] = 25384, - [SMALL_STATE(668)] = 25431, - [SMALL_STATE(669)] = 25474, - [SMALL_STATE(670)] = 25517, - [SMALL_STATE(671)] = 25560, - [SMALL_STATE(672)] = 25607, - [SMALL_STATE(673)] = 25650, - [SMALL_STATE(674)] = 25693, - [SMALL_STATE(675)] = 25736, - [SMALL_STATE(676)] = 25779, - [SMALL_STATE(677)] = 25826, - [SMALL_STATE(678)] = 25869, - [SMALL_STATE(679)] = 25912, - [SMALL_STATE(680)] = 25955, - [SMALL_STATE(681)] = 26002, - [SMALL_STATE(682)] = 26045, - [SMALL_STATE(683)] = 26088, - [SMALL_STATE(684)] = 26131, - [SMALL_STATE(685)] = 26174, - [SMALL_STATE(686)] = 26217, - [SMALL_STATE(687)] = 26260, - [SMALL_STATE(688)] = 26303, - [SMALL_STATE(689)] = 26346, - [SMALL_STATE(690)] = 26393, - [SMALL_STATE(691)] = 26436, - [SMALL_STATE(692)] = 26479, - [SMALL_STATE(693)] = 26522, - [SMALL_STATE(694)] = 26565, - [SMALL_STATE(695)] = 26612, - [SMALL_STATE(696)] = 26655, - [SMALL_STATE(697)] = 26698, - [SMALL_STATE(698)] = 26741, - [SMALL_STATE(699)] = 26784, - [SMALL_STATE(700)] = 26827, - [SMALL_STATE(701)] = 26870, - [SMALL_STATE(702)] = 26913, - [SMALL_STATE(703)] = 26956, - [SMALL_STATE(704)] = 26999, - [SMALL_STATE(705)] = 27042, - [SMALL_STATE(706)] = 27085, - [SMALL_STATE(707)] = 27132, - [SMALL_STATE(708)] = 27175, - [SMALL_STATE(709)] = 27218, - [SMALL_STATE(710)] = 27261, - [SMALL_STATE(711)] = 27304, - [SMALL_STATE(712)] = 27347, - [SMALL_STATE(713)] = 27390, - [SMALL_STATE(714)] = 27433, - [SMALL_STATE(715)] = 27476, - [SMALL_STATE(716)] = 27519, - [SMALL_STATE(717)] = 27566, - [SMALL_STATE(718)] = 27609, - [SMALL_STATE(719)] = 27652, - [SMALL_STATE(720)] = 27695, - [SMALL_STATE(721)] = 27738, - [SMALL_STATE(722)] = 27781, - [SMALL_STATE(723)] = 27824, - [SMALL_STATE(724)] = 27867, - [SMALL_STATE(725)] = 27914, - [SMALL_STATE(726)] = 27957, - [SMALL_STATE(727)] = 28004, - [SMALL_STATE(728)] = 28051, - [SMALL_STATE(729)] = 28094, - [SMALL_STATE(730)] = 28137, - [SMALL_STATE(731)] = 28180, - [SMALL_STATE(732)] = 28223, - [SMALL_STATE(733)] = 28270, - [SMALL_STATE(734)] = 28313, - [SMALL_STATE(735)] = 28356, - [SMALL_STATE(736)] = 28399, - [SMALL_STATE(737)] = 28442, - [SMALL_STATE(738)] = 28493, - [SMALL_STATE(739)] = 28536, - [SMALL_STATE(740)] = 28579, - [SMALL_STATE(741)] = 28622, - [SMALL_STATE(742)] = 28669, - [SMALL_STATE(743)] = 28716, - [SMALL_STATE(744)] = 28759, - [SMALL_STATE(745)] = 28802, - [SMALL_STATE(746)] = 28845, - [SMALL_STATE(747)] = 28888, - [SMALL_STATE(748)] = 28931, - [SMALL_STATE(749)] = 28974, - [SMALL_STATE(750)] = 29017, - [SMALL_STATE(751)] = 29060, - [SMALL_STATE(752)] = 29107, - [SMALL_STATE(753)] = 29150, - [SMALL_STATE(754)] = 29193, - [SMALL_STATE(755)] = 29236, - [SMALL_STATE(756)] = 29279, - [SMALL_STATE(757)] = 29322, - [SMALL_STATE(758)] = 29365, - [SMALL_STATE(759)] = 29407, - [SMALL_STATE(760)] = 29449, - [SMALL_STATE(761)] = 29491, - [SMALL_STATE(762)] = 29533, - [SMALL_STATE(763)] = 29575, - [SMALL_STATE(764)] = 29617, - [SMALL_STATE(765)] = 29659, - [SMALL_STATE(766)] = 29701, - [SMALL_STATE(767)] = 29743, - [SMALL_STATE(768)] = 29785, - [SMALL_STATE(769)] = 29827, - [SMALL_STATE(770)] = 29869, - [SMALL_STATE(771)] = 29911, - [SMALL_STATE(772)] = 29953, - [SMALL_STATE(773)] = 29995, - [SMALL_STATE(774)] = 30037, - [SMALL_STATE(775)] = 30079, - [SMALL_STATE(776)] = 30121, - [SMALL_STATE(777)] = 30167, - [SMALL_STATE(778)] = 30209, - [SMALL_STATE(779)] = 30251, - [SMALL_STATE(780)] = 30297, - [SMALL_STATE(781)] = 30339, - [SMALL_STATE(782)] = 30381, - [SMALL_STATE(783)] = 30423, - [SMALL_STATE(784)] = 30497, - [SMALL_STATE(785)] = 30539, - [SMALL_STATE(786)] = 30585, - [SMALL_STATE(787)] = 30627, - [SMALL_STATE(788)] = 30669, - [SMALL_STATE(789)] = 30711, - [SMALL_STATE(790)] = 30753, - [SMALL_STATE(791)] = 30795, - [SMALL_STATE(792)] = 30837, - [SMALL_STATE(793)] = 30879, - [SMALL_STATE(794)] = 30921, - [SMALL_STATE(795)] = 30963, - [SMALL_STATE(796)] = 31005, - [SMALL_STATE(797)] = 31047, - [SMALL_STATE(798)] = 31089, - [SMALL_STATE(799)] = 31131, - [SMALL_STATE(800)] = 31177, - [SMALL_STATE(801)] = 31219, - [SMALL_STATE(802)] = 31261, - [SMALL_STATE(803)] = 31303, - [SMALL_STATE(804)] = 31345, - [SMALL_STATE(805)] = 31387, - [SMALL_STATE(806)] = 31429, - [SMALL_STATE(807)] = 31471, - [SMALL_STATE(808)] = 31513, - [SMALL_STATE(809)] = 31587, - [SMALL_STATE(810)] = 31629, - [SMALL_STATE(811)] = 31671, - [SMALL_STATE(812)] = 31713, - [SMALL_STATE(813)] = 31755, - [SMALL_STATE(814)] = 31797, - [SMALL_STATE(815)] = 31839, - [SMALL_STATE(816)] = 31881, - [SMALL_STATE(817)] = 31923, - [SMALL_STATE(818)] = 31965, - [SMALL_STATE(819)] = 32007, - [SMALL_STATE(820)] = 32049, - [SMALL_STATE(821)] = 32091, - [SMALL_STATE(822)] = 32133, - [SMALL_STATE(823)] = 32175, - [SMALL_STATE(824)] = 32221, - [SMALL_STATE(825)] = 32263, - [SMALL_STATE(826)] = 32305, - [SMALL_STATE(827)] = 32351, - [SMALL_STATE(828)] = 32393, - [SMALL_STATE(829)] = 32435, - [SMALL_STATE(830)] = 32477, - [SMALL_STATE(831)] = 32519, - [SMALL_STATE(832)] = 32593, - [SMALL_STATE(833)] = 32635, - [SMALL_STATE(834)] = 32677, - [SMALL_STATE(835)] = 32719, - [SMALL_STATE(836)] = 32761, - [SMALL_STATE(837)] = 32803, - [SMALL_STATE(838)] = 32845, - [SMALL_STATE(839)] = 32887, - [SMALL_STATE(840)] = 32929, - [SMALL_STATE(841)] = 32971, - [SMALL_STATE(842)] = 33013, - [SMALL_STATE(843)] = 33055, - [SMALL_STATE(844)] = 33097, - [SMALL_STATE(845)] = 33139, - [SMALL_STATE(846)] = 33181, - [SMALL_STATE(847)] = 33231, - [SMALL_STATE(848)] = 33273, - [SMALL_STATE(849)] = 33315, - [SMALL_STATE(850)] = 33357, - [SMALL_STATE(851)] = 33399, - [SMALL_STATE(852)] = 33445, - [SMALL_STATE(853)] = 33487, - [SMALL_STATE(854)] = 33529, - [SMALL_STATE(855)] = 33571, - [SMALL_STATE(856)] = 33613, - [SMALL_STATE(857)] = 33687, - [SMALL_STATE(858)] = 33729, - [SMALL_STATE(859)] = 33771, - [SMALL_STATE(860)] = 33813, - [SMALL_STATE(861)] = 33855, - [SMALL_STATE(862)] = 33897, - [SMALL_STATE(863)] = 33939, - [SMALL_STATE(864)] = 33981, - [SMALL_STATE(865)] = 34023, - [SMALL_STATE(866)] = 34065, - [SMALL_STATE(867)] = 34107, - [SMALL_STATE(868)] = 34149, - [SMALL_STATE(869)] = 34191, - [SMALL_STATE(870)] = 34233, - [SMALL_STATE(871)] = 34275, - [SMALL_STATE(872)] = 34317, - [SMALL_STATE(873)] = 34359, - [SMALL_STATE(874)] = 34401, - [SMALL_STATE(875)] = 34443, - [SMALL_STATE(876)] = 34485, - [SMALL_STATE(877)] = 34527, - [SMALL_STATE(878)] = 34569, - [SMALL_STATE(879)] = 34611, - [SMALL_STATE(880)] = 34653, - [SMALL_STATE(881)] = 34695, - [SMALL_STATE(882)] = 34737, - [SMALL_STATE(883)] = 34779, - [SMALL_STATE(884)] = 34821, - [SMALL_STATE(885)] = 34863, - [SMALL_STATE(886)] = 34905, - [SMALL_STATE(887)] = 34947, - [SMALL_STATE(888)] = 34989, - [SMALL_STATE(889)] = 35031, - [SMALL_STATE(890)] = 35073, - [SMALL_STATE(891)] = 35115, - [SMALL_STATE(892)] = 35157, - [SMALL_STATE(893)] = 35203, - [SMALL_STATE(894)] = 35253, - [SMALL_STATE(895)] = 35327, - [SMALL_STATE(896)] = 35369, - [SMALL_STATE(897)] = 35411, - [SMALL_STATE(898)] = 35453, - [SMALL_STATE(899)] = 35502, - [SMALL_STATE(900)] = 35543, - [SMALL_STATE(901)] = 35584, - [SMALL_STATE(902)] = 35625, - [SMALL_STATE(903)] = 35666, - [SMALL_STATE(904)] = 35707, - [SMALL_STATE(905)] = 35748, - [SMALL_STATE(906)] = 35789, - [SMALL_STATE(907)] = 35830, - [SMALL_STATE(908)] = 35871, - [SMALL_STATE(909)] = 35912, - [SMALL_STATE(910)] = 35978, - [SMALL_STATE(911)] = 36044, - [SMALL_STATE(912)] = 36110, - [SMALL_STATE(913)] = 36176, - [SMALL_STATE(914)] = 36242, - [SMALL_STATE(915)] = 36308, - [SMALL_STATE(916)] = 36374, - [SMALL_STATE(917)] = 36440, - [SMALL_STATE(918)] = 36488, - [SMALL_STATE(919)] = 36534, - [SMALL_STATE(920)] = 36600, - [SMALL_STATE(921)] = 36649, - [SMALL_STATE(922)] = 36710, - [SMALL_STATE(923)] = 36771, - [SMALL_STATE(924)] = 36832, - [SMALL_STATE(925)] = 36893, - [SMALL_STATE(926)] = 36954, - [SMALL_STATE(927)] = 37015, - [SMALL_STATE(928)] = 37076, - [SMALL_STATE(929)] = 37137, - [SMALL_STATE(930)] = 37198, - [SMALL_STATE(931)] = 37259, - [SMALL_STATE(932)] = 37320, - [SMALL_STATE(933)] = 37383, - [SMALL_STATE(934)] = 37444, - [SMALL_STATE(935)] = 37505, - [SMALL_STATE(936)] = 37566, - [SMALL_STATE(937)] = 37627, - [SMALL_STATE(938)] = 37688, - [SMALL_STATE(939)] = 37749, - [SMALL_STATE(940)] = 37810, - [SMALL_STATE(941)] = 37871, - [SMALL_STATE(942)] = 37932, - [SMALL_STATE(943)] = 37993, - [SMALL_STATE(944)] = 38054, - [SMALL_STATE(945)] = 38115, - [SMALL_STATE(946)] = 38176, - [SMALL_STATE(947)] = 38237, - [SMALL_STATE(948)] = 38298, - [SMALL_STATE(949)] = 38359, - [SMALL_STATE(950)] = 38420, - [SMALL_STATE(951)] = 38481, - [SMALL_STATE(952)] = 38542, - [SMALL_STATE(953)] = 38603, - [SMALL_STATE(954)] = 38664, - [SMALL_STATE(955)] = 38727, - [SMALL_STATE(956)] = 38788, - [SMALL_STATE(957)] = 38851, - [SMALL_STATE(958)] = 38914, - [SMALL_STATE(959)] = 38977, - [SMALL_STATE(960)] = 39038, - [SMALL_STATE(961)] = 39099, - [SMALL_STATE(962)] = 39160, - [SMALL_STATE(963)] = 39221, - [SMALL_STATE(964)] = 39282, - [SMALL_STATE(965)] = 39343, - [SMALL_STATE(966)] = 39404, - [SMALL_STATE(967)] = 39465, - [SMALL_STATE(968)] = 39528, - [SMALL_STATE(969)] = 39591, - [SMALL_STATE(970)] = 39652, - [SMALL_STATE(971)] = 39713, - [SMALL_STATE(972)] = 39776, - [SMALL_STATE(973)] = 39839, - [SMALL_STATE(974)] = 39900, - [SMALL_STATE(975)] = 39963, - [SMALL_STATE(976)] = 40024, - [SMALL_STATE(977)] = 40085, - [SMALL_STATE(978)] = 40146, - [SMALL_STATE(979)] = 40207, - [SMALL_STATE(980)] = 40270, - [SMALL_STATE(981)] = 40331, - [SMALL_STATE(982)] = 40392, - [SMALL_STATE(983)] = 40453, - [SMALL_STATE(984)] = 40514, - [SMALL_STATE(985)] = 40575, - [SMALL_STATE(986)] = 40636, - [SMALL_STATE(987)] = 40697, - [SMALL_STATE(988)] = 40758, - [SMALL_STATE(989)] = 40819, - [SMALL_STATE(990)] = 40880, - [SMALL_STATE(991)] = 40941, - [SMALL_STATE(992)] = 41002, - [SMALL_STATE(993)] = 41063, - [SMALL_STATE(994)] = 41124, - [SMALL_STATE(995)] = 41185, - [SMALL_STATE(996)] = 41232, - [SMALL_STATE(997)] = 41293, - [SMALL_STATE(998)] = 41354, - [SMALL_STATE(999)] = 41415, - [SMALL_STATE(1000)] = 41476, - [SMALL_STATE(1001)] = 41537, - [SMALL_STATE(1002)] = 41598, - [SMALL_STATE(1003)] = 41661, - [SMALL_STATE(1004)] = 41724, - [SMALL_STATE(1005)] = 41785, - [SMALL_STATE(1006)] = 41846, - [SMALL_STATE(1007)] = 41907, - [SMALL_STATE(1008)] = 41968, - [SMALL_STATE(1009)] = 42029, - [SMALL_STATE(1010)] = 42090, - [SMALL_STATE(1011)] = 42151, - [SMALL_STATE(1012)] = 42212, - [SMALL_STATE(1013)] = 42273, - [SMALL_STATE(1014)] = 42334, - [SMALL_STATE(1015)] = 42395, - [SMALL_STATE(1016)] = 42456, - [SMALL_STATE(1017)] = 42517, - [SMALL_STATE(1018)] = 42578, - [SMALL_STATE(1019)] = 42639, - [SMALL_STATE(1020)] = 42700, - [SMALL_STATE(1021)] = 42761, - [SMALL_STATE(1022)] = 42822, - [SMALL_STATE(1023)] = 42883, - [SMALL_STATE(1024)] = 42944, - [SMALL_STATE(1025)] = 43005, - [SMALL_STATE(1026)] = 43066, - [SMALL_STATE(1027)] = 43127, - [SMALL_STATE(1028)] = 43188, - [SMALL_STATE(1029)] = 43249, - [SMALL_STATE(1030)] = 43310, - [SMALL_STATE(1031)] = 43371, - [SMALL_STATE(1032)] = 43432, - [SMALL_STATE(1033)] = 43493, - [SMALL_STATE(1034)] = 43554, - [SMALL_STATE(1035)] = 43615, - [SMALL_STATE(1036)] = 43676, - [SMALL_STATE(1037)] = 43737, - [SMALL_STATE(1038)] = 43798, - [SMALL_STATE(1039)] = 43859, - [SMALL_STATE(1040)] = 43920, - [SMALL_STATE(1041)] = 43981, - [SMALL_STATE(1042)] = 44042, - [SMALL_STATE(1043)] = 44103, - [SMALL_STATE(1044)] = 44164, - [SMALL_STATE(1045)] = 44225, - [SMALL_STATE(1046)] = 44286, - [SMALL_STATE(1047)] = 44347, - [SMALL_STATE(1048)] = 44408, - [SMALL_STATE(1049)] = 44471, - [SMALL_STATE(1050)] = 44534, - [SMALL_STATE(1051)] = 44595, - [SMALL_STATE(1052)] = 44656, - [SMALL_STATE(1053)] = 44717, - [SMALL_STATE(1054)] = 44778, - [SMALL_STATE(1055)] = 44839, - [SMALL_STATE(1056)] = 44900, - [SMALL_STATE(1057)] = 44961, - [SMALL_STATE(1058)] = 45022, - [SMALL_STATE(1059)] = 45083, - [SMALL_STATE(1060)] = 45144, - [SMALL_STATE(1061)] = 45205, - [SMALL_STATE(1062)] = 45266, - [SMALL_STATE(1063)] = 45327, - [SMALL_STATE(1064)] = 45388, - [SMALL_STATE(1065)] = 45449, - [SMALL_STATE(1066)] = 45510, - [SMALL_STATE(1067)] = 45571, - [SMALL_STATE(1068)] = 45632, - [SMALL_STATE(1069)] = 45693, - [SMALL_STATE(1070)] = 45754, - [SMALL_STATE(1071)] = 45815, - [SMALL_STATE(1072)] = 45876, - [SMALL_STATE(1073)] = 45937, - [SMALL_STATE(1074)] = 45998, - [SMALL_STATE(1075)] = 46059, - [SMALL_STATE(1076)] = 46122, - [SMALL_STATE(1077)] = 46183, - [SMALL_STATE(1078)] = 46244, - [SMALL_STATE(1079)] = 46305, - [SMALL_STATE(1080)] = 46366, - [SMALL_STATE(1081)] = 46427, - [SMALL_STATE(1082)] = 46488, - [SMALL_STATE(1083)] = 46549, - [SMALL_STATE(1084)] = 46610, - [SMALL_STATE(1085)] = 46671, - [SMALL_STATE(1086)] = 46732, - [SMALL_STATE(1087)] = 46793, - [SMALL_STATE(1088)] = 46854, - [SMALL_STATE(1089)] = 46915, - [SMALL_STATE(1090)] = 46976, - [SMALL_STATE(1091)] = 47037, - [SMALL_STATE(1092)] = 47098, - [SMALL_STATE(1093)] = 47159, - [SMALL_STATE(1094)] = 47220, - [SMALL_STATE(1095)] = 47281, - [SMALL_STATE(1096)] = 47342, - [SMALL_STATE(1097)] = 47403, - [SMALL_STATE(1098)] = 47464, - [SMALL_STATE(1099)] = 47525, - [SMALL_STATE(1100)] = 47586, - [SMALL_STATE(1101)] = 47647, - [SMALL_STATE(1102)] = 47708, - [SMALL_STATE(1103)] = 47769, - [SMALL_STATE(1104)] = 47830, - [SMALL_STATE(1105)] = 47891, - [SMALL_STATE(1106)] = 47952, - [SMALL_STATE(1107)] = 48013, - [SMALL_STATE(1108)] = 48074, - [SMALL_STATE(1109)] = 48135, - [SMALL_STATE(1110)] = 48196, - [SMALL_STATE(1111)] = 48257, - [SMALL_STATE(1112)] = 48318, - [SMALL_STATE(1113)] = 48379, - [SMALL_STATE(1114)] = 48440, - [SMALL_STATE(1115)] = 48501, - [SMALL_STATE(1116)] = 48562, - [SMALL_STATE(1117)] = 48623, - [SMALL_STATE(1118)] = 48684, - [SMALL_STATE(1119)] = 48745, - [SMALL_STATE(1120)] = 48806, - [SMALL_STATE(1121)] = 48867, - [SMALL_STATE(1122)] = 48928, - [SMALL_STATE(1123)] = 48989, - [SMALL_STATE(1124)] = 49050, - [SMALL_STATE(1125)] = 49111, - [SMALL_STATE(1126)] = 49172, - [SMALL_STATE(1127)] = 49233, - [SMALL_STATE(1128)] = 49294, - [SMALL_STATE(1129)] = 49355, - [SMALL_STATE(1130)] = 49416, - [SMALL_STATE(1131)] = 49477, - [SMALL_STATE(1132)] = 49538, - [SMALL_STATE(1133)] = 49599, - [SMALL_STATE(1134)] = 49660, - [SMALL_STATE(1135)] = 49721, - [SMALL_STATE(1136)] = 49782, - [SMALL_STATE(1137)] = 49843, - [SMALL_STATE(1138)] = 49904, - [SMALL_STATE(1139)] = 49965, - [SMALL_STATE(1140)] = 50026, - [SMALL_STATE(1141)] = 50087, - [SMALL_STATE(1142)] = 50148, - [SMALL_STATE(1143)] = 50209, - [SMALL_STATE(1144)] = 50270, - [SMALL_STATE(1145)] = 50331, - [SMALL_STATE(1146)] = 50392, - [SMALL_STATE(1147)] = 50453, - [SMALL_STATE(1148)] = 50514, - [SMALL_STATE(1149)] = 50575, - [SMALL_STATE(1150)] = 50636, - [SMALL_STATE(1151)] = 50697, - [SMALL_STATE(1152)] = 50758, - [SMALL_STATE(1153)] = 50819, - [SMALL_STATE(1154)] = 50880, - [SMALL_STATE(1155)] = 50927, - [SMALL_STATE(1156)] = 50988, - [SMALL_STATE(1157)] = 51049, - [SMALL_STATE(1158)] = 51110, - [SMALL_STATE(1159)] = 51171, - [SMALL_STATE(1160)] = 51232, - [SMALL_STATE(1161)] = 51293, - [SMALL_STATE(1162)] = 51354, - [SMALL_STATE(1163)] = 51415, - [SMALL_STATE(1164)] = 51476, - [SMALL_STATE(1165)] = 51537, - [SMALL_STATE(1166)] = 51598, - [SMALL_STATE(1167)] = 51659, - [SMALL_STATE(1168)] = 51720, - [SMALL_STATE(1169)] = 51781, - [SMALL_STATE(1170)] = 51842, - [SMALL_STATE(1171)] = 51903, - [SMALL_STATE(1172)] = 51964, - [SMALL_STATE(1173)] = 52027, - [SMALL_STATE(1174)] = 52088, - [SMALL_STATE(1175)] = 52149, - [SMALL_STATE(1176)] = 52210, - [SMALL_STATE(1177)] = 52271, - [SMALL_STATE(1178)] = 52332, - [SMALL_STATE(1179)] = 52393, - [SMALL_STATE(1180)] = 52454, - [SMALL_STATE(1181)] = 52515, - [SMALL_STATE(1182)] = 52576, - [SMALL_STATE(1183)] = 52637, - [SMALL_STATE(1184)] = 52698, - [SMALL_STATE(1185)] = 52759, - [SMALL_STATE(1186)] = 52820, - [SMALL_STATE(1187)] = 52881, - [SMALL_STATE(1188)] = 52942, - [SMALL_STATE(1189)] = 53000, - [SMALL_STATE(1190)] = 53058, - [SMALL_STATE(1191)] = 53118, - [SMALL_STATE(1192)] = 53176, - [SMALL_STATE(1193)] = 53234, - [SMALL_STATE(1194)] = 53292, - [SMALL_STATE(1195)] = 53350, - [SMALL_STATE(1196)] = 53408, - [SMALL_STATE(1197)] = 53466, - [SMALL_STATE(1198)] = 53524, - [SMALL_STATE(1199)] = 53582, - [SMALL_STATE(1200)] = 53640, - [SMALL_STATE(1201)] = 53698, - [SMALL_STATE(1202)] = 53756, - [SMALL_STATE(1203)] = 53814, - [SMALL_STATE(1204)] = 53872, - [SMALL_STATE(1205)] = 53930, - [SMALL_STATE(1206)] = 53988, - [SMALL_STATE(1207)] = 54046, - [SMALL_STATE(1208)] = 54104, - [SMALL_STATE(1209)] = 54162, - [SMALL_STATE(1210)] = 54220, - [SMALL_STATE(1211)] = 54278, - [SMALL_STATE(1212)] = 54336, - [SMALL_STATE(1213)] = 54394, - [SMALL_STATE(1214)] = 54452, - [SMALL_STATE(1215)] = 54510, - [SMALL_STATE(1216)] = 54568, - [SMALL_STATE(1217)] = 54626, - [SMALL_STATE(1218)] = 54684, - [SMALL_STATE(1219)] = 54742, - [SMALL_STATE(1220)] = 54800, - [SMALL_STATE(1221)] = 54858, - [SMALL_STATE(1222)] = 54916, - [SMALL_STATE(1223)] = 54974, - [SMALL_STATE(1224)] = 55032, - [SMALL_STATE(1225)] = 55092, - [SMALL_STATE(1226)] = 55150, - [SMALL_STATE(1227)] = 55208, - [SMALL_STATE(1228)] = 55266, - [SMALL_STATE(1229)] = 55324, - [SMALL_STATE(1230)] = 55382, - [SMALL_STATE(1231)] = 55440, - [SMALL_STATE(1232)] = 55498, - [SMALL_STATE(1233)] = 55556, - [SMALL_STATE(1234)] = 55614, - [SMALL_STATE(1235)] = 55672, - [SMALL_STATE(1236)] = 55730, - [SMALL_STATE(1237)] = 55788, - [SMALL_STATE(1238)] = 55846, - [SMALL_STATE(1239)] = 55904, - [SMALL_STATE(1240)] = 55962, - [SMALL_STATE(1241)] = 56020, - [SMALL_STATE(1242)] = 56078, - [SMALL_STATE(1243)] = 56136, - [SMALL_STATE(1244)] = 56194, - [SMALL_STATE(1245)] = 56252, - [SMALL_STATE(1246)] = 56310, - [SMALL_STATE(1247)] = 56368, - [SMALL_STATE(1248)] = 56426, - [SMALL_STATE(1249)] = 56484, - [SMALL_STATE(1250)] = 56542, - [SMALL_STATE(1251)] = 56600, - [SMALL_STATE(1252)] = 56658, - [SMALL_STATE(1253)] = 56716, - [SMALL_STATE(1254)] = 56774, - [SMALL_STATE(1255)] = 56832, - [SMALL_STATE(1256)] = 56890, - [SMALL_STATE(1257)] = 56948, - [SMALL_STATE(1258)] = 57006, - [SMALL_STATE(1259)] = 57064, - [SMALL_STATE(1260)] = 57122, - [SMALL_STATE(1261)] = 57180, - [SMALL_STATE(1262)] = 57238, - [SMALL_STATE(1263)] = 57296, - [SMALL_STATE(1264)] = 57354, - [SMALL_STATE(1265)] = 57412, - [SMALL_STATE(1266)] = 57470, - [SMALL_STATE(1267)] = 57528, - [SMALL_STATE(1268)] = 57586, - [SMALL_STATE(1269)] = 57644, - [SMALL_STATE(1270)] = 57702, - [SMALL_STATE(1271)] = 57760, - [SMALL_STATE(1272)] = 57818, - [SMALL_STATE(1273)] = 57876, - [SMALL_STATE(1274)] = 57934, - [SMALL_STATE(1275)] = 57992, - [SMALL_STATE(1276)] = 58052, - [SMALL_STATE(1277)] = 58110, - [SMALL_STATE(1278)] = 58168, - [SMALL_STATE(1279)] = 58226, - [SMALL_STATE(1280)] = 58284, - [SMALL_STATE(1281)] = 58342, - [SMALL_STATE(1282)] = 58402, - [SMALL_STATE(1283)] = 58460, - [SMALL_STATE(1284)] = 58518, - [SMALL_STATE(1285)] = 58576, - [SMALL_STATE(1286)] = 58634, - [SMALL_STATE(1287)] = 58692, - [SMALL_STATE(1288)] = 58750, - [SMALL_STATE(1289)] = 58810, - [SMALL_STATE(1290)] = 58868, - [SMALL_STATE(1291)] = 58926, - [SMALL_STATE(1292)] = 58984, - [SMALL_STATE(1293)] = 59042, - [SMALL_STATE(1294)] = 59100, - [SMALL_STATE(1295)] = 59158, - [SMALL_STATE(1296)] = 59216, - [SMALL_STATE(1297)] = 59274, - [SMALL_STATE(1298)] = 59332, - [SMALL_STATE(1299)] = 59390, - [SMALL_STATE(1300)] = 59448, - [SMALL_STATE(1301)] = 59506, - [SMALL_STATE(1302)] = 59564, - [SMALL_STATE(1303)] = 59622, - [SMALL_STATE(1304)] = 59680, - [SMALL_STATE(1305)] = 59738, - [SMALL_STATE(1306)] = 59796, - [SMALL_STATE(1307)] = 59854, - [SMALL_STATE(1308)] = 59912, - [SMALL_STATE(1309)] = 59970, - [SMALL_STATE(1310)] = 60028, - [SMALL_STATE(1311)] = 60086, - [SMALL_STATE(1312)] = 60144, - [SMALL_STATE(1313)] = 60202, - [SMALL_STATE(1314)] = 60260, - [SMALL_STATE(1315)] = 60318, - [SMALL_STATE(1316)] = 60376, - [SMALL_STATE(1317)] = 60434, - [SMALL_STATE(1318)] = 60492, - [SMALL_STATE(1319)] = 60550, - [SMALL_STATE(1320)] = 60610, - [SMALL_STATE(1321)] = 60668, - [SMALL_STATE(1322)] = 60726, - [SMALL_STATE(1323)] = 60784, - [SMALL_STATE(1324)] = 60842, - [SMALL_STATE(1325)] = 60900, - [SMALL_STATE(1326)] = 60958, - [SMALL_STATE(1327)] = 61016, - [SMALL_STATE(1328)] = 61074, - [SMALL_STATE(1329)] = 61132, - [SMALL_STATE(1330)] = 61190, - [SMALL_STATE(1331)] = 61248, - [SMALL_STATE(1332)] = 61306, - [SMALL_STATE(1333)] = 61364, - [SMALL_STATE(1334)] = 61422, - [SMALL_STATE(1335)] = 61480, - [SMALL_STATE(1336)] = 61538, - [SMALL_STATE(1337)] = 61596, - [SMALL_STATE(1338)] = 61654, - [SMALL_STATE(1339)] = 61712, - [SMALL_STATE(1340)] = 61770, - [SMALL_STATE(1341)] = 61828, - [SMALL_STATE(1342)] = 61886, - [SMALL_STATE(1343)] = 61944, - [SMALL_STATE(1344)] = 62002, - [SMALL_STATE(1345)] = 62060, - [SMALL_STATE(1346)] = 62118, - [SMALL_STATE(1347)] = 62176, - [SMALL_STATE(1348)] = 62234, - [SMALL_STATE(1349)] = 62292, - [SMALL_STATE(1350)] = 62350, - [SMALL_STATE(1351)] = 62408, - [SMALL_STATE(1352)] = 62466, - [SMALL_STATE(1353)] = 62524, - [SMALL_STATE(1354)] = 62582, - [SMALL_STATE(1355)] = 62640, - [SMALL_STATE(1356)] = 62698, - [SMALL_STATE(1357)] = 62756, - [SMALL_STATE(1358)] = 62814, - [SMALL_STATE(1359)] = 62872, - [SMALL_STATE(1360)] = 62930, - [SMALL_STATE(1361)] = 62988, - [SMALL_STATE(1362)] = 63046, - [SMALL_STATE(1363)] = 63104, - [SMALL_STATE(1364)] = 63162, - [SMALL_STATE(1365)] = 63220, - [SMALL_STATE(1366)] = 63278, - [SMALL_STATE(1367)] = 63336, - [SMALL_STATE(1368)] = 63394, - [SMALL_STATE(1369)] = 63452, - [SMALL_STATE(1370)] = 63510, - [SMALL_STATE(1371)] = 63568, - [SMALL_STATE(1372)] = 63626, - [SMALL_STATE(1373)] = 63686, - [SMALL_STATE(1374)] = 63744, - [SMALL_STATE(1375)] = 63802, - [SMALL_STATE(1376)] = 63860, - [SMALL_STATE(1377)] = 63918, - [SMALL_STATE(1378)] = 63976, - [SMALL_STATE(1379)] = 64034, - [SMALL_STATE(1380)] = 64092, - [SMALL_STATE(1381)] = 64150, - [SMALL_STATE(1382)] = 64208, - [SMALL_STATE(1383)] = 64266, - [SMALL_STATE(1384)] = 64324, - [SMALL_STATE(1385)] = 64382, - [SMALL_STATE(1386)] = 64440, - [SMALL_STATE(1387)] = 64498, - [SMALL_STATE(1388)] = 64556, - [SMALL_STATE(1389)] = 64614, - [SMALL_STATE(1390)] = 64672, - [SMALL_STATE(1391)] = 64730, - [SMALL_STATE(1392)] = 64788, - [SMALL_STATE(1393)] = 64846, - [SMALL_STATE(1394)] = 64904, - [SMALL_STATE(1395)] = 64962, - [SMALL_STATE(1396)] = 65020, - [SMALL_STATE(1397)] = 65078, - [SMALL_STATE(1398)] = 65138, - [SMALL_STATE(1399)] = 65196, - [SMALL_STATE(1400)] = 65254, - [SMALL_STATE(1401)] = 65312, - [SMALL_STATE(1402)] = 65372, - [SMALL_STATE(1403)] = 65430, - [SMALL_STATE(1404)] = 65488, - [SMALL_STATE(1405)] = 65546, - [SMALL_STATE(1406)] = 65604, - [SMALL_STATE(1407)] = 65662, - [SMALL_STATE(1408)] = 65720, - [SMALL_STATE(1409)] = 65778, - [SMALL_STATE(1410)] = 65836, - [SMALL_STATE(1411)] = 65894, - [SMALL_STATE(1412)] = 65952, - [SMALL_STATE(1413)] = 66010, - [SMALL_STATE(1414)] = 66068, - [SMALL_STATE(1415)] = 66126, - [SMALL_STATE(1416)] = 66184, - [SMALL_STATE(1417)] = 66242, - [SMALL_STATE(1418)] = 66300, - [SMALL_STATE(1419)] = 66358, - [SMALL_STATE(1420)] = 66416, - [SMALL_STATE(1421)] = 66474, - [SMALL_STATE(1422)] = 66532, - [SMALL_STATE(1423)] = 66590, - [SMALL_STATE(1424)] = 66648, - [SMALL_STATE(1425)] = 66706, - [SMALL_STATE(1426)] = 66764, - [SMALL_STATE(1427)] = 66822, - [SMALL_STATE(1428)] = 66880, - [SMALL_STATE(1429)] = 66938, - [SMALL_STATE(1430)] = 66996, - [SMALL_STATE(1431)] = 67054, - [SMALL_STATE(1432)] = 67112, - [SMALL_STATE(1433)] = 67170, - [SMALL_STATE(1434)] = 67228, - [SMALL_STATE(1435)] = 67286, - [SMALL_STATE(1436)] = 67344, - [SMALL_STATE(1437)] = 67402, - [SMALL_STATE(1438)] = 67460, - [SMALL_STATE(1439)] = 67518, - [SMALL_STATE(1440)] = 67576, - [SMALL_STATE(1441)] = 67634, - [SMALL_STATE(1442)] = 67692, - [SMALL_STATE(1443)] = 67750, - [SMALL_STATE(1444)] = 67808, - [SMALL_STATE(1445)] = 67866, - [SMALL_STATE(1446)] = 67924, - [SMALL_STATE(1447)] = 67982, - [SMALL_STATE(1448)] = 68040, - [SMALL_STATE(1449)] = 68098, - [SMALL_STATE(1450)] = 68156, - [SMALL_STATE(1451)] = 68214, - [SMALL_STATE(1452)] = 68272, - [SMALL_STATE(1453)] = 68330, - [SMALL_STATE(1454)] = 68388, - [SMALL_STATE(1455)] = 68446, - [SMALL_STATE(1456)] = 68506, - [SMALL_STATE(1457)] = 68564, - [SMALL_STATE(1458)] = 68622, - [SMALL_STATE(1459)] = 68680, - [SMALL_STATE(1460)] = 68738, - [SMALL_STATE(1461)] = 68796, - [SMALL_STATE(1462)] = 68854, - [SMALL_STATE(1463)] = 68912, - [SMALL_STATE(1464)] = 68970, - [SMALL_STATE(1465)] = 69028, - [SMALL_STATE(1466)] = 69086, - [SMALL_STATE(1467)] = 69144, - [SMALL_STATE(1468)] = 69202, - [SMALL_STATE(1469)] = 69260, - [SMALL_STATE(1470)] = 69318, - [SMALL_STATE(1471)] = 69376, - [SMALL_STATE(1472)] = 69434, - [SMALL_STATE(1473)] = 69492, - [SMALL_STATE(1474)] = 69550, - [SMALL_STATE(1475)] = 69608, - [SMALL_STATE(1476)] = 69666, - [SMALL_STATE(1477)] = 69724, - [SMALL_STATE(1478)] = 69782, - [SMALL_STATE(1479)] = 69840, - [SMALL_STATE(1480)] = 69898, - [SMALL_STATE(1481)] = 69956, - [SMALL_STATE(1482)] = 70014, - [SMALL_STATE(1483)] = 70072, - [SMALL_STATE(1484)] = 70130, - [SMALL_STATE(1485)] = 70188, - [SMALL_STATE(1486)] = 70246, - [SMALL_STATE(1487)] = 70304, - [SMALL_STATE(1488)] = 70362, - [SMALL_STATE(1489)] = 70420, - [SMALL_STATE(1490)] = 70478, - [SMALL_STATE(1491)] = 70538, - [SMALL_STATE(1492)] = 70596, - [SMALL_STATE(1493)] = 70656, - [SMALL_STATE(1494)] = 70716, - [SMALL_STATE(1495)] = 70774, - [SMALL_STATE(1496)] = 70832, - [SMALL_STATE(1497)] = 70890, - [SMALL_STATE(1498)] = 70948, - [SMALL_STATE(1499)] = 71006, - [SMALL_STATE(1500)] = 71064, - [SMALL_STATE(1501)] = 71122, - [SMALL_STATE(1502)] = 71180, - [SMALL_STATE(1503)] = 71238, - [SMALL_STATE(1504)] = 71296, - [SMALL_STATE(1505)] = 71354, - [SMALL_STATE(1506)] = 71412, - [SMALL_STATE(1507)] = 71470, - [SMALL_STATE(1508)] = 71528, - [SMALL_STATE(1509)] = 71586, - [SMALL_STATE(1510)] = 71644, - [SMALL_STATE(1511)] = 71702, - [SMALL_STATE(1512)] = 71760, - [SMALL_STATE(1513)] = 71818, - [SMALL_STATE(1514)] = 71876, - [SMALL_STATE(1515)] = 71934, - [SMALL_STATE(1516)] = 71992, - [SMALL_STATE(1517)] = 72050, - [SMALL_STATE(1518)] = 72108, - [SMALL_STATE(1519)] = 72166, - [SMALL_STATE(1520)] = 72224, - [SMALL_STATE(1521)] = 72282, - [SMALL_STATE(1522)] = 72342, - [SMALL_STATE(1523)] = 72400, - [SMALL_STATE(1524)] = 72458, - [SMALL_STATE(1525)] = 72516, - [SMALL_STATE(1526)] = 72574, - [SMALL_STATE(1527)] = 72632, - [SMALL_STATE(1528)] = 72690, - [SMALL_STATE(1529)] = 72748, - [SMALL_STATE(1530)] = 72806, - [SMALL_STATE(1531)] = 72864, - [SMALL_STATE(1532)] = 72922, - [SMALL_STATE(1533)] = 72980, - [SMALL_STATE(1534)] = 73038, - [SMALL_STATE(1535)] = 73096, - [SMALL_STATE(1536)] = 73154, - [SMALL_STATE(1537)] = 73212, - [SMALL_STATE(1538)] = 73270, - [SMALL_STATE(1539)] = 73328, - [SMALL_STATE(1540)] = 73386, - [SMALL_STATE(1541)] = 73444, - [SMALL_STATE(1542)] = 73502, - [SMALL_STATE(1543)] = 73560, - [SMALL_STATE(1544)] = 73618, - [SMALL_STATE(1545)] = 73676, - [SMALL_STATE(1546)] = 73736, - [SMALL_STATE(1547)] = 73796, - [SMALL_STATE(1548)] = 73854, - [SMALL_STATE(1549)] = 73912, - [SMALL_STATE(1550)] = 73972, - [SMALL_STATE(1551)] = 74032, - [SMALL_STATE(1552)] = 74092, - [SMALL_STATE(1553)] = 74150, - [SMALL_STATE(1554)] = 74208, - [SMALL_STATE(1555)] = 74268, - [SMALL_STATE(1556)] = 74326, - [SMALL_STATE(1557)] = 74384, - [SMALL_STATE(1558)] = 74444, - [SMALL_STATE(1559)] = 74502, - [SMALL_STATE(1560)] = 74560, - [SMALL_STATE(1561)] = 74618, - [SMALL_STATE(1562)] = 74676, - [SMALL_STATE(1563)] = 74734, - [SMALL_STATE(1564)] = 74792, - [SMALL_STATE(1565)] = 74850, - [SMALL_STATE(1566)] = 74908, - [SMALL_STATE(1567)] = 74966, - [SMALL_STATE(1568)] = 75024, - [SMALL_STATE(1569)] = 75082, - [SMALL_STATE(1570)] = 75140, - [SMALL_STATE(1571)] = 75198, - [SMALL_STATE(1572)] = 75256, - [SMALL_STATE(1573)] = 75314, - [SMALL_STATE(1574)] = 75372, - [SMALL_STATE(1575)] = 75430, - [SMALL_STATE(1576)] = 75488, - [SMALL_STATE(1577)] = 75546, - [SMALL_STATE(1578)] = 75604, - [SMALL_STATE(1579)] = 75662, - [SMALL_STATE(1580)] = 75720, - [SMALL_STATE(1581)] = 75778, - [SMALL_STATE(1582)] = 75836, - [SMALL_STATE(1583)] = 75894, - [SMALL_STATE(1584)] = 75954, - [SMALL_STATE(1585)] = 76012, - [SMALL_STATE(1586)] = 76072, - [SMALL_STATE(1587)] = 76130, - [SMALL_STATE(1588)] = 76190, - [SMALL_STATE(1589)] = 76248, - [SMALL_STATE(1590)] = 76308, - [SMALL_STATE(1591)] = 76368, - [SMALL_STATE(1592)] = 76428, - [SMALL_STATE(1593)] = 76486, - [SMALL_STATE(1594)] = 76544, - [SMALL_STATE(1595)] = 76602, - [SMALL_STATE(1596)] = 76662, - [SMALL_STATE(1597)] = 76720, - [SMALL_STATE(1598)] = 76778, - [SMALL_STATE(1599)] = 76836, - [SMALL_STATE(1600)] = 76894, - [SMALL_STATE(1601)] = 76952, - [SMALL_STATE(1602)] = 77010, - [SMALL_STATE(1603)] = 77068, - [SMALL_STATE(1604)] = 77128, - [SMALL_STATE(1605)] = 77186, - [SMALL_STATE(1606)] = 77244, - [SMALL_STATE(1607)] = 77304, - [SMALL_STATE(1608)] = 77364, - [SMALL_STATE(1609)] = 77422, - [SMALL_STATE(1610)] = 77480, - [SMALL_STATE(1611)] = 77538, - [SMALL_STATE(1612)] = 77598, - [SMALL_STATE(1613)] = 77656, - [SMALL_STATE(1614)] = 77714, - [SMALL_STATE(1615)] = 77772, - [SMALL_STATE(1616)] = 77830, - [SMALL_STATE(1617)] = 77888, - [SMALL_STATE(1618)] = 77946, - [SMALL_STATE(1619)] = 78004, - [SMALL_STATE(1620)] = 78062, - [SMALL_STATE(1621)] = 78120, - [SMALL_STATE(1622)] = 78178, - [SMALL_STATE(1623)] = 78236, - [SMALL_STATE(1624)] = 78294, - [SMALL_STATE(1625)] = 78352, - [SMALL_STATE(1626)] = 78410, - [SMALL_STATE(1627)] = 78468, - [SMALL_STATE(1628)] = 78526, - [SMALL_STATE(1629)] = 78584, - [SMALL_STATE(1630)] = 78642, - [SMALL_STATE(1631)] = 78700, - [SMALL_STATE(1632)] = 78758, - [SMALL_STATE(1633)] = 78816, - [SMALL_STATE(1634)] = 78874, - [SMALL_STATE(1635)] = 78932, - [SMALL_STATE(1636)] = 78990, - [SMALL_STATE(1637)] = 79048, - [SMALL_STATE(1638)] = 79106, - [SMALL_STATE(1639)] = 79164, - [SMALL_STATE(1640)] = 79222, - [SMALL_STATE(1641)] = 79280, - [SMALL_STATE(1642)] = 79338, - [SMALL_STATE(1643)] = 79396, - [SMALL_STATE(1644)] = 79454, - [SMALL_STATE(1645)] = 79512, - [SMALL_STATE(1646)] = 79570, - [SMALL_STATE(1647)] = 79628, - [SMALL_STATE(1648)] = 79686, - [SMALL_STATE(1649)] = 79744, - [SMALL_STATE(1650)] = 79802, - [SMALL_STATE(1651)] = 79860, - [SMALL_STATE(1652)] = 79918, - [SMALL_STATE(1653)] = 79976, - [SMALL_STATE(1654)] = 80036, - [SMALL_STATE(1655)] = 80094, - [SMALL_STATE(1656)] = 80152, - [SMALL_STATE(1657)] = 80203, - [SMALL_STATE(1658)] = 80244, - [SMALL_STATE(1659)] = 80281, - [SMALL_STATE(1660)] = 80332, - [SMALL_STATE(1661)] = 80371, - [SMALL_STATE(1662)] = 80416, - [SMALL_STATE(1663)] = 80461, - [SMALL_STATE(1664)] = 80511, - [SMALL_STATE(1665)] = 80549, - [SMALL_STATE(1666)] = 80593, - [SMALL_STATE(1667)] = 80643, - [SMALL_STATE(1668)] = 80681, - [SMALL_STATE(1669)] = 80725, - [SMALL_STATE(1670)] = 80769, - [SMALL_STATE(1671)] = 80813, - [SMALL_STATE(1672)] = 80849, - [SMALL_STATE(1673)] = 80885, - [SMALL_STATE(1674)] = 80922, - [SMALL_STATE(1675)] = 80971, - [SMALL_STATE(1676)] = 81014, - [SMALL_STATE(1677)] = 81051, - [SMALL_STATE(1678)] = 81086, - [SMALL_STATE(1679)] = 81121, - [SMALL_STATE(1680)] = 81158, - [SMALL_STATE(1681)] = 81195, - [SMALL_STATE(1682)] = 81232, - [SMALL_STATE(1683)] = 81269, - [SMALL_STATE(1684)] = 81306, - [SMALL_STATE(1685)] = 81343, - [SMALL_STATE(1686)] = 81386, - [SMALL_STATE(1687)] = 81423, - [SMALL_STATE(1688)] = 81472, - [SMALL_STATE(1689)] = 81509, - [SMALL_STATE(1690)] = 81548, - [SMALL_STATE(1691)] = 81597, - [SMALL_STATE(1692)] = 81634, - [SMALL_STATE(1693)] = 81671, - [SMALL_STATE(1694)] = 81720, - [SMALL_STATE(1695)] = 81757, - [SMALL_STATE(1696)] = 81806, - [SMALL_STATE(1697)] = 81843, - [SMALL_STATE(1698)] = 81892, - [SMALL_STATE(1699)] = 81929, - [SMALL_STATE(1700)] = 81966, - [SMALL_STATE(1701)] = 82009, - [SMALL_STATE(1702)] = 82067, - [SMALL_STATE(1703)] = 82103, - [SMALL_STATE(1704)] = 82149, - [SMALL_STATE(1705)] = 82185, - [SMALL_STATE(1706)] = 82237, - [SMALL_STATE(1707)] = 82283, - [SMALL_STATE(1708)] = 82319, - [SMALL_STATE(1709)] = 82355, - [SMALL_STATE(1710)] = 82391, - [SMALL_STATE(1711)] = 82427, - [SMALL_STATE(1712)] = 82463, - [SMALL_STATE(1713)] = 82499, - [SMALL_STATE(1714)] = 82557, - [SMALL_STATE(1715)] = 82593, - [SMALL_STATE(1716)] = 82651, - [SMALL_STATE(1717)] = 82683, - [SMALL_STATE(1718)] = 82719, - [SMALL_STATE(1719)] = 82755, - [SMALL_STATE(1720)] = 82789, - [SMALL_STATE(1721)] = 82841, - [SMALL_STATE(1722)] = 82873, - [SMALL_STATE(1723)] = 82905, - [SMALL_STATE(1724)] = 82941, - [SMALL_STATE(1725)] = 82999, - [SMALL_STATE(1726)] = 83057, - [SMALL_STATE(1727)] = 83089, - [SMALL_STATE(1728)] = 83121, - [SMALL_STATE(1729)] = 83157, - [SMALL_STATE(1730)] = 83209, - [SMALL_STATE(1731)] = 83243, - [SMALL_STATE(1732)] = 83301, - [SMALL_STATE(1733)] = 83347, - [SMALL_STATE(1734)] = 83379, - [SMALL_STATE(1735)] = 83411, - [SMALL_STATE(1736)] = 83443, - [SMALL_STATE(1737)] = 83475, - [SMALL_STATE(1738)] = 83533, - [SMALL_STATE(1739)] = 83579, - [SMALL_STATE(1740)] = 83613, - [SMALL_STATE(1741)] = 83645, - [SMALL_STATE(1742)] = 83677, - [SMALL_STATE(1743)] = 83709, - [SMALL_STATE(1744)] = 83741, - [SMALL_STATE(1745)] = 83773, - [SMALL_STATE(1746)] = 83805, - [SMALL_STATE(1747)] = 83837, - [SMALL_STATE(1748)] = 83869, - [SMALL_STATE(1749)] = 83901, - [SMALL_STATE(1750)] = 83933, - [SMALL_STATE(1751)] = 83965, - [SMALL_STATE(1752)] = 83997, - [SMALL_STATE(1753)] = 84029, - [SMALL_STATE(1754)] = 84065, - [SMALL_STATE(1755)] = 84101, - [SMALL_STATE(1756)] = 84159, - [SMALL_STATE(1757)] = 84217, - [SMALL_STATE(1758)] = 84263, - [SMALL_STATE(1759)] = 84299, - [SMALL_STATE(1760)] = 84351, - [SMALL_STATE(1761)] = 84385, - [SMALL_STATE(1762)] = 84417, - [SMALL_STATE(1763)] = 84475, - [SMALL_STATE(1764)] = 84507, - [SMALL_STATE(1765)] = 84565, - [SMALL_STATE(1766)] = 84601, - [SMALL_STATE(1767)] = 84637, - [SMALL_STATE(1768)] = 84669, - [SMALL_STATE(1769)] = 84701, - [SMALL_STATE(1770)] = 84737, - [SMALL_STATE(1771)] = 84773, - [SMALL_STATE(1772)] = 84819, - [SMALL_STATE(1773)] = 84853, - [SMALL_STATE(1774)] = 84889, - [SMALL_STATE(1775)] = 84947, - [SMALL_STATE(1776)] = 84979, - [SMALL_STATE(1777)] = 85015, - [SMALL_STATE(1778)] = 85046, - [SMALL_STATE(1779)] = 85077, - [SMALL_STATE(1780)] = 85108, - [SMALL_STATE(1781)] = 85139, - [SMALL_STATE(1782)] = 85170, - [SMALL_STATE(1783)] = 85201, - [SMALL_STATE(1784)] = 85232, - [SMALL_STATE(1785)] = 85263, - [SMALL_STATE(1786)] = 85294, - [SMALL_STATE(1787)] = 85325, - [SMALL_STATE(1788)] = 85356, - [SMALL_STATE(1789)] = 85387, - [SMALL_STATE(1790)] = 85418, - [SMALL_STATE(1791)] = 85449, - [SMALL_STATE(1792)] = 85480, - [SMALL_STATE(1793)] = 85511, - [SMALL_STATE(1794)] = 85542, - [SMALL_STATE(1795)] = 85573, - [SMALL_STATE(1796)] = 85604, - [SMALL_STATE(1797)] = 85635, - [SMALL_STATE(1798)] = 85692, - [SMALL_STATE(1799)] = 85723, - [SMALL_STATE(1800)] = 85754, - [SMALL_STATE(1801)] = 85785, - [SMALL_STATE(1802)] = 85816, - [SMALL_STATE(1803)] = 85847, - [SMALL_STATE(1804)] = 85878, - [SMALL_STATE(1805)] = 85909, - [SMALL_STATE(1806)] = 85940, - [SMALL_STATE(1807)] = 85971, - [SMALL_STATE(1808)] = 86006, - [SMALL_STATE(1809)] = 86037, - [SMALL_STATE(1810)] = 86072, - [SMALL_STATE(1811)] = 86103, - [SMALL_STATE(1812)] = 86160, - [SMALL_STATE(1813)] = 86191, - [SMALL_STATE(1814)] = 86222, - [SMALL_STATE(1815)] = 86253, - [SMALL_STATE(1816)] = 86284, - [SMALL_STATE(1817)] = 86315, - [SMALL_STATE(1818)] = 86346, - [SMALL_STATE(1819)] = 86377, - [SMALL_STATE(1820)] = 86408, - [SMALL_STATE(1821)] = 86439, - [SMALL_STATE(1822)] = 86470, - [SMALL_STATE(1823)] = 86501, - [SMALL_STATE(1824)] = 86532, - [SMALL_STATE(1825)] = 86589, - [SMALL_STATE(1826)] = 86620, - [SMALL_STATE(1827)] = 86651, - [SMALL_STATE(1828)] = 86708, - [SMALL_STATE(1829)] = 86743, - [SMALL_STATE(1830)] = 86774, - [SMALL_STATE(1831)] = 86805, - [SMALL_STATE(1832)] = 86840, - [SMALL_STATE(1833)] = 86871, - [SMALL_STATE(1834)] = 86900, - [SMALL_STATE(1835)] = 86931, - [SMALL_STATE(1836)] = 86962, - [SMALL_STATE(1837)] = 86993, - [SMALL_STATE(1838)] = 87024, - [SMALL_STATE(1839)] = 87055, - [SMALL_STATE(1840)] = 87086, - [SMALL_STATE(1841)] = 87117, - [SMALL_STATE(1842)] = 87148, - [SMALL_STATE(1843)] = 87183, - [SMALL_STATE(1844)] = 87218, - [SMALL_STATE(1845)] = 87275, - [SMALL_STATE(1846)] = 87310, - [SMALL_STATE(1847)] = 87341, - [SMALL_STATE(1848)] = 87398, - [SMALL_STATE(1849)] = 87429, - [SMALL_STATE(1850)] = 87460, - [SMALL_STATE(1851)] = 87517, - [SMALL_STATE(1852)] = 87574, - [SMALL_STATE(1853)] = 87609, - [SMALL_STATE(1854)] = 87644, - [SMALL_STATE(1855)] = 87679, - [SMALL_STATE(1856)] = 87710, - [SMALL_STATE(1857)] = 87741, - [SMALL_STATE(1858)] = 87776, - [SMALL_STATE(1859)] = 87807, - [SMALL_STATE(1860)] = 87842, - [SMALL_STATE(1861)] = 87877, - [SMALL_STATE(1862)] = 87912, - [SMALL_STATE(1863)] = 87943, - [SMALL_STATE(1864)] = 87974, - [SMALL_STATE(1865)] = 88005, - [SMALL_STATE(1866)] = 88036, - [SMALL_STATE(1867)] = 88067, - [SMALL_STATE(1868)] = 88098, - [SMALL_STATE(1869)] = 88129, - [SMALL_STATE(1870)] = 88186, - [SMALL_STATE(1871)] = 88243, - [SMALL_STATE(1872)] = 88300, - [SMALL_STATE(1873)] = 88335, - [SMALL_STATE(1874)] = 88366, - [SMALL_STATE(1875)] = 88397, - [SMALL_STATE(1876)] = 88428, - [SMALL_STATE(1877)] = 88459, - [SMALL_STATE(1878)] = 88490, - [SMALL_STATE(1879)] = 88521, - [SMALL_STATE(1880)] = 88552, - [SMALL_STATE(1881)] = 88583, - [SMALL_STATE(1882)] = 88614, - [SMALL_STATE(1883)] = 88645, - [SMALL_STATE(1884)] = 88676, - [SMALL_STATE(1885)] = 88707, - [SMALL_STATE(1886)] = 88738, - [SMALL_STATE(1887)] = 88769, - [SMALL_STATE(1888)] = 88800, - [SMALL_STATE(1889)] = 88831, - [SMALL_STATE(1890)] = 88862, - [SMALL_STATE(1891)] = 88893, - [SMALL_STATE(1892)] = 88924, - [SMALL_STATE(1893)] = 88955, - [SMALL_STATE(1894)] = 88986, - [SMALL_STATE(1895)] = 89017, - [SMALL_STATE(1896)] = 89048, - [SMALL_STATE(1897)] = 89079, - [SMALL_STATE(1898)] = 89110, - [SMALL_STATE(1899)] = 89141, - [SMALL_STATE(1900)] = 89172, - [SMALL_STATE(1901)] = 89203, - [SMALL_STATE(1902)] = 89234, - [SMALL_STATE(1903)] = 89265, - [SMALL_STATE(1904)] = 89296, - [SMALL_STATE(1905)] = 89327, - [SMALL_STATE(1906)] = 89358, - [SMALL_STATE(1907)] = 89389, - [SMALL_STATE(1908)] = 89420, - [SMALL_STATE(1909)] = 89451, - [SMALL_STATE(1910)] = 89508, - [SMALL_STATE(1911)] = 89539, - [SMALL_STATE(1912)] = 89570, - [SMALL_STATE(1913)] = 89601, - [SMALL_STATE(1914)] = 89632, - [SMALL_STATE(1915)] = 89667, - [SMALL_STATE(1916)] = 89698, - [SMALL_STATE(1917)] = 89729, - [SMALL_STATE(1918)] = 89760, - [SMALL_STATE(1919)] = 89791, - [SMALL_STATE(1920)] = 89826, - [SMALL_STATE(1921)] = 89857, - [SMALL_STATE(1922)] = 89888, - [SMALL_STATE(1923)] = 89919, - [SMALL_STATE(1924)] = 89950, - [SMALL_STATE(1925)] = 89981, - [SMALL_STATE(1926)] = 90012, - [SMALL_STATE(1927)] = 90043, - [SMALL_STATE(1928)] = 90074, - [SMALL_STATE(1929)] = 90109, - [SMALL_STATE(1930)] = 90140, - [SMALL_STATE(1931)] = 90171, - [SMALL_STATE(1932)] = 90202, - [SMALL_STATE(1933)] = 90233, - [SMALL_STATE(1934)] = 90268, - [SMALL_STATE(1935)] = 90299, - [SMALL_STATE(1936)] = 90331, - [SMALL_STATE(1937)] = 90361, - [SMALL_STATE(1938)] = 90391, - [SMALL_STATE(1939)] = 90423, - [SMALL_STATE(1940)] = 90453, - [SMALL_STATE(1941)] = 90483, - [SMALL_STATE(1942)] = 90513, - [SMALL_STATE(1943)] = 90543, - [SMALL_STATE(1944)] = 90573, - [SMALL_STATE(1945)] = 90603, - [SMALL_STATE(1946)] = 90637, - [SMALL_STATE(1947)] = 90667, - [SMALL_STATE(1948)] = 90695, - [SMALL_STATE(1949)] = 90725, - [SMALL_STATE(1950)] = 90757, - [SMALL_STATE(1951)] = 90787, - [SMALL_STATE(1952)] = 90819, - [SMALL_STATE(1953)] = 90849, - [SMALL_STATE(1954)] = 90879, - [SMALL_STATE(1955)] = 90909, - [SMALL_STATE(1956)] = 90939, - [SMALL_STATE(1957)] = 90969, - [SMALL_STATE(1958)] = 91001, - [SMALL_STATE(1959)] = 91031, - [SMALL_STATE(1960)] = 91061, - [SMALL_STATE(1961)] = 91091, - [SMALL_STATE(1962)] = 91121, - [SMALL_STATE(1963)] = 91151, - [SMALL_STATE(1964)] = 91181, - [SMALL_STATE(1965)] = 91209, - [SMALL_STATE(1966)] = 91239, - [SMALL_STATE(1967)] = 91271, - [SMALL_STATE(1968)] = 91303, - [SMALL_STATE(1969)] = 91335, - [SMALL_STATE(1970)] = 91365, - [SMALL_STATE(1971)] = 91395, - [SMALL_STATE(1972)] = 91425, - [SMALL_STATE(1973)] = 91455, - [SMALL_STATE(1974)] = 91485, - [SMALL_STATE(1975)] = 91521, - [SMALL_STATE(1976)] = 91575, - [SMALL_STATE(1977)] = 91607, - [SMALL_STATE(1978)] = 91637, - [SMALL_STATE(1979)] = 91667, - [SMALL_STATE(1980)] = 91697, - [SMALL_STATE(1981)] = 91751, - [SMALL_STATE(1982)] = 91781, - [SMALL_STATE(1983)] = 91835, - [SMALL_STATE(1984)] = 91867, - [SMALL_STATE(1985)] = 91897, - [SMALL_STATE(1986)] = 91927, - [SMALL_STATE(1987)] = 91957, - [SMALL_STATE(1988)] = 91987, - [SMALL_STATE(1989)] = 92017, - [SMALL_STATE(1990)] = 92047, - [SMALL_STATE(1991)] = 92077, - [SMALL_STATE(1992)] = 92107, - [SMALL_STATE(1993)] = 92137, - [SMALL_STATE(1994)] = 92191, - [SMALL_STATE(1995)] = 92223, - [SMALL_STATE(1996)] = 92253, - [SMALL_STATE(1997)] = 92283, - [SMALL_STATE(1998)] = 92315, - [SMALL_STATE(1999)] = 92351, - [SMALL_STATE(2000)] = 92381, - [SMALL_STATE(2001)] = 92411, - [SMALL_STATE(2002)] = 92465, - [SMALL_STATE(2003)] = 92495, - [SMALL_STATE(2004)] = 92525, - [SMALL_STATE(2005)] = 92555, - [SMALL_STATE(2006)] = 92585, - [SMALL_STATE(2007)] = 92617, - [SMALL_STATE(2008)] = 92653, - [SMALL_STATE(2009)] = 92685, - [SMALL_STATE(2010)] = 92715, - [SMALL_STATE(2011)] = 92745, - [SMALL_STATE(2012)] = 92775, - [SMALL_STATE(2013)] = 92809, - [SMALL_STATE(2014)] = 92839, - [SMALL_STATE(2015)] = 92869, - [SMALL_STATE(2016)] = 92899, - [SMALL_STATE(2017)] = 92931, - [SMALL_STATE(2018)] = 92961, - [SMALL_STATE(2019)] = 92993, - [SMALL_STATE(2020)] = 93027, - [SMALL_STATE(2021)] = 93057, - [SMALL_STATE(2022)] = 93089, - [SMALL_STATE(2023)] = 93119, - [SMALL_STATE(2024)] = 93149, - [SMALL_STATE(2025)] = 93185, - [SMALL_STATE(2026)] = 93219, - [SMALL_STATE(2027)] = 93249, - [SMALL_STATE(2028)] = 93283, - [SMALL_STATE(2029)] = 93313, - [SMALL_STATE(2030)] = 93343, - [SMALL_STATE(2031)] = 93373, - [SMALL_STATE(2032)] = 93405, - [SMALL_STATE(2033)] = 93435, - [SMALL_STATE(2034)] = 93463, - [SMALL_STATE(2035)] = 93491, - [SMALL_STATE(2036)] = 93523, - [SMALL_STATE(2037)] = 93551, - [SMALL_STATE(2038)] = 93581, - [SMALL_STATE(2039)] = 93611, - [SMALL_STATE(2040)] = 93643, - [SMALL_STATE(2041)] = 93697, - [SMALL_STATE(2042)] = 93727, - [SMALL_STATE(2043)] = 93759, - [SMALL_STATE(2044)] = 93793, - [SMALL_STATE(2045)] = 93823, - [SMALL_STATE(2046)] = 93859, - [SMALL_STATE(2047)] = 93889, - [SMALL_STATE(2048)] = 93921, - [SMALL_STATE(2049)] = 93951, - [SMALL_STATE(2050)] = 93981, - [SMALL_STATE(2051)] = 94011, - [SMALL_STATE(2052)] = 94043, - [SMALL_STATE(2053)] = 94073, - [SMALL_STATE(2054)] = 94105, - [SMALL_STATE(2055)] = 94159, - [SMALL_STATE(2056)] = 94189, - [SMALL_STATE(2057)] = 94219, - [SMALL_STATE(2058)] = 94273, - [SMALL_STATE(2059)] = 94303, - [SMALL_STATE(2060)] = 94333, - [SMALL_STATE(2061)] = 94363, - [SMALL_STATE(2062)] = 94393, - [SMALL_STATE(2063)] = 94423, - [SMALL_STATE(2064)] = 94455, - [SMALL_STATE(2065)] = 94483, - [SMALL_STATE(2066)] = 94513, - [SMALL_STATE(2067)] = 94543, - [SMALL_STATE(2068)] = 94575, - [SMALL_STATE(2069)] = 94605, - [SMALL_STATE(2070)] = 94639, - [SMALL_STATE(2071)] = 94669, - [SMALL_STATE(2072)] = 94701, - [SMALL_STATE(2073)] = 94731, - [SMALL_STATE(2074)] = 94761, - [SMALL_STATE(2075)] = 94793, - [SMALL_STATE(2076)] = 94823, - [SMALL_STATE(2077)] = 94853, - [SMALL_STATE(2078)] = 94889, - [SMALL_STATE(2079)] = 94925, - [SMALL_STATE(2080)] = 94955, - [SMALL_STATE(2081)] = 94985, - [SMALL_STATE(2082)] = 95017, - [SMALL_STATE(2083)] = 95053, - [SMALL_STATE(2084)] = 95085, - [SMALL_STATE(2085)] = 95115, - [SMALL_STATE(2086)] = 95151, - [SMALL_STATE(2087)] = 95181, - [SMALL_STATE(2088)] = 95211, - [SMALL_STATE(2089)] = 95247, - [SMALL_STATE(2090)] = 95277, - [SMALL_STATE(2091)] = 95331, - [SMALL_STATE(2092)] = 95363, - [SMALL_STATE(2093)] = 95393, - [SMALL_STATE(2094)] = 95427, - [SMALL_STATE(2095)] = 95457, - [SMALL_STATE(2096)] = 95487, - [SMALL_STATE(2097)] = 95523, - [SMALL_STATE(2098)] = 95553, - [SMALL_STATE(2099)] = 95583, - [SMALL_STATE(2100)] = 95613, - [SMALL_STATE(2101)] = 95643, - [SMALL_STATE(2102)] = 95673, - [SMALL_STATE(2103)] = 95703, - [SMALL_STATE(2104)] = 95757, - [SMALL_STATE(2105)] = 95786, - [SMALL_STATE(2106)] = 95815, - [SMALL_STATE(2107)] = 95844, - [SMALL_STATE(2108)] = 95873, - [SMALL_STATE(2109)] = 95904, - [SMALL_STATE(2110)] = 95933, - [SMALL_STATE(2111)] = 95962, - [SMALL_STATE(2112)] = 95991, - [SMALL_STATE(2113)] = 96020, - [SMALL_STATE(2114)] = 96049, - [SMALL_STATE(2115)] = 96080, - [SMALL_STATE(2116)] = 96109, - [SMALL_STATE(2117)] = 96142, - [SMALL_STATE(2118)] = 96173, - [SMALL_STATE(2119)] = 96206, - [SMALL_STATE(2120)] = 96257, - [SMALL_STATE(2121)] = 96308, - [SMALL_STATE(2122)] = 96337, - [SMALL_STATE(2123)] = 96366, - [SMALL_STATE(2124)] = 96417, - [SMALL_STATE(2125)] = 96446, - [SMALL_STATE(2126)] = 96475, - [SMALL_STATE(2127)] = 96526, - [SMALL_STATE(2128)] = 96555, - [SMALL_STATE(2129)] = 96584, - [SMALL_STATE(2130)] = 96613, - [SMALL_STATE(2131)] = 96664, - [SMALL_STATE(2132)] = 96693, - [SMALL_STATE(2133)] = 96722, - [SMALL_STATE(2134)] = 96773, - [SMALL_STATE(2135)] = 96802, - [SMALL_STATE(2136)] = 96831, - [SMALL_STATE(2137)] = 96860, - [SMALL_STATE(2138)] = 96889, - [SMALL_STATE(2139)] = 96918, - [SMALL_STATE(2140)] = 96947, - [SMALL_STATE(2141)] = 96976, - [SMALL_STATE(2142)] = 97005, - [SMALL_STATE(2143)] = 97034, - [SMALL_STATE(2144)] = 97085, - [SMALL_STATE(2145)] = 97118, - [SMALL_STATE(2146)] = 97147, - [SMALL_STATE(2147)] = 97176, - [SMALL_STATE(2148)] = 97205, - [SMALL_STATE(2149)] = 97234, - [SMALL_STATE(2150)] = 97263, - [SMALL_STATE(2151)] = 97292, - [SMALL_STATE(2152)] = 97321, - [SMALL_STATE(2153)] = 97350, - [SMALL_STATE(2154)] = 97379, - [SMALL_STATE(2155)] = 97408, - [SMALL_STATE(2156)] = 97437, - [SMALL_STATE(2157)] = 97466, - [SMALL_STATE(2158)] = 97495, - [SMALL_STATE(2159)] = 97524, - [SMALL_STATE(2160)] = 97575, - [SMALL_STATE(2161)] = 97608, - [SMALL_STATE(2162)] = 97637, - [SMALL_STATE(2163)] = 97666, - [SMALL_STATE(2164)] = 97695, - [SMALL_STATE(2165)] = 97724, - [SMALL_STATE(2166)] = 97757, - [SMALL_STATE(2167)] = 97786, - [SMALL_STATE(2168)] = 97815, - [SMALL_STATE(2169)] = 97844, - [SMALL_STATE(2170)] = 97895, - [SMALL_STATE(2171)] = 97926, - [SMALL_STATE(2172)] = 97955, - [SMALL_STATE(2173)] = 97984, - [SMALL_STATE(2174)] = 98035, - [SMALL_STATE(2175)] = 98068, - [SMALL_STATE(2176)] = 98097, - [SMALL_STATE(2177)] = 98126, - [SMALL_STATE(2178)] = 98155, - [SMALL_STATE(2179)] = 98188, - [SMALL_STATE(2180)] = 98221, - [SMALL_STATE(2181)] = 98250, - [SMALL_STATE(2182)] = 98279, - [SMALL_STATE(2183)] = 98330, - [SMALL_STATE(2184)] = 98359, - [SMALL_STATE(2185)] = 98388, - [SMALL_STATE(2186)] = 98417, - [SMALL_STATE(2187)] = 98446, - [SMALL_STATE(2188)] = 98475, - [SMALL_STATE(2189)] = 98504, - [SMALL_STATE(2190)] = 98555, - [SMALL_STATE(2191)] = 98584, - [SMALL_STATE(2192)] = 98617, - [SMALL_STATE(2193)] = 98646, - [SMALL_STATE(2194)] = 98675, - [SMALL_STATE(2195)] = 98704, - [SMALL_STATE(2196)] = 98755, - [SMALL_STATE(2197)] = 98784, - [SMALL_STATE(2198)] = 98813, - [SMALL_STATE(2199)] = 98864, - [SMALL_STATE(2200)] = 98893, - [SMALL_STATE(2201)] = 98922, - [SMALL_STATE(2202)] = 98951, - [SMALL_STATE(2203)] = 99002, - [SMALL_STATE(2204)] = 99035, - [SMALL_STATE(2205)] = 99064, - [SMALL_STATE(2206)] = 99093, - [SMALL_STATE(2207)] = 99122, - [SMALL_STATE(2208)] = 99151, - [SMALL_STATE(2209)] = 99180, - [SMALL_STATE(2210)] = 99231, - [SMALL_STATE(2211)] = 99260, - [SMALL_STATE(2212)] = 99289, - [SMALL_STATE(2213)] = 99318, - [SMALL_STATE(2214)] = 99347, - [SMALL_STATE(2215)] = 99376, - [SMALL_STATE(2216)] = 99405, - [SMALL_STATE(2217)] = 99434, - [SMALL_STATE(2218)] = 99463, - [SMALL_STATE(2219)] = 99514, - [SMALL_STATE(2220)] = 99543, - [SMALL_STATE(2221)] = 99572, - [SMALL_STATE(2222)] = 99601, - [SMALL_STATE(2223)] = 99630, - [SMALL_STATE(2224)] = 99681, - [SMALL_STATE(2225)] = 99732, - [SMALL_STATE(2226)] = 99782, - [SMALL_STATE(2227)] = 99810, - [SMALL_STATE(2228)] = 99860, - [SMALL_STATE(2229)] = 99910, - [SMALL_STATE(2230)] = 99938, - [SMALL_STATE(2231)] = 99988, - [SMALL_STATE(2232)] = 100038, - [SMALL_STATE(2233)] = 100086, - [SMALL_STATE(2234)] = 100136, - [SMALL_STATE(2235)] = 100186, - [SMALL_STATE(2236)] = 100214, - [SMALL_STATE(2237)] = 100242, - [SMALL_STATE(2238)] = 100270, - [SMALL_STATE(2239)] = 100298, - [SMALL_STATE(2240)] = 100348, - [SMALL_STATE(2241)] = 100398, - [SMALL_STATE(2242)] = 100434, - [SMALL_STATE(2243)] = 100484, - [SMALL_STATE(2244)] = 100534, - [SMALL_STATE(2245)] = 100584, - [SMALL_STATE(2246)] = 100612, - [SMALL_STATE(2247)] = 100662, - [SMALL_STATE(2248)] = 100690, - [SMALL_STATE(2249)] = 100718, - [SMALL_STATE(2250)] = 100748, - [SMALL_STATE(2251)] = 100776, - [SMALL_STATE(2252)] = 100826, - [SMALL_STATE(2253)] = 100854, - [SMALL_STATE(2254)] = 100882, - [SMALL_STATE(2255)] = 100910, - [SMALL_STATE(2256)] = 100938, - [SMALL_STATE(2257)] = 100988, - [SMALL_STATE(2258)] = 101016, - [SMALL_STATE(2259)] = 101044, - [SMALL_STATE(2260)] = 101072, - [SMALL_STATE(2261)] = 101100, - [SMALL_STATE(2262)] = 101150, - [SMALL_STATE(2263)] = 101178, - [SMALL_STATE(2264)] = 101228, - [SMALL_STATE(2265)] = 101278, - [SMALL_STATE(2266)] = 101328, - [SMALL_STATE(2267)] = 101356, - [SMALL_STATE(2268)] = 101384, - [SMALL_STATE(2269)] = 101434, - [SMALL_STATE(2270)] = 101484, - [SMALL_STATE(2271)] = 101512, - [SMALL_STATE(2272)] = 101540, - [SMALL_STATE(2273)] = 101568, - [SMALL_STATE(2274)] = 101596, - [SMALL_STATE(2275)] = 101624, - [SMALL_STATE(2276)] = 101652, - [SMALL_STATE(2277)] = 101702, - [SMALL_STATE(2278)] = 101752, - [SMALL_STATE(2279)] = 101780, - [SMALL_STATE(2280)] = 101830, - [SMALL_STATE(2281)] = 101880, - [SMALL_STATE(2282)] = 101930, - [SMALL_STATE(2283)] = 101958, - [SMALL_STATE(2284)] = 101986, - [SMALL_STATE(2285)] = 102036, - [SMALL_STATE(2286)] = 102066, - [SMALL_STATE(2287)] = 102116, - [SMALL_STATE(2288)] = 102166, - [SMALL_STATE(2289)] = 102216, - [SMALL_STATE(2290)] = 102266, - [SMALL_STATE(2291)] = 102294, - [SMALL_STATE(2292)] = 102344, - [SMALL_STATE(2293)] = 102394, - [SMALL_STATE(2294)] = 102422, - [SMALL_STATE(2295)] = 102472, - [SMALL_STATE(2296)] = 102500, - [SMALL_STATE(2297)] = 102528, - [SMALL_STATE(2298)] = 102556, - [SMALL_STATE(2299)] = 102606, - [SMALL_STATE(2300)] = 102634, - [SMALL_STATE(2301)] = 102662, - [SMALL_STATE(2302)] = 102690, - [SMALL_STATE(2303)] = 102740, - [SMALL_STATE(2304)] = 102768, - [SMALL_STATE(2305)] = 102818, - [SMALL_STATE(2306)] = 102846, - [SMALL_STATE(2307)] = 102874, - [SMALL_STATE(2308)] = 102902, - [SMALL_STATE(2309)] = 102930, - [SMALL_STATE(2310)] = 102980, - [SMALL_STATE(2311)] = 103030, - [SMALL_STATE(2312)] = 103080, - [SMALL_STATE(2313)] = 103130, - [SMALL_STATE(2314)] = 103156, - [SMALL_STATE(2315)] = 103182, - [SMALL_STATE(2316)] = 103210, - [SMALL_STATE(2317)] = 103238, - [SMALL_STATE(2318)] = 103266, - [SMALL_STATE(2319)] = 103294, - [SMALL_STATE(2320)] = 103344, - [SMALL_STATE(2321)] = 103394, - [SMALL_STATE(2322)] = 103444, - [SMALL_STATE(2323)] = 103472, - [SMALL_STATE(2324)] = 103500, - [SMALL_STATE(2325)] = 103550, - [SMALL_STATE(2326)] = 103600, - [SMALL_STATE(2327)] = 103650, - [SMALL_STATE(2328)] = 103678, - [SMALL_STATE(2329)] = 103728, - [SMALL_STATE(2330)] = 103778, - [SMALL_STATE(2331)] = 103828, - [SMALL_STATE(2332)] = 103878, - [SMALL_STATE(2333)] = 103928, - [SMALL_STATE(2334)] = 103954, - [SMALL_STATE(2335)] = 104002, - [SMALL_STATE(2336)] = 104028, - [SMALL_STATE(2337)] = 104078, - [SMALL_STATE(2338)] = 104128, - [SMALL_STATE(2339)] = 104178, - [SMALL_STATE(2340)] = 104228, - [SMALL_STATE(2341)] = 104278, - [SMALL_STATE(2342)] = 104326, - [SMALL_STATE(2343)] = 104376, - [SMALL_STATE(2344)] = 104426, - [SMALL_STATE(2345)] = 104476, - [SMALL_STATE(2346)] = 104526, - [SMALL_STATE(2347)] = 104576, - [SMALL_STATE(2348)] = 104626, - [SMALL_STATE(2349)] = 104676, - [SMALL_STATE(2350)] = 104704, - [SMALL_STATE(2351)] = 104754, - [SMALL_STATE(2352)] = 104804, - [SMALL_STATE(2353)] = 104832, - [SMALL_STATE(2354)] = 104860, - [SMALL_STATE(2355)] = 104888, - [SMALL_STATE(2356)] = 104923, - [SMALL_STATE(2357)] = 104950, - [SMALL_STATE(2358)] = 104985, - [SMALL_STATE(2359)] = 105032, - [SMALL_STATE(2360)] = 105067, - [SMALL_STATE(2361)] = 105094, - [SMALL_STATE(2362)] = 105141, - [SMALL_STATE(2363)] = 105168, - [SMALL_STATE(2364)] = 105195, - [SMALL_STATE(2365)] = 105230, - [SMALL_STATE(2366)] = 105277, - [SMALL_STATE(2367)] = 105304, - [SMALL_STATE(2368)] = 105351, - [SMALL_STATE(2369)] = 105378, - [SMALL_STATE(2370)] = 105425, - [SMALL_STATE(2371)] = 105472, - [SMALL_STATE(2372)] = 105499, - [SMALL_STATE(2373)] = 105546, - [SMALL_STATE(2374)] = 105593, - [SMALL_STATE(2375)] = 105628, - [SMALL_STATE(2376)] = 105663, - [SMALL_STATE(2377)] = 105698, - [SMALL_STATE(2378)] = 105733, - [SMALL_STATE(2379)] = 105768, - [SMALL_STATE(2380)] = 105803, - [SMALL_STATE(2381)] = 105850, - [SMALL_STATE(2382)] = 105885, - [SMALL_STATE(2383)] = 105920, - [SMALL_STATE(2384)] = 105947, - [SMALL_STATE(2385)] = 105994, - [SMALL_STATE(2386)] = 106041, - [SMALL_STATE(2387)] = 106088, - [SMALL_STATE(2388)] = 106135, - [SMALL_STATE(2389)] = 106170, - [SMALL_STATE(2390)] = 106217, - [SMALL_STATE(2391)] = 106264, - [SMALL_STATE(2392)] = 106299, - [SMALL_STATE(2393)] = 106334, - [SMALL_STATE(2394)] = 106369, - [SMALL_STATE(2395)] = 106396, - [SMALL_STATE(2396)] = 106431, - [SMALL_STATE(2397)] = 106466, - [SMALL_STATE(2398)] = 106513, - [SMALL_STATE(2399)] = 106560, - [SMALL_STATE(2400)] = 106607, - [SMALL_STATE(2401)] = 106654, - [SMALL_STATE(2402)] = 106689, - [SMALL_STATE(2403)] = 106736, - [SMALL_STATE(2404)] = 106771, - [SMALL_STATE(2405)] = 106806, - [SMALL_STATE(2406)] = 106853, - [SMALL_STATE(2407)] = 106888, - [SMALL_STATE(2408)] = 106923, - [SMALL_STATE(2409)] = 106958, - [SMALL_STATE(2410)] = 107005, - [SMALL_STATE(2411)] = 107040, - [SMALL_STATE(2412)] = 107067, - [SMALL_STATE(2413)] = 107094, - [SMALL_STATE(2414)] = 107129, - [SMALL_STATE(2415)] = 107154, - [SMALL_STATE(2416)] = 107189, - [SMALL_STATE(2417)] = 107216, - [SMALL_STATE(2418)] = 107251, - [SMALL_STATE(2419)] = 107286, - [SMALL_STATE(2420)] = 107333, - [SMALL_STATE(2421)] = 107368, - [SMALL_STATE(2422)] = 107403, - [SMALL_STATE(2423)] = 107438, - [SMALL_STATE(2424)] = 107485, - [SMALL_STATE(2425)] = 107532, - [SMALL_STATE(2426)] = 107567, - [SMALL_STATE(2427)] = 107614, - [SMALL_STATE(2428)] = 107656, - [SMALL_STATE(2429)] = 107698, - [SMALL_STATE(2430)] = 107737, - [SMALL_STATE(2431)] = 107776, - [SMALL_STATE(2432)] = 107815, - [SMALL_STATE(2433)] = 107854, - [SMALL_STATE(2434)] = 107893, - [SMALL_STATE(2435)] = 107932, - [SMALL_STATE(2436)] = 107971, - [SMALL_STATE(2437)] = 108010, - [SMALL_STATE(2438)] = 108049, - [SMALL_STATE(2439)] = 108088, - [SMALL_STATE(2440)] = 108115, - [SMALL_STATE(2441)] = 108154, - [SMALL_STATE(2442)] = 108193, - [SMALL_STATE(2443)] = 108232, - [SMALL_STATE(2444)] = 108271, - [SMALL_STATE(2445)] = 108310, - [SMALL_STATE(2446)] = 108349, - [SMALL_STATE(2447)] = 108388, - [SMALL_STATE(2448)] = 108427, - [SMALL_STATE(2449)] = 108466, - [SMALL_STATE(2450)] = 108505, - [SMALL_STATE(2451)] = 108544, - [SMALL_STATE(2452)] = 108583, - [SMALL_STATE(2453)] = 108622, - [SMALL_STATE(2454)] = 108661, - [SMALL_STATE(2455)] = 108700, - [SMALL_STATE(2456)] = 108739, - [SMALL_STATE(2457)] = 108778, - [SMALL_STATE(2458)] = 108817, - [SMALL_STATE(2459)] = 108856, - [SMALL_STATE(2460)] = 108895, - [SMALL_STATE(2461)] = 108934, - [SMALL_STATE(2462)] = 108973, - [SMALL_STATE(2463)] = 109012, - [SMALL_STATE(2464)] = 109051, - [SMALL_STATE(2465)] = 109090, - [SMALL_STATE(2466)] = 109129, - [SMALL_STATE(2467)] = 109168, - [SMALL_STATE(2468)] = 109207, - [SMALL_STATE(2469)] = 109246, - [SMALL_STATE(2470)] = 109285, - [SMALL_STATE(2471)] = 109324, - [SMALL_STATE(2472)] = 109363, - [SMALL_STATE(2473)] = 109402, - [SMALL_STATE(2474)] = 109441, - [SMALL_STATE(2475)] = 109480, - [SMALL_STATE(2476)] = 109519, - [SMALL_STATE(2477)] = 109558, - [SMALL_STATE(2478)] = 109597, - [SMALL_STATE(2479)] = 109636, - [SMALL_STATE(2480)] = 109675, - [SMALL_STATE(2481)] = 109714, - [SMALL_STATE(2482)] = 109753, - [SMALL_STATE(2483)] = 109792, - [SMALL_STATE(2484)] = 109831, - [SMALL_STATE(2485)] = 109870, - [SMALL_STATE(2486)] = 109909, - [SMALL_STATE(2487)] = 109936, - [SMALL_STATE(2488)] = 109975, - [SMALL_STATE(2489)] = 110014, - [SMALL_STATE(2490)] = 110053, - [SMALL_STATE(2491)] = 110080, - [SMALL_STATE(2492)] = 110107, - [SMALL_STATE(2493)] = 110140, - [SMALL_STATE(2494)] = 110179, - [SMALL_STATE(2495)] = 110218, - [SMALL_STATE(2496)] = 110242, - [SMALL_STATE(2497)] = 110266, - [SMALL_STATE(2498)] = 110290, - [SMALL_STATE(2499)] = 110316, - [SMALL_STATE(2500)] = 110340, - [SMALL_STATE(2501)] = 110366, - [SMALL_STATE(2502)] = 110390, - [SMALL_STATE(2503)] = 110414, - [SMALL_STATE(2504)] = 110438, - [SMALL_STATE(2505)] = 110462, - [SMALL_STATE(2506)] = 110486, - [SMALL_STATE(2507)] = 110510, - [SMALL_STATE(2508)] = 110534, - [SMALL_STATE(2509)] = 110558, - [SMALL_STATE(2510)] = 110582, - [SMALL_STATE(2511)] = 110606, - [SMALL_STATE(2512)] = 110630, - [SMALL_STATE(2513)] = 110654, - [SMALL_STATE(2514)] = 110678, - [SMALL_STATE(2515)] = 110702, - [SMALL_STATE(2516)] = 110726, - [SMALL_STATE(2517)] = 110750, - [SMALL_STATE(2518)] = 110774, - [SMALL_STATE(2519)] = 110798, - [SMALL_STATE(2520)] = 110822, - [SMALL_STATE(2521)] = 110846, - [SMALL_STATE(2522)] = 110870, - [SMALL_STATE(2523)] = 110894, - [SMALL_STATE(2524)] = 110915, - [SMALL_STATE(2525)] = 110941, - [SMALL_STATE(2526)] = 110967, - [SMALL_STATE(2527)] = 110993, - [SMALL_STATE(2528)] = 111019, - [SMALL_STATE(2529)] = 111049, - [SMALL_STATE(2530)] = 111079, - [SMALL_STATE(2531)] = 111100, - [SMALL_STATE(2532)] = 111131, - [SMALL_STATE(2533)] = 111152, - [SMALL_STATE(2534)] = 111183, - [SMALL_STATE(2535)] = 111214, - [SMALL_STATE(2536)] = 111235, - [SMALL_STATE(2537)] = 111266, - [SMALL_STATE(2538)] = 111287, - [SMALL_STATE(2539)] = 111308, - [SMALL_STATE(2540)] = 111329, - [SMALL_STATE(2541)] = 111360, - [SMALL_STATE(2542)] = 111389, - [SMALL_STATE(2543)] = 111420, - [SMALL_STATE(2544)] = 111441, - [SMALL_STATE(2545)] = 111462, - [SMALL_STATE(2546)] = 111493, - [SMALL_STATE(2547)] = 111514, - [SMALL_STATE(2548)] = 111545, - [SMALL_STATE(2549)] = 111576, - [SMALL_STATE(2550)] = 111607, - [SMALL_STATE(2551)] = 111638, - [SMALL_STATE(2552)] = 111669, - [SMALL_STATE(2553)] = 111700, - [SMALL_STATE(2554)] = 111721, - [SMALL_STATE(2555)] = 111752, - [SMALL_STATE(2556)] = 111773, - [SMALL_STATE(2557)] = 111798, - [SMALL_STATE(2558)] = 111819, - [SMALL_STATE(2559)] = 111850, - [SMALL_STATE(2560)] = 111871, - [SMALL_STATE(2561)] = 111892, - [SMALL_STATE(2562)] = 111923, - [SMALL_STATE(2563)] = 111944, - [SMALL_STATE(2564)] = 111965, - [SMALL_STATE(2565)] = 111996, - [SMALL_STATE(2566)] = 112027, - [SMALL_STATE(2567)] = 112058, - [SMALL_STATE(2568)] = 112079, - [SMALL_STATE(2569)] = 112100, - [SMALL_STATE(2570)] = 112121, - [SMALL_STATE(2571)] = 112142, - [SMALL_STATE(2572)] = 112173, - [SMALL_STATE(2573)] = 112194, - [SMALL_STATE(2574)] = 112215, - [SMALL_STATE(2575)] = 112236, - [SMALL_STATE(2576)] = 112257, - [SMALL_STATE(2577)] = 112278, - [SMALL_STATE(2578)] = 112309, - [SMALL_STATE(2579)] = 112330, - [SMALL_STATE(2580)] = 112351, - [SMALL_STATE(2581)] = 112372, - [SMALL_STATE(2582)] = 112393, - [SMALL_STATE(2583)] = 112414, - [SMALL_STATE(2584)] = 112445, - [SMALL_STATE(2585)] = 112466, - [SMALL_STATE(2586)] = 112487, - [SMALL_STATE(2587)] = 112518, - [SMALL_STATE(2588)] = 112539, - [SMALL_STATE(2589)] = 112570, - [SMALL_STATE(2590)] = 112591, - [SMALL_STATE(2591)] = 112622, - [SMALL_STATE(2592)] = 112643, - [SMALL_STATE(2593)] = 112664, - [SMALL_STATE(2594)] = 112685, - [SMALL_STATE(2595)] = 112706, - [SMALL_STATE(2596)] = 112727, - [SMALL_STATE(2597)] = 112758, - [SMALL_STATE(2598)] = 112779, - [SMALL_STATE(2599)] = 112800, - [SMALL_STATE(2600)] = 112821, - [SMALL_STATE(2601)] = 112846, - [SMALL_STATE(2602)] = 112877, - [SMALL_STATE(2603)] = 112898, - [SMALL_STATE(2604)] = 112929, - [SMALL_STATE(2605)] = 112960, - [SMALL_STATE(2606)] = 112991, - [SMALL_STATE(2607)] = 113022, - [SMALL_STATE(2608)] = 113043, - [SMALL_STATE(2609)] = 113064, - [SMALL_STATE(2610)] = 113085, - [SMALL_STATE(2611)] = 113105, - [SMALL_STATE(2612)] = 113131, - [SMALL_STATE(2613)] = 113155, - [SMALL_STATE(2614)] = 113175, - [SMALL_STATE(2615)] = 113199, - [SMALL_STATE(2616)] = 113219, - [SMALL_STATE(2617)] = 113239, - [SMALL_STATE(2618)] = 113259, - [SMALL_STATE(2619)] = 113285, - [SMALL_STATE(2620)] = 113305, - [SMALL_STATE(2621)] = 113325, - [SMALL_STATE(2622)] = 113345, - [SMALL_STATE(2623)] = 113365, - [SMALL_STATE(2624)] = 113391, - [SMALL_STATE(2625)] = 113415, - [SMALL_STATE(2626)] = 113435, - [SMALL_STATE(2627)] = 113459, - [SMALL_STATE(2628)] = 113485, - [SMALL_STATE(2629)] = 113505, - [SMALL_STATE(2630)] = 113529, - [SMALL_STATE(2631)] = 113553, - [SMALL_STATE(2632)] = 113573, - [SMALL_STATE(2633)] = 113593, - [SMALL_STATE(2634)] = 113613, - [SMALL_STATE(2635)] = 113637, - [SMALL_STATE(2636)] = 113657, - [SMALL_STATE(2637)] = 113683, - [SMALL_STATE(2638)] = 113707, - [SMALL_STATE(2639)] = 113727, - [SMALL_STATE(2640)] = 113747, - [SMALL_STATE(2641)] = 113771, - [SMALL_STATE(2642)] = 113795, - [SMALL_STATE(2643)] = 113815, - [SMALL_STATE(2644)] = 113835, - [SMALL_STATE(2645)] = 113855, - [SMALL_STATE(2646)] = 113875, - [SMALL_STATE(2647)] = 113901, - [SMALL_STATE(2648)] = 113921, - [SMALL_STATE(2649)] = 113947, - [SMALL_STATE(2650)] = 113971, - [SMALL_STATE(2651)] = 113991, - [SMALL_STATE(2652)] = 114011, - [SMALL_STATE(2653)] = 114031, - [SMALL_STATE(2654)] = 114051, - [SMALL_STATE(2655)] = 114071, - [SMALL_STATE(2656)] = 114095, - [SMALL_STATE(2657)] = 114115, - [SMALL_STATE(2658)] = 114135, - [SMALL_STATE(2659)] = 114155, - [SMALL_STATE(2660)] = 114175, - [SMALL_STATE(2661)] = 114199, - [SMALL_STATE(2662)] = 114223, - [SMALL_STATE(2663)] = 114247, - [SMALL_STATE(2664)] = 114271, - [SMALL_STATE(2665)] = 114291, - [SMALL_STATE(2666)] = 114311, - [SMALL_STATE(2667)] = 114337, - [SMALL_STATE(2668)] = 114357, - [SMALL_STATE(2669)] = 114381, - [SMALL_STATE(2670)] = 114405, - [SMALL_STATE(2671)] = 114425, - [SMALL_STATE(2672)] = 114451, - [SMALL_STATE(2673)] = 114471, - [SMALL_STATE(2674)] = 114495, - [SMALL_STATE(2675)] = 114519, - [SMALL_STATE(2676)] = 114545, - [SMALL_STATE(2677)] = 114565, - [SMALL_STATE(2678)] = 114589, - [SMALL_STATE(2679)] = 114615, - [SMALL_STATE(2680)] = 114641, - [SMALL_STATE(2681)] = 114661, - [SMALL_STATE(2682)] = 114685, - [SMALL_STATE(2683)] = 114709, - [SMALL_STATE(2684)] = 114729, - [SMALL_STATE(2685)] = 114749, - [SMALL_STATE(2686)] = 114775, - [SMALL_STATE(2687)] = 114799, - [SMALL_STATE(2688)] = 114823, - [SMALL_STATE(2689)] = 114847, - [SMALL_STATE(2690)] = 114871, - [SMALL_STATE(2691)] = 114891, - [SMALL_STATE(2692)] = 114917, - [SMALL_STATE(2693)] = 114943, - [SMALL_STATE(2694)] = 114967, - [SMALL_STATE(2695)] = 114991, - [SMALL_STATE(2696)] = 115011, - [SMALL_STATE(2697)] = 115037, - [SMALL_STATE(2698)] = 115061, - [SMALL_STATE(2699)] = 115085, - [SMALL_STATE(2700)] = 115105, - [SMALL_STATE(2701)] = 115129, - [SMALL_STATE(2702)] = 115155, - [SMALL_STATE(2703)] = 115179, - [SMALL_STATE(2704)] = 115203, - [SMALL_STATE(2705)] = 115229, - [SMALL_STATE(2706)] = 115253, - [SMALL_STATE(2707)] = 115273, - [SMALL_STATE(2708)] = 115293, - [SMALL_STATE(2709)] = 115317, - [SMALL_STATE(2710)] = 115337, - [SMALL_STATE(2711)] = 115363, - [SMALL_STATE(2712)] = 115387, - [SMALL_STATE(2713)] = 115407, - [SMALL_STATE(2714)] = 115431, - [SMALL_STATE(2715)] = 115451, - [SMALL_STATE(2716)] = 115475, - [SMALL_STATE(2717)] = 115501, - [SMALL_STATE(2718)] = 115525, - [SMALL_STATE(2719)] = 115551, - [SMALL_STATE(2720)] = 115577, - [SMALL_STATE(2721)] = 115603, - [SMALL_STATE(2722)] = 115629, - [SMALL_STATE(2723)] = 115653, - [SMALL_STATE(2724)] = 115673, - [SMALL_STATE(2725)] = 115697, - [SMALL_STATE(2726)] = 115721, - [SMALL_STATE(2727)] = 115745, - [SMALL_STATE(2728)] = 115769, - [SMALL_STATE(2729)] = 115789, - [SMALL_STATE(2730)] = 115813, - [SMALL_STATE(2731)] = 115837, - [SMALL_STATE(2732)] = 115861, - [SMALL_STATE(2733)] = 115885, - [SMALL_STATE(2734)] = 115911, - [SMALL_STATE(2735)] = 115935, - [SMALL_STATE(2736)] = 115961, - [SMALL_STATE(2737)] = 115985, - [SMALL_STATE(2738)] = 116009, - [SMALL_STATE(2739)] = 116033, - [SMALL_STATE(2740)] = 116053, - [SMALL_STATE(2741)] = 116079, - [SMALL_STATE(2742)] = 116099, - [SMALL_STATE(2743)] = 116119, - [SMALL_STATE(2744)] = 116143, - [SMALL_STATE(2745)] = 116167, - [SMALL_STATE(2746)] = 116193, - [SMALL_STATE(2747)] = 116217, - [SMALL_STATE(2748)] = 116241, - [SMALL_STATE(2749)] = 116265, - [SMALL_STATE(2750)] = 116291, - [SMALL_STATE(2751)] = 116318, - [SMALL_STATE(2752)] = 116345, - [SMALL_STATE(2753)] = 116372, - [SMALL_STATE(2754)] = 116399, - [SMALL_STATE(2755)] = 116426, - [SMALL_STATE(2756)] = 116451, - [SMALL_STATE(2757)] = 116476, - [SMALL_STATE(2758)] = 116503, - [SMALL_STATE(2759)] = 116524, - [SMALL_STATE(2760)] = 116549, - [SMALL_STATE(2761)] = 116576, - [SMALL_STATE(2762)] = 116603, - [SMALL_STATE(2763)] = 116630, - [SMALL_STATE(2764)] = 116657, - [SMALL_STATE(2765)] = 116684, - [SMALL_STATE(2766)] = 116711, - [SMALL_STATE(2767)] = 116738, - [SMALL_STATE(2768)] = 116765, - [SMALL_STATE(2769)] = 116792, - [SMALL_STATE(2770)] = 116819, - [SMALL_STATE(2771)] = 116846, - [SMALL_STATE(2772)] = 116873, - [SMALL_STATE(2773)] = 116900, - [SMALL_STATE(2774)] = 116927, - [SMALL_STATE(2775)] = 116954, - [SMALL_STATE(2776)] = 116981, - [SMALL_STATE(2777)] = 117008, - [SMALL_STATE(2778)] = 117035, - [SMALL_STATE(2779)] = 117062, - [SMALL_STATE(2780)] = 117089, - [SMALL_STATE(2781)] = 117116, - [SMALL_STATE(2782)] = 117141, - [SMALL_STATE(2783)] = 117168, - [SMALL_STATE(2784)] = 117195, - [SMALL_STATE(2785)] = 117222, - [SMALL_STATE(2786)] = 117249, - [SMALL_STATE(2787)] = 117279, - [SMALL_STATE(2788)] = 117309, - [SMALL_STATE(2789)] = 117339, - [SMALL_STATE(2790)] = 117369, - [SMALL_STATE(2791)] = 117399, - [SMALL_STATE(2792)] = 117419, - [SMALL_STATE(2793)] = 117447, - [SMALL_STATE(2794)] = 117477, - [SMALL_STATE(2795)] = 117507, - [SMALL_STATE(2796)] = 117535, - [SMALL_STATE(2797)] = 117563, - [SMALL_STATE(2798)] = 117593, - [SMALL_STATE(2799)] = 117623, - [SMALL_STATE(2800)] = 117653, - [SMALL_STATE(2801)] = 117683, - [SMALL_STATE(2802)] = 117713, - [SMALL_STATE(2803)] = 117743, - [SMALL_STATE(2804)] = 117773, - [SMALL_STATE(2805)] = 117803, - [SMALL_STATE(2806)] = 117833, - [SMALL_STATE(2807)] = 117861, - [SMALL_STATE(2808)] = 117891, - [SMALL_STATE(2809)] = 117921, - [SMALL_STATE(2810)] = 117951, - [SMALL_STATE(2811)] = 117981, - [SMALL_STATE(2812)] = 118011, - [SMALL_STATE(2813)] = 118041, - [SMALL_STATE(2814)] = 118071, - [SMALL_STATE(2815)] = 118101, - [SMALL_STATE(2816)] = 118131, - [SMALL_STATE(2817)] = 118161, - [SMALL_STATE(2818)] = 118191, - [SMALL_STATE(2819)] = 118219, - [SMALL_STATE(2820)] = 118249, - [SMALL_STATE(2821)] = 118279, - [SMALL_STATE(2822)] = 118309, - [SMALL_STATE(2823)] = 118339, - [SMALL_STATE(2824)] = 118369, - [SMALL_STATE(2825)] = 118399, - [SMALL_STATE(2826)] = 118429, - [SMALL_STATE(2827)] = 118459, - [SMALL_STATE(2828)] = 118489, - [SMALL_STATE(2829)] = 118519, - [SMALL_STATE(2830)] = 118549, - [SMALL_STATE(2831)] = 118579, - [SMALL_STATE(2832)] = 118609, - [SMALL_STATE(2833)] = 118639, - [SMALL_STATE(2834)] = 118669, - [SMALL_STATE(2835)] = 118699, - [SMALL_STATE(2836)] = 118729, - [SMALL_STATE(2837)] = 118759, - [SMALL_STATE(2838)] = 118789, - [SMALL_STATE(2839)] = 118819, - [SMALL_STATE(2840)] = 118849, - [SMALL_STATE(2841)] = 118879, - [SMALL_STATE(2842)] = 118909, - [SMALL_STATE(2843)] = 118939, - [SMALL_STATE(2844)] = 118969, - [SMALL_STATE(2845)] = 118997, - [SMALL_STATE(2846)] = 119027, - [SMALL_STATE(2847)] = 119055, - [SMALL_STATE(2848)] = 119085, - [SMALL_STATE(2849)] = 119115, - [SMALL_STATE(2850)] = 119145, - [SMALL_STATE(2851)] = 119175, - [SMALL_STATE(2852)] = 119205, - [SMALL_STATE(2853)] = 119235, - [SMALL_STATE(2854)] = 119259, - [SMALL_STATE(2855)] = 119283, - [SMALL_STATE(2856)] = 119303, - [SMALL_STATE(2857)] = 119319, - [SMALL_STATE(2858)] = 119343, - [SMALL_STATE(2859)] = 119367, - [SMALL_STATE(2860)] = 119391, - [SMALL_STATE(2861)] = 119415, - [SMALL_STATE(2862)] = 119439, - [SMALL_STATE(2863)] = 119463, - [SMALL_STATE(2864)] = 119487, - [SMALL_STATE(2865)] = 119502, - [SMALL_STATE(2866)] = 119517, - [SMALL_STATE(2867)] = 119532, - [SMALL_STATE(2868)] = 119547, - [SMALL_STATE(2869)] = 119568, - [SMALL_STATE(2870)] = 119583, - [SMALL_STATE(2871)] = 119598, - [SMALL_STATE(2872)] = 119613, - [SMALL_STATE(2873)] = 119628, - [SMALL_STATE(2874)] = 119643, - [SMALL_STATE(2875)] = 119658, - [SMALL_STATE(2876)] = 119673, - [SMALL_STATE(2877)] = 119688, - [SMALL_STATE(2878)] = 119703, - [SMALL_STATE(2879)] = 119720, - [SMALL_STATE(2880)] = 119741, - [SMALL_STATE(2881)] = 119756, - [SMALL_STATE(2882)] = 119771, - [SMALL_STATE(2883)] = 119786, - [SMALL_STATE(2884)] = 119801, - [SMALL_STATE(2885)] = 119816, - [SMALL_STATE(2886)] = 119831, - [SMALL_STATE(2887)] = 119846, - [SMALL_STATE(2888)] = 119867, - [SMALL_STATE(2889)] = 119888, - [SMALL_STATE(2890)] = 119907, - [SMALL_STATE(2891)] = 119922, - [SMALL_STATE(2892)] = 119941, - [SMALL_STATE(2893)] = 119956, - [SMALL_STATE(2894)] = 119977, - [SMALL_STATE(2895)] = 119998, - [SMALL_STATE(2896)] = 120017, - [SMALL_STATE(2897)] = 120032, - [SMALL_STATE(2898)] = 120047, - [SMALL_STATE(2899)] = 120064, - [SMALL_STATE(2900)] = 120079, - [SMALL_STATE(2901)] = 120093, - [SMALL_STATE(2902)] = 120107, - [SMALL_STATE(2903)] = 120121, - [SMALL_STATE(2904)] = 120135, - [SMALL_STATE(2905)] = 120149, - [SMALL_STATE(2906)] = 120163, - [SMALL_STATE(2907)] = 120177, - [SMALL_STATE(2908)] = 120191, - [SMALL_STATE(2909)] = 120211, - [SMALL_STATE(2910)] = 120225, - [SMALL_STATE(2911)] = 120239, - [SMALL_STATE(2912)] = 120253, - [SMALL_STATE(2913)] = 120267, - [SMALL_STATE(2914)] = 120281, - [SMALL_STATE(2915)] = 120295, - [SMALL_STATE(2916)] = 120309, - [SMALL_STATE(2917)] = 120323, - [SMALL_STATE(2918)] = 120343, - [SMALL_STATE(2919)] = 120355, - [SMALL_STATE(2920)] = 120369, - [SMALL_STATE(2921)] = 120383, - [SMALL_STATE(2922)] = 120403, - [SMALL_STATE(2923)] = 120423, - [SMALL_STATE(2924)] = 120437, - [SMALL_STATE(2925)] = 120451, - [SMALL_STATE(2926)] = 120465, - [SMALL_STATE(2927)] = 120479, - [SMALL_STATE(2928)] = 120493, - [SMALL_STATE(2929)] = 120507, - [SMALL_STATE(2930)] = 120521, - [SMALL_STATE(2931)] = 120535, - [SMALL_STATE(2932)] = 120549, - [SMALL_STATE(2933)] = 120563, - [SMALL_STATE(2934)] = 120577, - [SMALL_STATE(2935)] = 120597, - [SMALL_STATE(2936)] = 120611, - [SMALL_STATE(2937)] = 120625, - [SMALL_STATE(2938)] = 120639, - [SMALL_STATE(2939)] = 120653, - [SMALL_STATE(2940)] = 120667, - [SMALL_STATE(2941)] = 120683, - [SMALL_STATE(2942)] = 120697, - [SMALL_STATE(2943)] = 120711, - [SMALL_STATE(2944)] = 120725, - [SMALL_STATE(2945)] = 120745, - [SMALL_STATE(2946)] = 120759, - [SMALL_STATE(2947)] = 120773, - [SMALL_STATE(2948)] = 120789, - [SMALL_STATE(2949)] = 120803, - [SMALL_STATE(2950)] = 120817, - [SMALL_STATE(2951)] = 120831, - [SMALL_STATE(2952)] = 120845, - [SMALL_STATE(2953)] = 120859, - [SMALL_STATE(2954)] = 120873, - [SMALL_STATE(2955)] = 120887, - [SMALL_STATE(2956)] = 120901, - [SMALL_STATE(2957)] = 120915, - [SMALL_STATE(2958)] = 120929, - [SMALL_STATE(2959)] = 120943, - [SMALL_STATE(2960)] = 120955, - [SMALL_STATE(2961)] = 120970, - [SMALL_STATE(2962)] = 120987, - [SMALL_STATE(2963)] = 121006, - [SMALL_STATE(2964)] = 121021, - [SMALL_STATE(2965)] = 121038, - [SMALL_STATE(2966)] = 121053, - [SMALL_STATE(2967)] = 121068, - [SMALL_STATE(2968)] = 121083, - [SMALL_STATE(2969)] = 121098, - [SMALL_STATE(2970)] = 121115, - [SMALL_STATE(2971)] = 121130, - [SMALL_STATE(2972)] = 121147, - [SMALL_STATE(2973)] = 121166, - [SMALL_STATE(2974)] = 121185, - [SMALL_STATE(2975)] = 121202, - [SMALL_STATE(2976)] = 121219, - [SMALL_STATE(2977)] = 121236, - [SMALL_STATE(2978)] = 121251, - [SMALL_STATE(2979)] = 121268, - [SMALL_STATE(2980)] = 121283, - [SMALL_STATE(2981)] = 121300, - [SMALL_STATE(2982)] = 121313, - [SMALL_STATE(2983)] = 121328, - [SMALL_STATE(2984)] = 121343, - [SMALL_STATE(2985)] = 121360, - [SMALL_STATE(2986)] = 121377, - [SMALL_STATE(2987)] = 121394, - [SMALL_STATE(2988)] = 121413, - [SMALL_STATE(2989)] = 121430, - [SMALL_STATE(2990)] = 121445, - [SMALL_STATE(2991)] = 121464, - [SMALL_STATE(2992)] = 121477, - [SMALL_STATE(2993)] = 121492, - [SMALL_STATE(2994)] = 121511, - [SMALL_STATE(2995)] = 121528, - [SMALL_STATE(2996)] = 121545, - [SMALL_STATE(2997)] = 121562, - [SMALL_STATE(2998)] = 121579, - [SMALL_STATE(2999)] = 121594, - [SMALL_STATE(3000)] = 121611, - [SMALL_STATE(3001)] = 121628, - [SMALL_STATE(3002)] = 121645, - [SMALL_STATE(3003)] = 121662, - [SMALL_STATE(3004)] = 121679, - [SMALL_STATE(3005)] = 121698, - [SMALL_STATE(3006)] = 121715, - [SMALL_STATE(3007)] = 121734, - [SMALL_STATE(3008)] = 121751, - [SMALL_STATE(3009)] = 121764, - [SMALL_STATE(3010)] = 121776, - [SMALL_STATE(3011)] = 121790, - [SMALL_STATE(3012)] = 121804, - [SMALL_STATE(3013)] = 121818, - [SMALL_STATE(3014)] = 121834, - [SMALL_STATE(3015)] = 121848, - [SMALL_STATE(3016)] = 121862, - [SMALL_STATE(3017)] = 121876, - [SMALL_STATE(3018)] = 121890, - [SMALL_STATE(3019)] = 121904, - [SMALL_STATE(3020)] = 121920, - [SMALL_STATE(3021)] = 121936, - [SMALL_STATE(3022)] = 121952, - [SMALL_STATE(3023)] = 121964, - [SMALL_STATE(3024)] = 121978, - [SMALL_STATE(3025)] = 121990, - [SMALL_STATE(3026)] = 122002, - [SMALL_STATE(3027)] = 122018, - [SMALL_STATE(3028)] = 122032, - [SMALL_STATE(3029)] = 122048, - [SMALL_STATE(3030)] = 122064, - [SMALL_STATE(3031)] = 122078, - [SMALL_STATE(3032)] = 122092, - [SMALL_STATE(3033)] = 122106, - [SMALL_STATE(3034)] = 122120, - [SMALL_STATE(3035)] = 122134, - [SMALL_STATE(3036)] = 122146, - [SMALL_STATE(3037)] = 122158, - [SMALL_STATE(3038)] = 122172, - [SMALL_STATE(3039)] = 122186, - [SMALL_STATE(3040)] = 122200, - [SMALL_STATE(3041)] = 122214, - [SMALL_STATE(3042)] = 122228, - [SMALL_STATE(3043)] = 122240, - [SMALL_STATE(3044)] = 122256, - [SMALL_STATE(3045)] = 122270, - [SMALL_STATE(3046)] = 122284, - [SMALL_STATE(3047)] = 122296, - [SMALL_STATE(3048)] = 122308, - [SMALL_STATE(3049)] = 122322, - [SMALL_STATE(3050)] = 122336, - [SMALL_STATE(3051)] = 122348, - [SMALL_STATE(3052)] = 122360, - [SMALL_STATE(3053)] = 122372, - [SMALL_STATE(3054)] = 122386, - [SMALL_STATE(3055)] = 122398, - [SMALL_STATE(3056)] = 122410, - [SMALL_STATE(3057)] = 122422, - [SMALL_STATE(3058)] = 122434, - [SMALL_STATE(3059)] = 122450, - [SMALL_STATE(3060)] = 122464, - [SMALL_STATE(3061)] = 122478, - [SMALL_STATE(3062)] = 122492, - [SMALL_STATE(3063)] = 122504, - [SMALL_STATE(3064)] = 122518, - [SMALL_STATE(3065)] = 122532, - [SMALL_STATE(3066)] = 122546, - [SMALL_STATE(3067)] = 122560, - [SMALL_STATE(3068)] = 122574, - [SMALL_STATE(3069)] = 122587, - [SMALL_STATE(3070)] = 122600, - [SMALL_STATE(3071)] = 122611, - [SMALL_STATE(3072)] = 122624, - [SMALL_STATE(3073)] = 122637, - [SMALL_STATE(3074)] = 122650, - [SMALL_STATE(3075)] = 122663, - [SMALL_STATE(3076)] = 122676, - [SMALL_STATE(3077)] = 122689, - [SMALL_STATE(3078)] = 122702, - [SMALL_STATE(3079)] = 122715, - [SMALL_STATE(3080)] = 122728, - [SMALL_STATE(3081)] = 122741, - [SMALL_STATE(3082)] = 122752, - [SMALL_STATE(3083)] = 122765, - [SMALL_STATE(3084)] = 122778, - [SMALL_STATE(3085)] = 122791, - [SMALL_STATE(3086)] = 122804, - [SMALL_STATE(3087)] = 122817, - [SMALL_STATE(3088)] = 122830, - [SMALL_STATE(3089)] = 122843, - [SMALL_STATE(3090)] = 122856, - [SMALL_STATE(3091)] = 122869, - [SMALL_STATE(3092)] = 122882, - [SMALL_STATE(3093)] = 122895, - [SMALL_STATE(3094)] = 122908, - [SMALL_STATE(3095)] = 122921, - [SMALL_STATE(3096)] = 122934, - [SMALL_STATE(3097)] = 122947, - [SMALL_STATE(3098)] = 122960, - [SMALL_STATE(3099)] = 122971, - [SMALL_STATE(3100)] = 122984, - [SMALL_STATE(3101)] = 122995, - [SMALL_STATE(3102)] = 123008, - [SMALL_STATE(3103)] = 123021, - [SMALL_STATE(3104)] = 123034, - [SMALL_STATE(3105)] = 123047, - [SMALL_STATE(3106)] = 123060, - [SMALL_STATE(3107)] = 123073, - [SMALL_STATE(3108)] = 123086, - [SMALL_STATE(3109)] = 123099, - [SMALL_STATE(3110)] = 123112, - [SMALL_STATE(3111)] = 123125, - [SMALL_STATE(3112)] = 123138, - [SMALL_STATE(3113)] = 123149, - [SMALL_STATE(3114)] = 123162, - [SMALL_STATE(3115)] = 123175, - [SMALL_STATE(3116)] = 123188, - [SMALL_STATE(3117)] = 123201, - [SMALL_STATE(3118)] = 123214, - [SMALL_STATE(3119)] = 123227, - [SMALL_STATE(3120)] = 123240, - [SMALL_STATE(3121)] = 123253, - [SMALL_STATE(3122)] = 123266, - [SMALL_STATE(3123)] = 123279, - [SMALL_STATE(3124)] = 123292, - [SMALL_STATE(3125)] = 123305, - [SMALL_STATE(3126)] = 123318, - [SMALL_STATE(3127)] = 123331, - [SMALL_STATE(3128)] = 123344, - [SMALL_STATE(3129)] = 123357, - [SMALL_STATE(3130)] = 123368, - [SMALL_STATE(3131)] = 123381, - [SMALL_STATE(3132)] = 123394, - [SMALL_STATE(3133)] = 123407, - [SMALL_STATE(3134)] = 123420, - [SMALL_STATE(3135)] = 123433, - [SMALL_STATE(3136)] = 123446, - [SMALL_STATE(3137)] = 123459, - [SMALL_STATE(3138)] = 123472, - [SMALL_STATE(3139)] = 123485, - [SMALL_STATE(3140)] = 123498, - [SMALL_STATE(3141)] = 123511, - [SMALL_STATE(3142)] = 123522, - [SMALL_STATE(3143)] = 123535, - [SMALL_STATE(3144)] = 123548, - [SMALL_STATE(3145)] = 123561, - [SMALL_STATE(3146)] = 123574, - [SMALL_STATE(3147)] = 123587, - [SMALL_STATE(3148)] = 123600, - [SMALL_STATE(3149)] = 123613, - [SMALL_STATE(3150)] = 123626, - [SMALL_STATE(3151)] = 123639, - [SMALL_STATE(3152)] = 123652, - [SMALL_STATE(3153)] = 123665, - [SMALL_STATE(3154)] = 123678, - [SMALL_STATE(3155)] = 123691, - [SMALL_STATE(3156)] = 123704, - [SMALL_STATE(3157)] = 123717, - [SMALL_STATE(3158)] = 123730, - [SMALL_STATE(3159)] = 123743, - [SMALL_STATE(3160)] = 123756, - [SMALL_STATE(3161)] = 123767, - [SMALL_STATE(3162)] = 123780, - [SMALL_STATE(3163)] = 123793, - [SMALL_STATE(3164)] = 123806, - [SMALL_STATE(3165)] = 123819, - [SMALL_STATE(3166)] = 123832, - [SMALL_STATE(3167)] = 123845, - [SMALL_STATE(3168)] = 123858, - [SMALL_STATE(3169)] = 123869, - [SMALL_STATE(3170)] = 123882, - [SMALL_STATE(3171)] = 123895, - [SMALL_STATE(3172)] = 123906, - [SMALL_STATE(3173)] = 123919, - [SMALL_STATE(3174)] = 123932, - [SMALL_STATE(3175)] = 123945, - [SMALL_STATE(3176)] = 123958, - [SMALL_STATE(3177)] = 123971, - [SMALL_STATE(3178)] = 123984, - [SMALL_STATE(3179)] = 123997, - [SMALL_STATE(3180)] = 124010, - [SMALL_STATE(3181)] = 124023, - [SMALL_STATE(3182)] = 124036, - [SMALL_STATE(3183)] = 124049, - [SMALL_STATE(3184)] = 124060, - [SMALL_STATE(3185)] = 124073, - [SMALL_STATE(3186)] = 124086, - [SMALL_STATE(3187)] = 124099, - [SMALL_STATE(3188)] = 124112, - [SMALL_STATE(3189)] = 124125, - [SMALL_STATE(3190)] = 124138, - [SMALL_STATE(3191)] = 124151, - [SMALL_STATE(3192)] = 124164, - [SMALL_STATE(3193)] = 124177, - [SMALL_STATE(3194)] = 124190, - [SMALL_STATE(3195)] = 124203, - [SMALL_STATE(3196)] = 124214, - [SMALL_STATE(3197)] = 124227, - [SMALL_STATE(3198)] = 124238, - [SMALL_STATE(3199)] = 124251, - [SMALL_STATE(3200)] = 124264, - [SMALL_STATE(3201)] = 124277, - [SMALL_STATE(3202)] = 124290, - [SMALL_STATE(3203)] = 124303, - [SMALL_STATE(3204)] = 124316, - [SMALL_STATE(3205)] = 124329, - [SMALL_STATE(3206)] = 124342, - [SMALL_STATE(3207)] = 124355, - [SMALL_STATE(3208)] = 124368, - [SMALL_STATE(3209)] = 124381, - [SMALL_STATE(3210)] = 124392, - [SMALL_STATE(3211)] = 124405, - [SMALL_STATE(3212)] = 124418, - [SMALL_STATE(3213)] = 124431, - [SMALL_STATE(3214)] = 124444, - [SMALL_STATE(3215)] = 124457, - [SMALL_STATE(3216)] = 124470, - [SMALL_STATE(3217)] = 124483, - [SMALL_STATE(3218)] = 124496, - [SMALL_STATE(3219)] = 124509, - [SMALL_STATE(3220)] = 124522, - [SMALL_STATE(3221)] = 124535, - [SMALL_STATE(3222)] = 124548, - [SMALL_STATE(3223)] = 124561, - [SMALL_STATE(3224)] = 124574, - [SMALL_STATE(3225)] = 124587, - [SMALL_STATE(3226)] = 124598, - [SMALL_STATE(3227)] = 124609, - [SMALL_STATE(3228)] = 124622, - [SMALL_STATE(3229)] = 124633, - [SMALL_STATE(3230)] = 124646, - [SMALL_STATE(3231)] = 124659, - [SMALL_STATE(3232)] = 124672, - [SMALL_STATE(3233)] = 124683, - [SMALL_STATE(3234)] = 124696, - [SMALL_STATE(3235)] = 124709, - [SMALL_STATE(3236)] = 124722, - [SMALL_STATE(3237)] = 124735, - [SMALL_STATE(3238)] = 124748, - [SMALL_STATE(3239)] = 124761, - [SMALL_STATE(3240)] = 124769, - [SMALL_STATE(3241)] = 124777, - [SMALL_STATE(3242)] = 124787, - [SMALL_STATE(3243)] = 124795, - [SMALL_STATE(3244)] = 124805, - [SMALL_STATE(3245)] = 124813, - [SMALL_STATE(3246)] = 124823, - [SMALL_STATE(3247)] = 124831, - [SMALL_STATE(3248)] = 124841, - [SMALL_STATE(3249)] = 124849, - [SMALL_STATE(3250)] = 124859, - [SMALL_STATE(3251)] = 124869, - [SMALL_STATE(3252)] = 124879, - [SMALL_STATE(3253)] = 124889, - [SMALL_STATE(3254)] = 124899, - [SMALL_STATE(3255)] = 124909, - [SMALL_STATE(3256)] = 124919, - [SMALL_STATE(3257)] = 124929, - [SMALL_STATE(3258)] = 124939, - [SMALL_STATE(3259)] = 124947, - [SMALL_STATE(3260)] = 124957, - [SMALL_STATE(3261)] = 124965, - [SMALL_STATE(3262)] = 124975, - [SMALL_STATE(3263)] = 124983, - [SMALL_STATE(3264)] = 124991, - [SMALL_STATE(3265)] = 125001, - [SMALL_STATE(3266)] = 125011, - [SMALL_STATE(3267)] = 125021, - [SMALL_STATE(3268)] = 125031, - [SMALL_STATE(3269)] = 125041, - [SMALL_STATE(3270)] = 125051, - [SMALL_STATE(3271)] = 125061, - [SMALL_STATE(3272)] = 125071, - [SMALL_STATE(3273)] = 125079, - [SMALL_STATE(3274)] = 125089, - [SMALL_STATE(3275)] = 125099, - [SMALL_STATE(3276)] = 125109, - [SMALL_STATE(3277)] = 125119, - [SMALL_STATE(3278)] = 125129, - [SMALL_STATE(3279)] = 125137, - [SMALL_STATE(3280)] = 125147, - [SMALL_STATE(3281)] = 125157, - [SMALL_STATE(3282)] = 125167, - [SMALL_STATE(3283)] = 125177, - [SMALL_STATE(3284)] = 125187, - [SMALL_STATE(3285)] = 125197, - [SMALL_STATE(3286)] = 125207, - [SMALL_STATE(3287)] = 125215, - [SMALL_STATE(3288)] = 125225, - [SMALL_STATE(3289)] = 125235, - [SMALL_STATE(3290)] = 125245, - [SMALL_STATE(3291)] = 125255, - [SMALL_STATE(3292)] = 125265, - [SMALL_STATE(3293)] = 125275, - [SMALL_STATE(3294)] = 125285, - [SMALL_STATE(3295)] = 125295, - [SMALL_STATE(3296)] = 125305, - [SMALL_STATE(3297)] = 125315, - [SMALL_STATE(3298)] = 125325, - [SMALL_STATE(3299)] = 125335, - [SMALL_STATE(3300)] = 125343, - [SMALL_STATE(3301)] = 125351, - [SMALL_STATE(3302)] = 125361, - [SMALL_STATE(3303)] = 125369, - [SMALL_STATE(3304)] = 125377, - [SMALL_STATE(3305)] = 125385, - [SMALL_STATE(3306)] = 125395, - [SMALL_STATE(3307)] = 125405, - [SMALL_STATE(3308)] = 125413, - [SMALL_STATE(3309)] = 125423, - [SMALL_STATE(3310)] = 125433, - [SMALL_STATE(3311)] = 125441, - [SMALL_STATE(3312)] = 125449, - [SMALL_STATE(3313)] = 125457, - [SMALL_STATE(3314)] = 125467, - [SMALL_STATE(3315)] = 125477, - [SMALL_STATE(3316)] = 125487, - [SMALL_STATE(3317)] = 125497, - [SMALL_STATE(3318)] = 125505, - [SMALL_STATE(3319)] = 125515, - [SMALL_STATE(3320)] = 125523, - [SMALL_STATE(3321)] = 125533, - [SMALL_STATE(3322)] = 125543, - [SMALL_STATE(3323)] = 125553, - [SMALL_STATE(3324)] = 125563, - [SMALL_STATE(3325)] = 125573, - [SMALL_STATE(3326)] = 125583, - [SMALL_STATE(3327)] = 125593, - [SMALL_STATE(3328)] = 125603, - [SMALL_STATE(3329)] = 125613, - [SMALL_STATE(3330)] = 125623, - [SMALL_STATE(3331)] = 125633, - [SMALL_STATE(3332)] = 125643, - [SMALL_STATE(3333)] = 125653, - [SMALL_STATE(3334)] = 125661, - [SMALL_STATE(3335)] = 125669, - [SMALL_STATE(3336)] = 125677, - [SMALL_STATE(3337)] = 125685, - [SMALL_STATE(3338)] = 125693, - [SMALL_STATE(3339)] = 125701, - [SMALL_STATE(3340)] = 125709, - [SMALL_STATE(3341)] = 125717, - [SMALL_STATE(3342)] = 125725, - [SMALL_STATE(3343)] = 125735, - [SMALL_STATE(3344)] = 125745, - [SMALL_STATE(3345)] = 125753, - [SMALL_STATE(3346)] = 125763, - [SMALL_STATE(3347)] = 125773, - [SMALL_STATE(3348)] = 125781, - [SMALL_STATE(3349)] = 125789, - [SMALL_STATE(3350)] = 125799, - [SMALL_STATE(3351)] = 125809, - [SMALL_STATE(3352)] = 125817, - [SMALL_STATE(3353)] = 125825, - [SMALL_STATE(3354)] = 125833, - [SMALL_STATE(3355)] = 125841, - [SMALL_STATE(3356)] = 125851, - [SMALL_STATE(3357)] = 125859, - [SMALL_STATE(3358)] = 125866, - [SMALL_STATE(3359)] = 125873, - [SMALL_STATE(3360)] = 125880, - [SMALL_STATE(3361)] = 125887, - [SMALL_STATE(3362)] = 125894, - [SMALL_STATE(3363)] = 125901, - [SMALL_STATE(3364)] = 125908, - [SMALL_STATE(3365)] = 125915, - [SMALL_STATE(3366)] = 125922, - [SMALL_STATE(3367)] = 125929, - [SMALL_STATE(3368)] = 125936, - [SMALL_STATE(3369)] = 125943, - [SMALL_STATE(3370)] = 125950, - [SMALL_STATE(3371)] = 125957, - [SMALL_STATE(3372)] = 125964, - [SMALL_STATE(3373)] = 125971, - [SMALL_STATE(3374)] = 125978, - [SMALL_STATE(3375)] = 125985, - [SMALL_STATE(3376)] = 125992, - [SMALL_STATE(3377)] = 125999, - [SMALL_STATE(3378)] = 126006, - [SMALL_STATE(3379)] = 126013, - [SMALL_STATE(3380)] = 126020, - [SMALL_STATE(3381)] = 126027, - [SMALL_STATE(3382)] = 126034, - [SMALL_STATE(3383)] = 126041, - [SMALL_STATE(3384)] = 126048, - [SMALL_STATE(3385)] = 126055, - [SMALL_STATE(3386)] = 126062, - [SMALL_STATE(3387)] = 126069, - [SMALL_STATE(3388)] = 126076, - [SMALL_STATE(3389)] = 126083, - [SMALL_STATE(3390)] = 126090, - [SMALL_STATE(3391)] = 126097, - [SMALL_STATE(3392)] = 126104, - [SMALL_STATE(3393)] = 126111, - [SMALL_STATE(3394)] = 126118, - [SMALL_STATE(3395)] = 126125, - [SMALL_STATE(3396)] = 126132, - [SMALL_STATE(3397)] = 126139, - [SMALL_STATE(3398)] = 126146, - [SMALL_STATE(3399)] = 126153, - [SMALL_STATE(3400)] = 126160, - [SMALL_STATE(3401)] = 126167, - [SMALL_STATE(3402)] = 126174, - [SMALL_STATE(3403)] = 126181, - [SMALL_STATE(3404)] = 126188, - [SMALL_STATE(3405)] = 126195, - [SMALL_STATE(3406)] = 126202, - [SMALL_STATE(3407)] = 126209, - [SMALL_STATE(3408)] = 126216, - [SMALL_STATE(3409)] = 126223, - [SMALL_STATE(3410)] = 126230, - [SMALL_STATE(3411)] = 126237, - [SMALL_STATE(3412)] = 126244, - [SMALL_STATE(3413)] = 126251, - [SMALL_STATE(3414)] = 126258, - [SMALL_STATE(3415)] = 126265, - [SMALL_STATE(3416)] = 126272, - [SMALL_STATE(3417)] = 126279, - [SMALL_STATE(3418)] = 126286, - [SMALL_STATE(3419)] = 126293, - [SMALL_STATE(3420)] = 126300, - [SMALL_STATE(3421)] = 126307, - [SMALL_STATE(3422)] = 126314, - [SMALL_STATE(3423)] = 126321, - [SMALL_STATE(3424)] = 126328, - [SMALL_STATE(3425)] = 126335, - [SMALL_STATE(3426)] = 126342, - [SMALL_STATE(3427)] = 126349, - [SMALL_STATE(3428)] = 126356, - [SMALL_STATE(3429)] = 126363, - [SMALL_STATE(3430)] = 126370, - [SMALL_STATE(3431)] = 126377, - [SMALL_STATE(3432)] = 126384, - [SMALL_STATE(3433)] = 126391, - [SMALL_STATE(3434)] = 126398, - [SMALL_STATE(3435)] = 126405, - [SMALL_STATE(3436)] = 126412, - [SMALL_STATE(3437)] = 126419, - [SMALL_STATE(3438)] = 126426, - [SMALL_STATE(3439)] = 126433, - [SMALL_STATE(3440)] = 126440, - [SMALL_STATE(3441)] = 126447, - [SMALL_STATE(3442)] = 126454, - [SMALL_STATE(3443)] = 126461, - [SMALL_STATE(3444)] = 126468, - [SMALL_STATE(3445)] = 126475, - [SMALL_STATE(3446)] = 126482, - [SMALL_STATE(3447)] = 126489, - [SMALL_STATE(3448)] = 126496, - [SMALL_STATE(3449)] = 126503, - [SMALL_STATE(3450)] = 126510, - [SMALL_STATE(3451)] = 126517, - [SMALL_STATE(3452)] = 126524, - [SMALL_STATE(3453)] = 126531, - [SMALL_STATE(3454)] = 126538, - [SMALL_STATE(3455)] = 126545, - [SMALL_STATE(3456)] = 126552, - [SMALL_STATE(3457)] = 126559, - [SMALL_STATE(3458)] = 126566, - [SMALL_STATE(3459)] = 126573, - [SMALL_STATE(3460)] = 126580, - [SMALL_STATE(3461)] = 126587, - [SMALL_STATE(3462)] = 126594, - [SMALL_STATE(3463)] = 126601, - [SMALL_STATE(3464)] = 126608, - [SMALL_STATE(3465)] = 126615, - [SMALL_STATE(3466)] = 126622, - [SMALL_STATE(3467)] = 126629, - [SMALL_STATE(3468)] = 126636, - [SMALL_STATE(3469)] = 126643, - [SMALL_STATE(3470)] = 126650, - [SMALL_STATE(3471)] = 126657, - [SMALL_STATE(3472)] = 126664, - [SMALL_STATE(3473)] = 126671, - [SMALL_STATE(3474)] = 126678, - [SMALL_STATE(3475)] = 126685, - [SMALL_STATE(3476)] = 126692, - [SMALL_STATE(3477)] = 126699, - [SMALL_STATE(3478)] = 126706, - [SMALL_STATE(3479)] = 126713, - [SMALL_STATE(3480)] = 126720, - [SMALL_STATE(3481)] = 126727, - [SMALL_STATE(3482)] = 126734, - [SMALL_STATE(3483)] = 126741, - [SMALL_STATE(3484)] = 126748, - [SMALL_STATE(3485)] = 126755, - [SMALL_STATE(3486)] = 126762, - [SMALL_STATE(3487)] = 126769, - [SMALL_STATE(3488)] = 126776, - [SMALL_STATE(3489)] = 126783, - [SMALL_STATE(3490)] = 126790, - [SMALL_STATE(3491)] = 126797, - [SMALL_STATE(3492)] = 126804, - [SMALL_STATE(3493)] = 126811, - [SMALL_STATE(3494)] = 126818, - [SMALL_STATE(3495)] = 126825, - [SMALL_STATE(3496)] = 126832, - [SMALL_STATE(3497)] = 126839, - [SMALL_STATE(3498)] = 126846, - [SMALL_STATE(3499)] = 126853, - [SMALL_STATE(3500)] = 126860, - [SMALL_STATE(3501)] = 126867, - [SMALL_STATE(3502)] = 126874, - [SMALL_STATE(3503)] = 126881, - [SMALL_STATE(3504)] = 126888, - [SMALL_STATE(3505)] = 126895, - [SMALL_STATE(3506)] = 126902, - [SMALL_STATE(3507)] = 126909, - [SMALL_STATE(3508)] = 126916, - [SMALL_STATE(3509)] = 126923, - [SMALL_STATE(3510)] = 126930, - [SMALL_STATE(3511)] = 126937, - [SMALL_STATE(3512)] = 126944, - [SMALL_STATE(3513)] = 126951, - [SMALL_STATE(3514)] = 126958, - [SMALL_STATE(3515)] = 126965, - [SMALL_STATE(3516)] = 126972, - [SMALL_STATE(3517)] = 126979, - [SMALL_STATE(3518)] = 126986, - [SMALL_STATE(3519)] = 126993, - [SMALL_STATE(3520)] = 127000, - [SMALL_STATE(3521)] = 127007, - [SMALL_STATE(3522)] = 127014, - [SMALL_STATE(3523)] = 127021, - [SMALL_STATE(3524)] = 127028, - [SMALL_STATE(3525)] = 127035, - [SMALL_STATE(3526)] = 127042, - [SMALL_STATE(3527)] = 127049, - [SMALL_STATE(3528)] = 127056, - [SMALL_STATE(3529)] = 127063, - [SMALL_STATE(3530)] = 127070, - [SMALL_STATE(3531)] = 127077, - [SMALL_STATE(3532)] = 127084, - [SMALL_STATE(3533)] = 127091, - [SMALL_STATE(3534)] = 127098, - [SMALL_STATE(3535)] = 127105, - [SMALL_STATE(3536)] = 127112, - [SMALL_STATE(3537)] = 127119, - [SMALL_STATE(3538)] = 127126, - [SMALL_STATE(3539)] = 127133, - [SMALL_STATE(3540)] = 127140, - [SMALL_STATE(3541)] = 127147, - [SMALL_STATE(3542)] = 127154, - [SMALL_STATE(3543)] = 127161, - [SMALL_STATE(3544)] = 127168, - [SMALL_STATE(3545)] = 127175, - [SMALL_STATE(3546)] = 127182, - [SMALL_STATE(3547)] = 127189, - [SMALL_STATE(3548)] = 127196, - [SMALL_STATE(3549)] = 127203, - [SMALL_STATE(3550)] = 127210, - [SMALL_STATE(3551)] = 127217, - [SMALL_STATE(3552)] = 127224, - [SMALL_STATE(3553)] = 127231, - [SMALL_STATE(3554)] = 127238, - [SMALL_STATE(3555)] = 127245, - [SMALL_STATE(3556)] = 127252, - [SMALL_STATE(3557)] = 127259, - [SMALL_STATE(3558)] = 127266, - [SMALL_STATE(3559)] = 127273, - [SMALL_STATE(3560)] = 127280, - [SMALL_STATE(3561)] = 127287, - [SMALL_STATE(3562)] = 127294, - [SMALL_STATE(3563)] = 127301, - [SMALL_STATE(3564)] = 127308, - [SMALL_STATE(3565)] = 127315, - [SMALL_STATE(3566)] = 127322, - [SMALL_STATE(3567)] = 127329, - [SMALL_STATE(3568)] = 127336, - [SMALL_STATE(3569)] = 127343, - [SMALL_STATE(3570)] = 127350, + [SMALL_STATE(227)] = 0, + [SMALL_STATE(228)] = 75, + [SMALL_STATE(229)] = 154, + [SMALL_STATE(230)] = 229, + [SMALL_STATE(231)] = 304, + [SMALL_STATE(232)] = 385, + [SMALL_STATE(233)] = 460, + [SMALL_STATE(234)] = 530, + [SMALL_STATE(235)] = 600, + [SMALL_STATE(236)] = 670, + [SMALL_STATE(237)] = 740, + [SMALL_STATE(238)] = 810, + [SMALL_STATE(239)] = 880, + [SMALL_STATE(240)] = 950, + [SMALL_STATE(241)] = 1020, + [SMALL_STATE(242)] = 1090, + [SMALL_STATE(243)] = 1160, + [SMALL_STATE(244)] = 1234, + [SMALL_STATE(245)] = 1304, + [SMALL_STATE(246)] = 1374, + [SMALL_STATE(247)] = 1444, + [SMALL_STATE(248)] = 1518, + [SMALL_STATE(249)] = 1592, + [SMALL_STATE(250)] = 1666, + [SMALL_STATE(251)] = 1736, + [SMALL_STATE(252)] = 1806, + [SMALL_STATE(253)] = 1876, + [SMALL_STATE(254)] = 1946, + [SMALL_STATE(255)] = 2016, + [SMALL_STATE(256)] = 2086, + [SMALL_STATE(257)] = 2160, + [SMALL_STATE(258)] = 2230, + [SMALL_STATE(259)] = 2300, + [SMALL_STATE(260)] = 2370, + [SMALL_STATE(261)] = 2440, + [SMALL_STATE(262)] = 2510, + [SMALL_STATE(263)] = 2588, + [SMALL_STATE(264)] = 2658, + [SMALL_STATE(265)] = 2736, + [SMALL_STATE(266)] = 2806, + [SMALL_STATE(267)] = 2876, + [SMALL_STATE(268)] = 2946, + [SMALL_STATE(269)] = 3015, + [SMALL_STATE(270)] = 3092, + [SMALL_STATE(271)] = 3161, + [SMALL_STATE(272)] = 3230, + [SMALL_STATE(273)] = 3299, + [SMALL_STATE(274)] = 3368, + [SMALL_STATE(275)] = 3437, + [SMALL_STATE(276)] = 3506, + [SMALL_STATE(277)] = 3575, + [SMALL_STATE(278)] = 3644, + [SMALL_STATE(279)] = 3713, + [SMALL_STATE(280)] = 3782, + [SMALL_STATE(281)] = 3851, + [SMALL_STATE(282)] = 3924, + [SMALL_STATE(283)] = 3993, + [SMALL_STATE(284)] = 4062, + [SMALL_STATE(285)] = 4131, + [SMALL_STATE(286)] = 4200, + [SMALL_STATE(287)] = 4269, + [SMALL_STATE(288)] = 4338, + [SMALL_STATE(289)] = 4407, + [SMALL_STATE(290)] = 4476, + [SMALL_STATE(291)] = 4549, + [SMALL_STATE(292)] = 4618, + [SMALL_STATE(293)] = 4687, + [SMALL_STATE(294)] = 4756, + [SMALL_STATE(295)] = 4825, + [SMALL_STATE(296)] = 4894, + [SMALL_STATE(297)] = 4963, + [SMALL_STATE(298)] = 5032, + [SMALL_STATE(299)] = 5101, + [SMALL_STATE(300)] = 5170, + [SMALL_STATE(301)] = 5238, + [SMALL_STATE(302)] = 5310, + [SMALL_STATE(303)] = 5424, + [SMALL_STATE(304)] = 5538, + [SMALL_STATE(305)] = 5626, + [SMALL_STATE(306)] = 5714, + [SMALL_STATE(307)] = 5782, + [SMALL_STATE(308)] = 5846, + [SMALL_STATE(309)] = 5914, + [SMALL_STATE(310)] = 6002, + [SMALL_STATE(311)] = 6069, + [SMALL_STATE(312)] = 6136, + [SMALL_STATE(313)] = 6223, + [SMALL_STATE(314)] = 6310, + [SMALL_STATE(315)] = 6397, + [SMALL_STATE(316)] = 6461, + [SMALL_STATE(317)] = 6545, + [SMALL_STATE(318)] = 6631, + [SMALL_STATE(319)] = 6693, + [SMALL_STATE(320)] = 6777, + [SMALL_STATE(321)] = 6861, + [SMALL_STATE(322)] = 6947, + [SMALL_STATE(323)] = 7033, + [SMALL_STATE(324)] = 7097, + [SMALL_STATE(325)] = 7183, + [SMALL_STATE(326)] = 7245, + [SMALL_STATE(327)] = 7331, + [SMALL_STATE(328)] = 7417, + [SMALL_STATE(329)] = 7501, + [SMALL_STATE(330)] = 7585, + [SMALL_STATE(331)] = 7668, + [SMALL_STATE(332)] = 7727, + [SMALL_STATE(333)] = 7790, + [SMALL_STATE(334)] = 7849, + [SMALL_STATE(335)] = 7932, + [SMALL_STATE(336)] = 7995, + [SMALL_STATE(337)] = 8058, + [SMALL_STATE(338)] = 8117, + [SMALL_STATE(339)] = 8198, + [SMALL_STATE(340)] = 8281, + [SMALL_STATE(341)] = 8344, + [SMALL_STATE(342)] = 8407, + [SMALL_STATE(343)] = 8488, + [SMALL_STATE(344)] = 8551, + [SMALL_STATE(345)] = 8634, + [SMALL_STATE(346)] = 8689, + [SMALL_STATE(347)] = 8754, + [SMALL_STATE(348)] = 8813, + [SMALL_STATE(349)] = 8878, + [SMALL_STATE(350)] = 8937, + [SMALL_STATE(351)] = 8996, + [SMALL_STATE(352)] = 9055, + [SMALL_STATE(353)] = 9116, + [SMALL_STATE(354)] = 9199, + [SMALL_STATE(355)] = 9280, + [SMALL_STATE(356)] = 9343, + [SMALL_STATE(357)] = 9402, + [SMALL_STATE(358)] = 9485, + [SMALL_STATE(359)] = 9540, + [SMALL_STATE(360)] = 9603, + [SMALL_STATE(361)] = 9666, + [SMALL_STATE(362)] = 9729, + [SMALL_STATE(363)] = 9812, + [SMALL_STATE(364)] = 9894, + [SMALL_STATE(365)] = 9956, + [SMALL_STATE(366)] = 10038, + [SMALL_STATE(367)] = 10120, + [SMALL_STATE(368)] = 10182, + [SMALL_STATE(369)] = 10264, + [SMALL_STATE(370)] = 10326, + [SMALL_STATE(371)] = 10408, + [SMALL_STATE(372)] = 10490, + [SMALL_STATE(373)] = 10552, + [SMALL_STATE(374)] = 10634, + [SMALL_STATE(375)] = 10716, + [SMALL_STATE(376)] = 10778, + [SMALL_STATE(377)] = 10840, + [SMALL_STATE(378)] = 10920, + [SMALL_STATE(379)] = 10982, + [SMALL_STATE(380)] = 11044, + [SMALL_STATE(381)] = 11124, + [SMALL_STATE(382)] = 11184, + [SMALL_STATE(383)] = 11246, + [SMALL_STATE(384)] = 11328, + [SMALL_STATE(385)] = 11390, + [SMALL_STATE(386)] = 11452, + [SMALL_STATE(387)] = 11532, + [SMALL_STATE(388)] = 11614, + [SMALL_STATE(389)] = 11676, + [SMALL_STATE(390)] = 11739, + [SMALL_STATE(391)] = 11800, + [SMALL_STATE(392)] = 11861, + [SMALL_STATE(393)] = 11940, + [SMALL_STATE(394)] = 12003, + [SMALL_STATE(395)] = 12066, + [SMALL_STATE(396)] = 12145, + [SMALL_STATE(397)] = 12206, + [SMALL_STATE(398)] = 12267, + [SMALL_STATE(399)] = 12328, + [SMALL_STATE(400)] = 12389, + [SMALL_STATE(401)] = 12452, + [SMALL_STATE(402)] = 12531, + [SMALL_STATE(403)] = 12592, + [SMALL_STATE(404)] = 12653, + [SMALL_STATE(405)] = 12714, + [SMALL_STATE(406)] = 12793, + [SMALL_STATE(407)] = 12872, + [SMALL_STATE(408)] = 12933, + [SMALL_STATE(409)] = 13012, + [SMALL_STATE(410)] = 13091, + [SMALL_STATE(411)] = 13170, + [SMALL_STATE(412)] = 13249, + [SMALL_STATE(413)] = 13328, + [SMALL_STATE(414)] = 13426, + [SMALL_STATE(415)] = 13486, + [SMALL_STATE(416)] = 13540, + [SMALL_STATE(417)] = 13638, + [SMALL_STATE(418)] = 13692, + [SMALL_STATE(419)] = 13790, + [SMALL_STATE(420)] = 13866, + [SMALL_STATE(421)] = 13964, + [SMALL_STATE(422)] = 14018, + [SMALL_STATE(423)] = 14072, + [SMALL_STATE(424)] = 14124, + [SMALL_STATE(425)] = 14222, + [SMALL_STATE(426)] = 14282, + [SMALL_STATE(427)] = 14342, + [SMALL_STATE(428)] = 14394, + [SMALL_STATE(429)] = 14454, + [SMALL_STATE(430)] = 14530, + [SMALL_STATE(431)] = 14581, + [SMALL_STATE(432)] = 14634, + [SMALL_STATE(433)] = 14685, + [SMALL_STATE(434)] = 14738, + [SMALL_STATE(435)] = 14791, + [SMALL_STATE(436)] = 14844, + [SMALL_STATE(437)] = 14896, + [SMALL_STATE(438)] = 14947, + [SMALL_STATE(439)] = 14998, + [SMALL_STATE(440)] = 15053, + [SMALL_STATE(441)] = 15104, + [SMALL_STATE(442)] = 15169, + [SMALL_STATE(443)] = 15224, + [SMALL_STATE(444)] = 15275, + [SMALL_STATE(445)] = 15326, + [SMALL_STATE(446)] = 15391, + [SMALL_STATE(447)] = 15442, + [SMALL_STATE(448)] = 15497, + [SMALL_STATE(449)] = 15549, + [SMALL_STATE(450)] = 15601, + [SMALL_STATE(451)] = 15653, + [SMALL_STATE(452)] = 15705, + [SMALL_STATE(453)] = 15757, + [SMALL_STATE(454)] = 15809, + [SMALL_STATE(455)] = 15861, + [SMALL_STATE(456)] = 15913, + [SMALL_STATE(457)] = 15965, + [SMALL_STATE(458)] = 16017, + [SMALL_STATE(459)] = 16065, + [SMALL_STATE(460)] = 16117, + [SMALL_STATE(461)] = 16169, + [SMALL_STATE(462)] = 16221, + [SMALL_STATE(463)] = 16269, + [SMALL_STATE(464)] = 16317, + [SMALL_STATE(465)] = 16369, + [SMALL_STATE(466)] = 16421, + [SMALL_STATE(467)] = 16469, + [SMALL_STATE(468)] = 16517, + [SMALL_STATE(469)] = 16565, + [SMALL_STATE(470)] = 16619, + [SMALL_STATE(471)] = 16673, + [SMALL_STATE(472)] = 16725, + [SMALL_STATE(473)] = 16777, + [SMALL_STATE(474)] = 16841, + [SMALL_STATE(475)] = 16889, + [SMALL_STATE(476)] = 16937, + [SMALL_STATE(477)] = 16985, + [SMALL_STATE(478)] = 17033, + [SMALL_STATE(479)] = 17087, + [SMALL_STATE(480)] = 17139, + [SMALL_STATE(481)] = 17191, + [SMALL_STATE(482)] = 17239, + [SMALL_STATE(483)] = 17291, + [SMALL_STATE(484)] = 17355, + [SMALL_STATE(485)] = 17401, + [SMALL_STATE(486)] = 17449, + [SMALL_STATE(487)] = 17497, + [SMALL_STATE(488)] = 17545, + [SMALL_STATE(489)] = 17593, + [SMALL_STATE(490)] = 17641, + [SMALL_STATE(491)] = 17689, + [SMALL_STATE(492)] = 17737, + [SMALL_STATE(493)] = 17785, + [SMALL_STATE(494)] = 17833, + [SMALL_STATE(495)] = 17885, + [SMALL_STATE(496)] = 17937, + [SMALL_STATE(497)] = 17985, + [SMALL_STATE(498)] = 18033, + [SMALL_STATE(499)] = 18085, + [SMALL_STATE(500)] = 18133, + [SMALL_STATE(501)] = 18181, + [SMALL_STATE(502)] = 18229, + [SMALL_STATE(503)] = 18277, + [SMALL_STATE(504)] = 18325, + [SMALL_STATE(505)] = 18373, + [SMALL_STATE(506)] = 18452, + [SMALL_STATE(507)] = 18531, + [SMALL_STATE(508)] = 18610, + [SMALL_STATE(509)] = 18689, + [SMALL_STATE(510)] = 18768, + [SMALL_STATE(511)] = 18847, + [SMALL_STATE(512)] = 18926, + [SMALL_STATE(513)] = 19005, + [SMALL_STATE(514)] = 19084, + [SMALL_STATE(515)] = 19163, + [SMALL_STATE(516)] = 19242, + [SMALL_STATE(517)] = 19321, + [SMALL_STATE(518)] = 19400, + [SMALL_STATE(519)] = 19479, + [SMALL_STATE(520)] = 19558, + [SMALL_STATE(521)] = 19637, + [SMALL_STATE(522)] = 19716, + [SMALL_STATE(523)] = 19795, + [SMALL_STATE(524)] = 19874, + [SMALL_STATE(525)] = 19953, + [SMALL_STATE(526)] = 20032, + [SMALL_STATE(527)] = 20111, + [SMALL_STATE(528)] = 20190, + [SMALL_STATE(529)] = 20269, + [SMALL_STATE(530)] = 20348, + [SMALL_STATE(531)] = 20427, + [SMALL_STATE(532)] = 20506, + [SMALL_STATE(533)] = 20557, + [SMALL_STATE(534)] = 20608, + [SMALL_STATE(535)] = 20659, + [SMALL_STATE(536)] = 20710, + [SMALL_STATE(537)] = 20761, + [SMALL_STATE(538)] = 20812, + [SMALL_STATE(539)] = 20863, + [SMALL_STATE(540)] = 20942, + [SMALL_STATE(541)] = 21021, + [SMALL_STATE(542)] = 21072, + [SMALL_STATE(543)] = 21123, + [SMALL_STATE(544)] = 21170, + [SMALL_STATE(545)] = 21217, + [SMALL_STATE(546)] = 21264, + [SMALL_STATE(547)] = 21311, + [SMALL_STATE(548)] = 21358, + [SMALL_STATE(549)] = 21405, + [SMALL_STATE(550)] = 21452, + [SMALL_STATE(551)] = 21499, + [SMALL_STATE(552)] = 21546, + [SMALL_STATE(553)] = 21593, + [SMALL_STATE(554)] = 21672, + [SMALL_STATE(555)] = 21719, + [SMALL_STATE(556)] = 21766, + [SMALL_STATE(557)] = 21813, + [SMALL_STATE(558)] = 21892, + [SMALL_STATE(559)] = 21939, + [SMALL_STATE(560)] = 21986, + [SMALL_STATE(561)] = 22033, + [SMALL_STATE(562)] = 22084, + [SMALL_STATE(563)] = 22131, + [SMALL_STATE(564)] = 22182, + [SMALL_STATE(565)] = 22261, + [SMALL_STATE(566)] = 22308, + [SMALL_STATE(567)] = 22359, + [SMALL_STATE(568)] = 22438, + [SMALL_STATE(569)] = 22517, + [SMALL_STATE(570)] = 22596, + [SMALL_STATE(571)] = 22643, + [SMALL_STATE(572)] = 22690, + [SMALL_STATE(573)] = 22741, + [SMALL_STATE(574)] = 22788, + [SMALL_STATE(575)] = 22835, + [SMALL_STATE(576)] = 22882, + [SMALL_STATE(577)] = 22929, + [SMALL_STATE(578)] = 22976, + [SMALL_STATE(579)] = 23023, + [SMALL_STATE(580)] = 23070, + [SMALL_STATE(581)] = 23117, + [SMALL_STATE(582)] = 23164, + [SMALL_STATE(583)] = 23211, + [SMALL_STATE(584)] = 23290, + [SMALL_STATE(585)] = 23337, + [SMALL_STATE(586)] = 23384, + [SMALL_STATE(587)] = 23431, + [SMALL_STATE(588)] = 23510, + [SMALL_STATE(589)] = 23557, + [SMALL_STATE(590)] = 23604, + [SMALL_STATE(591)] = 23651, + [SMALL_STATE(592)] = 23698, + [SMALL_STATE(593)] = 23749, + [SMALL_STATE(594)] = 23796, + [SMALL_STATE(595)] = 23847, + [SMALL_STATE(596)] = 23898, + [SMALL_STATE(597)] = 23945, + [SMALL_STATE(598)] = 23996, + [SMALL_STATE(599)] = 24043, + [SMALL_STATE(600)] = 24122, + [SMALL_STATE(601)] = 24201, + [SMALL_STATE(602)] = 24280, + [SMALL_STATE(603)] = 24327, + [SMALL_STATE(604)] = 24380, + [SMALL_STATE(605)] = 24459, + [SMALL_STATE(606)] = 24538, + [SMALL_STATE(607)] = 24617, + [SMALL_STATE(608)] = 24680, + [SMALL_STATE(609)] = 24727, + [SMALL_STATE(610)] = 24806, + [SMALL_STATE(611)] = 24885, + [SMALL_STATE(612)] = 24932, + [SMALL_STATE(613)] = 24979, + [SMALL_STATE(614)] = 25058, + [SMALL_STATE(615)] = 25105, + [SMALL_STATE(616)] = 25184, + [SMALL_STATE(617)] = 25231, + [SMALL_STATE(618)] = 25278, + [SMALL_STATE(619)] = 25329, + [SMALL_STATE(620)] = 25408, + [SMALL_STATE(621)] = 25487, + [SMALL_STATE(622)] = 25534, + [SMALL_STATE(623)] = 25613, + [SMALL_STATE(624)] = 25660, + [SMALL_STATE(625)] = 25707, + [SMALL_STATE(626)] = 25786, + [SMALL_STATE(627)] = 25833, + [SMALL_STATE(628)] = 25880, + [SMALL_STATE(629)] = 25927, + [SMALL_STATE(630)] = 26006, + [SMALL_STATE(631)] = 26053, + [SMALL_STATE(632)] = 26100, + [SMALL_STATE(633)] = 26147, + [SMALL_STATE(634)] = 26226, + [SMALL_STATE(635)] = 26273, + [SMALL_STATE(636)] = 26320, + [SMALL_STATE(637)] = 26399, + [SMALL_STATE(638)] = 26478, + [SMALL_STATE(639)] = 26557, + [SMALL_STATE(640)] = 26636, + [SMALL_STATE(641)] = 26715, + [SMALL_STATE(642)] = 26762, + [SMALL_STATE(643)] = 26809, + [SMALL_STATE(644)] = 26888, + [SMALL_STATE(645)] = 26935, + [SMALL_STATE(646)] = 27014, + [SMALL_STATE(647)] = 27093, + [SMALL_STATE(648)] = 27140, + [SMALL_STATE(649)] = 27219, + [SMALL_STATE(650)] = 27282, + [SMALL_STATE(651)] = 27361, + [SMALL_STATE(652)] = 27440, + [SMALL_STATE(653)] = 27491, + [SMALL_STATE(654)] = 27570, + [SMALL_STATE(655)] = 27649, + [SMALL_STATE(656)] = 27728, + [SMALL_STATE(657)] = 27807, + [SMALL_STATE(658)] = 27886, + [SMALL_STATE(659)] = 27965, + [SMALL_STATE(660)] = 28044, + [SMALL_STATE(661)] = 28123, + [SMALL_STATE(662)] = 28202, + [SMALL_STATE(663)] = 28281, + [SMALL_STATE(664)] = 28360, + [SMALL_STATE(665)] = 28439, + [SMALL_STATE(666)] = 28518, + [SMALL_STATE(667)] = 28597, + [SMALL_STATE(668)] = 28676, + [SMALL_STATE(669)] = 28755, + [SMALL_STATE(670)] = 28834, + [SMALL_STATE(671)] = 28913, + [SMALL_STATE(672)] = 28992, + [SMALL_STATE(673)] = 29071, + [SMALL_STATE(674)] = 29150, + [SMALL_STATE(675)] = 29229, + [SMALL_STATE(676)] = 29308, + [SMALL_STATE(677)] = 29387, + [SMALL_STATE(678)] = 29466, + [SMALL_STATE(679)] = 29545, + [SMALL_STATE(680)] = 29624, + [SMALL_STATE(681)] = 29703, + [SMALL_STATE(682)] = 29750, + [SMALL_STATE(683)] = 29797, + [SMALL_STATE(684)] = 29844, + [SMALL_STATE(685)] = 29923, + [SMALL_STATE(686)] = 30002, + [SMALL_STATE(687)] = 30049, + [SMALL_STATE(688)] = 30096, + [SMALL_STATE(689)] = 30143, + [SMALL_STATE(690)] = 30190, + [SMALL_STATE(691)] = 30237, + [SMALL_STATE(692)] = 30316, + [SMALL_STATE(693)] = 30395, + [SMALL_STATE(694)] = 30474, + [SMALL_STATE(695)] = 30553, + [SMALL_STATE(696)] = 30606, + [SMALL_STATE(697)] = 30685, + [SMALL_STATE(698)] = 30738, + [SMALL_STATE(699)] = 30817, + [SMALL_STATE(700)] = 30896, + [SMALL_STATE(701)] = 30943, + [SMALL_STATE(702)] = 31022, + [SMALL_STATE(703)] = 31101, + [SMALL_STATE(704)] = 31180, + [SMALL_STATE(705)] = 31259, + [SMALL_STATE(706)] = 31338, + [SMALL_STATE(707)] = 31417, + [SMALL_STATE(708)] = 31496, + [SMALL_STATE(709)] = 31575, + [SMALL_STATE(710)] = 31654, + [SMALL_STATE(711)] = 31733, + [SMALL_STATE(712)] = 31812, + [SMALL_STATE(713)] = 31891, + [SMALL_STATE(714)] = 31970, + [SMALL_STATE(715)] = 32049, + [SMALL_STATE(716)] = 32128, + [SMALL_STATE(717)] = 32207, + [SMALL_STATE(718)] = 32286, + [SMALL_STATE(719)] = 32365, + [SMALL_STATE(720)] = 32444, + [SMALL_STATE(721)] = 32523, + [SMALL_STATE(722)] = 32602, + [SMALL_STATE(723)] = 32681, + [SMALL_STATE(724)] = 32760, + [SMALL_STATE(725)] = 32839, + [SMALL_STATE(726)] = 32918, + [SMALL_STATE(727)] = 32965, + [SMALL_STATE(728)] = 33044, + [SMALL_STATE(729)] = 33091, + [SMALL_STATE(730)] = 33138, + [SMALL_STATE(731)] = 33185, + [SMALL_STATE(732)] = 33232, + [SMALL_STATE(733)] = 33311, + [SMALL_STATE(734)] = 33390, + [SMALL_STATE(735)] = 33469, + [SMALL_STATE(736)] = 33548, + [SMALL_STATE(737)] = 33627, + [SMALL_STATE(738)] = 33706, + [SMALL_STATE(739)] = 33785, + [SMALL_STATE(740)] = 33864, + [SMALL_STATE(741)] = 33943, + [SMALL_STATE(742)] = 34022, + [SMALL_STATE(743)] = 34101, + [SMALL_STATE(744)] = 34180, + [SMALL_STATE(745)] = 34259, + [SMALL_STATE(746)] = 34338, + [SMALL_STATE(747)] = 34417, + [SMALL_STATE(748)] = 34496, + [SMALL_STATE(749)] = 34575, + [SMALL_STATE(750)] = 34654, + [SMALL_STATE(751)] = 34733, + [SMALL_STATE(752)] = 34812, + [SMALL_STATE(753)] = 34891, + [SMALL_STATE(754)] = 34970, + [SMALL_STATE(755)] = 35049, + [SMALL_STATE(756)] = 35096, + [SMALL_STATE(757)] = 35143, + [SMALL_STATE(758)] = 35190, + [SMALL_STATE(759)] = 35237, + [SMALL_STATE(760)] = 35316, + [SMALL_STATE(761)] = 35395, + [SMALL_STATE(762)] = 35474, + [SMALL_STATE(763)] = 35553, + [SMALL_STATE(764)] = 35632, + [SMALL_STATE(765)] = 35711, + [SMALL_STATE(766)] = 35790, + [SMALL_STATE(767)] = 35841, + [SMALL_STATE(768)] = 35920, + [SMALL_STATE(769)] = 35999, + [SMALL_STATE(770)] = 36046, + [SMALL_STATE(771)] = 36093, + [SMALL_STATE(772)] = 36140, + [SMALL_STATE(773)] = 36187, + [SMALL_STATE(774)] = 36266, + [SMALL_STATE(775)] = 36345, + [SMALL_STATE(776)] = 36424, + [SMALL_STATE(777)] = 36503, + [SMALL_STATE(778)] = 36582, + [SMALL_STATE(779)] = 36661, + [SMALL_STATE(780)] = 36740, + [SMALL_STATE(781)] = 36787, + [SMALL_STATE(782)] = 36834, + [SMALL_STATE(783)] = 36913, + [SMALL_STATE(784)] = 36992, + [SMALL_STATE(785)] = 37071, + [SMALL_STATE(786)] = 37150, + [SMALL_STATE(787)] = 37229, + [SMALL_STATE(788)] = 37308, + [SMALL_STATE(789)] = 37387, + [SMALL_STATE(790)] = 37466, + [SMALL_STATE(791)] = 37545, + [SMALL_STATE(792)] = 37624, + [SMALL_STATE(793)] = 37703, + [SMALL_STATE(794)] = 37782, + [SMALL_STATE(795)] = 37861, + [SMALL_STATE(796)] = 37940, + [SMALL_STATE(797)] = 38019, + [SMALL_STATE(798)] = 38098, + [SMALL_STATE(799)] = 38177, + [SMALL_STATE(800)] = 38256, + [SMALL_STATE(801)] = 38335, + [SMALL_STATE(802)] = 38382, + [SMALL_STATE(803)] = 38461, + [SMALL_STATE(804)] = 38540, + [SMALL_STATE(805)] = 38619, + [SMALL_STATE(806)] = 38698, + [SMALL_STATE(807)] = 38777, + [SMALL_STATE(808)] = 38828, + [SMALL_STATE(809)] = 38907, + [SMALL_STATE(810)] = 38986, + [SMALL_STATE(811)] = 39031, + [SMALL_STATE(812)] = 39110, + [SMALL_STATE(813)] = 39189, + [SMALL_STATE(814)] = 39268, + [SMALL_STATE(815)] = 39347, + [SMALL_STATE(816)] = 39426, + [SMALL_STATE(817)] = 39505, + [SMALL_STATE(818)] = 39556, + [SMALL_STATE(819)] = 39607, + [SMALL_STATE(820)] = 39658, + [SMALL_STATE(821)] = 39737, + [SMALL_STATE(822)] = 39816, + [SMALL_STATE(823)] = 39895, + [SMALL_STATE(824)] = 39974, + [SMALL_STATE(825)] = 40053, + [SMALL_STATE(826)] = 40132, + [SMALL_STATE(827)] = 40211, + [SMALL_STATE(828)] = 40290, + [SMALL_STATE(829)] = 40369, + [SMALL_STATE(830)] = 40448, + [SMALL_STATE(831)] = 40527, + [SMALL_STATE(832)] = 40578, + [SMALL_STATE(833)] = 40629, + [SMALL_STATE(834)] = 40708, + [SMALL_STATE(835)] = 40787, + [SMALL_STATE(836)] = 40866, + [SMALL_STATE(837)] = 40945, + [SMALL_STATE(838)] = 40996, + [SMALL_STATE(839)] = 41075, + [SMALL_STATE(840)] = 41154, + [SMALL_STATE(841)] = 41233, + [SMALL_STATE(842)] = 41312, + [SMALL_STATE(843)] = 41363, + [SMALL_STATE(844)] = 41442, + [SMALL_STATE(845)] = 41521, + [SMALL_STATE(846)] = 41600, + [SMALL_STATE(847)] = 41679, + [SMALL_STATE(848)] = 41730, + [SMALL_STATE(849)] = 41781, + [SMALL_STATE(850)] = 41860, + [SMALL_STATE(851)] = 41939, + [SMALL_STATE(852)] = 42018, + [SMALL_STATE(853)] = 42069, + [SMALL_STATE(854)] = 42148, + [SMALL_STATE(855)] = 42227, + [SMALL_STATE(856)] = 42306, + [SMALL_STATE(857)] = 42355, + [SMALL_STATE(858)] = 42404, + [SMALL_STATE(859)] = 42483, + [SMALL_STATE(860)] = 42562, + [SMALL_STATE(861)] = 42641, + [SMALL_STATE(862)] = 42686, + [SMALL_STATE(863)] = 42765, + [SMALL_STATE(864)] = 42844, + [SMALL_STATE(865)] = 42923, + [SMALL_STATE(866)] = 43002, + [SMALL_STATE(867)] = 43081, + [SMALL_STATE(868)] = 43160, + [SMALL_STATE(869)] = 43239, + [SMALL_STATE(870)] = 43318, + [SMALL_STATE(871)] = 43397, + [SMALL_STATE(872)] = 43476, + [SMALL_STATE(873)] = 43555, + [SMALL_STATE(874)] = 43634, + [SMALL_STATE(875)] = 43713, + [SMALL_STATE(876)] = 43764, + [SMALL_STATE(877)] = 43843, + [SMALL_STATE(878)] = 43922, + [SMALL_STATE(879)] = 43971, + [SMALL_STATE(880)] = 44050, + [SMALL_STATE(881)] = 44105, + [SMALL_STATE(882)] = 44184, + [SMALL_STATE(883)] = 44237, + [SMALL_STATE(884)] = 44316, + [SMALL_STATE(885)] = 44395, + [SMALL_STATE(886)] = 44446, + [SMALL_STATE(887)] = 44497, + [SMALL_STATE(888)] = 44576, + [SMALL_STATE(889)] = 44655, + [SMALL_STATE(890)] = 44734, + [SMALL_STATE(891)] = 44813, + [SMALL_STATE(892)] = 44892, + [SMALL_STATE(893)] = 44971, + [SMALL_STATE(894)] = 45050, + [SMALL_STATE(895)] = 45101, + [SMALL_STATE(896)] = 45180, + [SMALL_STATE(897)] = 45259, + [SMALL_STATE(898)] = 45338, + [SMALL_STATE(899)] = 45417, + [SMALL_STATE(900)] = 45496, + [SMALL_STATE(901)] = 45575, + [SMALL_STATE(902)] = 45620, + [SMALL_STATE(903)] = 45665, + [SMALL_STATE(904)] = 45710, + [SMALL_STATE(905)] = 45761, + [SMALL_STATE(906)] = 45812, + [SMALL_STATE(907)] = 45891, + [SMALL_STATE(908)] = 45970, + [SMALL_STATE(909)] = 46049, + [SMALL_STATE(910)] = 46128, + [SMALL_STATE(911)] = 46207, + [SMALL_STATE(912)] = 46286, + [SMALL_STATE(913)] = 46365, + [SMALL_STATE(914)] = 46416, + [SMALL_STATE(915)] = 46467, + [SMALL_STATE(916)] = 46546, + [SMALL_STATE(917)] = 46593, + [SMALL_STATE(918)] = 46640, + [SMALL_STATE(919)] = 46687, + [SMALL_STATE(920)] = 46740, + [SMALL_STATE(921)] = 46803, + [SMALL_STATE(922)] = 46854, + [SMALL_STATE(923)] = 46933, + [SMALL_STATE(924)] = 47012, + [SMALL_STATE(925)] = 47063, + [SMALL_STATE(926)] = 47114, + [SMALL_STATE(927)] = 47177, + [SMALL_STATE(928)] = 47223, + [SMALL_STATE(929)] = 47299, + [SMALL_STATE(930)] = 47353, + [SMALL_STATE(931)] = 47435, + [SMALL_STATE(932)] = 47489, + [SMALL_STATE(933)] = 47535, + [SMALL_STATE(934)] = 47581, + [SMALL_STATE(935)] = 47627, + [SMALL_STATE(936)] = 47673, + [SMALL_STATE(937)] = 47755, + [SMALL_STATE(938)] = 47809, + [SMALL_STATE(939)] = 47863, + [SMALL_STATE(940)] = 47909, + [SMALL_STATE(941)] = 47963, + [SMALL_STATE(942)] = 48017, + [SMALL_STATE(943)] = 48067, + [SMALL_STATE(944)] = 48113, + [SMALL_STATE(945)] = 48159, + [SMALL_STATE(946)] = 48205, + [SMALL_STATE(947)] = 48251, + [SMALL_STATE(948)] = 48301, + [SMALL_STATE(949)] = 48351, + [SMALL_STATE(950)] = 48397, + [SMALL_STATE(951)] = 48443, + [SMALL_STATE(952)] = 48489, + [SMALL_STATE(953)] = 48571, + [SMALL_STATE(954)] = 48621, + [SMALL_STATE(955)] = 48667, + [SMALL_STATE(956)] = 48717, + [SMALL_STATE(957)] = 48763, + [SMALL_STATE(958)] = 48821, + [SMALL_STATE(959)] = 48881, + [SMALL_STATE(960)] = 48931, + [SMALL_STATE(961)] = 48977, + [SMALL_STATE(962)] = 49027, + [SMALL_STATE(963)] = 49077, + [SMALL_STATE(964)] = 49127, + [SMALL_STATE(965)] = 49173, + [SMALL_STATE(966)] = 49219, + [SMALL_STATE(967)] = 49265, + [SMALL_STATE(968)] = 49311, + [SMALL_STATE(969)] = 49357, + [SMALL_STATE(970)] = 49403, + [SMALL_STATE(971)] = 49453, + [SMALL_STATE(972)] = 49499, + [SMALL_STATE(973)] = 49549, + [SMALL_STATE(974)] = 49599, + [SMALL_STATE(975)] = 49649, + [SMALL_STATE(976)] = 49699, + [SMALL_STATE(977)] = 49745, + [SMALL_STATE(978)] = 49791, + [SMALL_STATE(979)] = 49837, + [SMALL_STATE(980)] = 49883, + [SMALL_STATE(981)] = 49929, + [SMALL_STATE(982)] = 49979, + [SMALL_STATE(983)] = 50029, + [SMALL_STATE(984)] = 50075, + [SMALL_STATE(985)] = 50121, + [SMALL_STATE(986)] = 50167, + [SMALL_STATE(987)] = 50213, + [SMALL_STATE(988)] = 50259, + [SMALL_STATE(989)] = 50305, + [SMALL_STATE(990)] = 50355, + [SMALL_STATE(991)] = 50405, + [SMALL_STATE(992)] = 50455, + [SMALL_STATE(993)] = 50501, + [SMALL_STATE(994)] = 50547, + [SMALL_STATE(995)] = 50601, + [SMALL_STATE(996)] = 50647, + [SMALL_STATE(997)] = 50693, + [SMALL_STATE(998)] = 50739, + [SMALL_STATE(999)] = 50785, + [SMALL_STATE(1000)] = 50835, + [SMALL_STATE(1001)] = 50881, + [SMALL_STATE(1002)] = 50927, + [SMALL_STATE(1003)] = 50973, + [SMALL_STATE(1004)] = 51019, + [SMALL_STATE(1005)] = 51065, + [SMALL_STATE(1006)] = 51111, + [SMALL_STATE(1007)] = 51157, + [SMALL_STATE(1008)] = 51203, + [SMALL_STATE(1009)] = 51249, + [SMALL_STATE(1010)] = 51299, + [SMALL_STATE(1011)] = 51345, + [SMALL_STATE(1012)] = 51391, + [SMALL_STATE(1013)] = 51441, + [SMALL_STATE(1014)] = 51491, + [SMALL_STATE(1015)] = 51537, + [SMALL_STATE(1016)] = 51583, + [SMALL_STATE(1017)] = 51629, + [SMALL_STATE(1018)] = 51675, + [SMALL_STATE(1019)] = 51725, + [SMALL_STATE(1020)] = 51801, + [SMALL_STATE(1021)] = 51877, + [SMALL_STATE(1022)] = 51953, + [SMALL_STATE(1023)] = 52029, + [SMALL_STATE(1024)] = 52075, + [SMALL_STATE(1025)] = 52125, + [SMALL_STATE(1026)] = 52175, + [SMALL_STATE(1027)] = 52221, + [SMALL_STATE(1028)] = 52267, + [SMALL_STATE(1029)] = 52313, + [SMALL_STATE(1030)] = 52389, + [SMALL_STATE(1031)] = 52465, + [SMALL_STATE(1032)] = 52511, + [SMALL_STATE(1033)] = 52557, + [SMALL_STATE(1034)] = 52633, + [SMALL_STATE(1035)] = 52709, + [SMALL_STATE(1036)] = 52785, + [SMALL_STATE(1037)] = 52861, + [SMALL_STATE(1038)] = 52937, + [SMALL_STATE(1039)] = 53013, + [SMALL_STATE(1040)] = 53089, + [SMALL_STATE(1041)] = 53165, + [SMALL_STATE(1042)] = 53211, + [SMALL_STATE(1043)] = 53287, + [SMALL_STATE(1044)] = 53363, + [SMALL_STATE(1045)] = 53439, + [SMALL_STATE(1046)] = 53515, + [SMALL_STATE(1047)] = 53591, + [SMALL_STATE(1048)] = 53667, + [SMALL_STATE(1049)] = 53743, + [SMALL_STATE(1050)] = 53789, + [SMALL_STATE(1051)] = 53865, + [SMALL_STATE(1052)] = 53941, + [SMALL_STATE(1053)] = 53991, + [SMALL_STATE(1054)] = 54037, + [SMALL_STATE(1055)] = 54089, + [SMALL_STATE(1056)] = 54165, + [SMALL_STATE(1057)] = 54217, + [SMALL_STATE(1058)] = 54263, + [SMALL_STATE(1059)] = 54309, + [SMALL_STATE(1060)] = 54355, + [SMALL_STATE(1061)] = 54401, + [SMALL_STATE(1062)] = 54477, + [SMALL_STATE(1063)] = 54553, + [SMALL_STATE(1064)] = 54629, + [SMALL_STATE(1065)] = 54705, + [SMALL_STATE(1066)] = 54781, + [SMALL_STATE(1067)] = 54857, + [SMALL_STATE(1068)] = 54903, + [SMALL_STATE(1069)] = 54979, + [SMALL_STATE(1070)] = 55055, + [SMALL_STATE(1071)] = 55131, + [SMALL_STATE(1072)] = 55207, + [SMALL_STATE(1073)] = 55283, + [SMALL_STATE(1074)] = 55359, + [SMALL_STATE(1075)] = 55435, + [SMALL_STATE(1076)] = 55511, + [SMALL_STATE(1077)] = 55587, + [SMALL_STATE(1078)] = 55663, + [SMALL_STATE(1079)] = 55739, + [SMALL_STATE(1080)] = 55815, + [SMALL_STATE(1081)] = 55891, + [SMALL_STATE(1082)] = 55967, + [SMALL_STATE(1083)] = 56013, + [SMALL_STATE(1084)] = 56089, + [SMALL_STATE(1085)] = 56165, + [SMALL_STATE(1086)] = 56211, + [SMALL_STATE(1087)] = 56257, + [SMALL_STATE(1088)] = 56303, + [SMALL_STATE(1089)] = 56349, + [SMALL_STATE(1090)] = 56395, + [SMALL_STATE(1091)] = 56445, + [SMALL_STATE(1092)] = 56495, + [SMALL_STATE(1093)] = 56571, + [SMALL_STATE(1094)] = 56621, + [SMALL_STATE(1095)] = 56667, + [SMALL_STATE(1096)] = 56713, + [SMALL_STATE(1097)] = 56759, + [SMALL_STATE(1098)] = 56809, + [SMALL_STATE(1099)] = 56855, + [SMALL_STATE(1100)] = 56901, + [SMALL_STATE(1101)] = 56951, + [SMALL_STATE(1102)] = 56997, + [SMALL_STATE(1103)] = 57043, + [SMALL_STATE(1104)] = 57119, + [SMALL_STATE(1105)] = 57195, + [SMALL_STATE(1106)] = 57271, + [SMALL_STATE(1107)] = 57347, + [SMALL_STATE(1108)] = 57393, + [SMALL_STATE(1109)] = 57443, + [SMALL_STATE(1110)] = 57519, + [SMALL_STATE(1111)] = 57569, + [SMALL_STATE(1112)] = 57645, + [SMALL_STATE(1113)] = 57721, + [SMALL_STATE(1114)] = 57797, + [SMALL_STATE(1115)] = 57873, + [SMALL_STATE(1116)] = 57919, + [SMALL_STATE(1117)] = 57965, + [SMALL_STATE(1118)] = 58011, + [SMALL_STATE(1119)] = 58061, + [SMALL_STATE(1120)] = 58111, + [SMALL_STATE(1121)] = 58157, + [SMALL_STATE(1122)] = 58203, + [SMALL_STATE(1123)] = 58249, + [SMALL_STATE(1124)] = 58295, + [SMALL_STATE(1125)] = 58341, + [SMALL_STATE(1126)] = 58391, + [SMALL_STATE(1127)] = 58467, + [SMALL_STATE(1128)] = 58513, + [SMALL_STATE(1129)] = 58589, + [SMALL_STATE(1130)] = 58635, + [SMALL_STATE(1131)] = 58695, + [SMALL_STATE(1132)] = 58741, + [SMALL_STATE(1133)] = 58787, + [SMALL_STATE(1134)] = 58863, + [SMALL_STATE(1135)] = 58909, + [SMALL_STATE(1136)] = 58955, + [SMALL_STATE(1137)] = 59001, + [SMALL_STATE(1138)] = 59047, + [SMALL_STATE(1139)] = 59123, + [SMALL_STATE(1140)] = 59173, + [SMALL_STATE(1141)] = 59249, + [SMALL_STATE(1142)] = 59295, + [SMALL_STATE(1143)] = 59341, + [SMALL_STATE(1144)] = 59387, + [SMALL_STATE(1145)] = 59433, + [SMALL_STATE(1146)] = 59479, + [SMALL_STATE(1147)] = 59525, + [SMALL_STATE(1148)] = 59575, + [SMALL_STATE(1149)] = 59621, + [SMALL_STATE(1150)] = 59667, + [SMALL_STATE(1151)] = 59713, + [SMALL_STATE(1152)] = 59759, + [SMALL_STATE(1153)] = 59835, + [SMALL_STATE(1154)] = 59911, + [SMALL_STATE(1155)] = 59957, + [SMALL_STATE(1156)] = 60003, + [SMALL_STATE(1157)] = 60049, + [SMALL_STATE(1158)] = 60099, + [SMALL_STATE(1159)] = 60145, + [SMALL_STATE(1160)] = 60205, + [SMALL_STATE(1161)] = 60255, + [SMALL_STATE(1162)] = 60301, + [SMALL_STATE(1163)] = 60351, + [SMALL_STATE(1164)] = 60397, + [SMALL_STATE(1165)] = 60447, + [SMALL_STATE(1166)] = 60497, + [SMALL_STATE(1167)] = 60547, + [SMALL_STATE(1168)] = 60623, + [SMALL_STATE(1169)] = 60699, + [SMALL_STATE(1170)] = 60749, + [SMALL_STATE(1171)] = 60825, + [SMALL_STATE(1172)] = 60901, + [SMALL_STATE(1173)] = 60977, + [SMALL_STATE(1174)] = 61027, + [SMALL_STATE(1175)] = 61103, + [SMALL_STATE(1176)] = 61179, + [SMALL_STATE(1177)] = 61255, + [SMALL_STATE(1178)] = 61331, + [SMALL_STATE(1179)] = 61407, + [SMALL_STATE(1180)] = 61483, + [SMALL_STATE(1181)] = 61559, + [SMALL_STATE(1182)] = 61609, + [SMALL_STATE(1183)] = 61685, + [SMALL_STATE(1184)] = 61761, + [SMALL_STATE(1185)] = 61837, + [SMALL_STATE(1186)] = 61913, + [SMALL_STATE(1187)] = 61989, + [SMALL_STATE(1188)] = 62065, + [SMALL_STATE(1189)] = 62141, + [SMALL_STATE(1190)] = 62217, + [SMALL_STATE(1191)] = 62267, + [SMALL_STATE(1192)] = 62343, + [SMALL_STATE(1193)] = 62419, + [SMALL_STATE(1194)] = 62469, + [SMALL_STATE(1195)] = 62519, + [SMALL_STATE(1196)] = 62565, + [SMALL_STATE(1197)] = 62641, + [SMALL_STATE(1198)] = 62717, + [SMALL_STATE(1199)] = 62793, + [SMALL_STATE(1200)] = 62869, + [SMALL_STATE(1201)] = 62945, + [SMALL_STATE(1202)] = 62995, + [SMALL_STATE(1203)] = 63071, + [SMALL_STATE(1204)] = 63147, + [SMALL_STATE(1205)] = 63223, + [SMALL_STATE(1206)] = 63299, + [SMALL_STATE(1207)] = 63375, + [SMALL_STATE(1208)] = 63451, + [SMALL_STATE(1209)] = 63527, + [SMALL_STATE(1210)] = 63603, + [SMALL_STATE(1211)] = 63679, + [SMALL_STATE(1212)] = 63755, + [SMALL_STATE(1213)] = 63831, + [SMALL_STATE(1214)] = 63907, + [SMALL_STATE(1215)] = 63957, + [SMALL_STATE(1216)] = 64033, + [SMALL_STATE(1217)] = 64109, + [SMALL_STATE(1218)] = 64159, + [SMALL_STATE(1219)] = 64235, + [SMALL_STATE(1220)] = 64311, + [SMALL_STATE(1221)] = 64387, + [SMALL_STATE(1222)] = 64463, + [SMALL_STATE(1223)] = 64513, + [SMALL_STATE(1224)] = 64589, + [SMALL_STATE(1225)] = 64665, + [SMALL_STATE(1226)] = 64741, + [SMALL_STATE(1227)] = 64817, + [SMALL_STATE(1228)] = 64893, + [SMALL_STATE(1229)] = 64969, + [SMALL_STATE(1230)] = 65015, + [SMALL_STATE(1231)] = 65091, + [SMALL_STATE(1232)] = 65167, + [SMALL_STATE(1233)] = 65243, + [SMALL_STATE(1234)] = 65319, + [SMALL_STATE(1235)] = 65395, + [SMALL_STATE(1236)] = 65471, + [SMALL_STATE(1237)] = 65547, + [SMALL_STATE(1238)] = 65623, + [SMALL_STATE(1239)] = 65699, + [SMALL_STATE(1240)] = 65775, + [SMALL_STATE(1241)] = 65851, + [SMALL_STATE(1242)] = 65927, + [SMALL_STATE(1243)] = 66003, + [SMALL_STATE(1244)] = 66079, + [SMALL_STATE(1245)] = 66155, + [SMALL_STATE(1246)] = 66231, + [SMALL_STATE(1247)] = 66307, + [SMALL_STATE(1248)] = 66383, + [SMALL_STATE(1249)] = 66459, + [SMALL_STATE(1250)] = 66535, + [SMALL_STATE(1251)] = 66611, + [SMALL_STATE(1252)] = 66687, + [SMALL_STATE(1253)] = 66763, + [SMALL_STATE(1254)] = 66839, + [SMALL_STATE(1255)] = 66915, + [SMALL_STATE(1256)] = 66961, + [SMALL_STATE(1257)] = 67023, + [SMALL_STATE(1258)] = 67099, + [SMALL_STATE(1259)] = 67145, + [SMALL_STATE(1260)] = 67221, + [SMALL_STATE(1261)] = 67275, + [SMALL_STATE(1262)] = 67351, + [SMALL_STATE(1263)] = 67427, + [SMALL_STATE(1264)] = 67503, + [SMALL_STATE(1265)] = 67579, + [SMALL_STATE(1266)] = 67655, + [SMALL_STATE(1267)] = 67731, + [SMALL_STATE(1268)] = 67807, + [SMALL_STATE(1269)] = 67883, + [SMALL_STATE(1270)] = 67959, + [SMALL_STATE(1271)] = 68035, + [SMALL_STATE(1272)] = 68111, + [SMALL_STATE(1273)] = 68157, + [SMALL_STATE(1274)] = 68233, + [SMALL_STATE(1275)] = 68279, + [SMALL_STATE(1276)] = 68355, + [SMALL_STATE(1277)] = 68431, + [SMALL_STATE(1278)] = 68507, + [SMALL_STATE(1279)] = 68583, + [SMALL_STATE(1280)] = 68659, + [SMALL_STATE(1281)] = 68705, + [SMALL_STATE(1282)] = 68781, + [SMALL_STATE(1283)] = 68857, + [SMALL_STATE(1284)] = 68933, + [SMALL_STATE(1285)] = 69009, + [SMALL_STATE(1286)] = 69085, + [SMALL_STATE(1287)] = 69161, + [SMALL_STATE(1288)] = 69237, + [SMALL_STATE(1289)] = 69313, + [SMALL_STATE(1290)] = 69389, + [SMALL_STATE(1291)] = 69465, + [SMALL_STATE(1292)] = 69541, + [SMALL_STATE(1293)] = 69617, + [SMALL_STATE(1294)] = 69693, + [SMALL_STATE(1295)] = 69769, + [SMALL_STATE(1296)] = 69845, + [SMALL_STATE(1297)] = 69921, + [SMALL_STATE(1298)] = 69997, + [SMALL_STATE(1299)] = 70073, + [SMALL_STATE(1300)] = 70149, + [SMALL_STATE(1301)] = 70199, + [SMALL_STATE(1302)] = 70249, + [SMALL_STATE(1303)] = 70325, + [SMALL_STATE(1304)] = 70371, + [SMALL_STATE(1305)] = 70447, + [SMALL_STATE(1306)] = 70523, + [SMALL_STATE(1307)] = 70599, + [SMALL_STATE(1308)] = 70675, + [SMALL_STATE(1309)] = 70751, + [SMALL_STATE(1310)] = 70827, + [SMALL_STATE(1311)] = 70903, + [SMALL_STATE(1312)] = 70979, + [SMALL_STATE(1313)] = 71055, + [SMALL_STATE(1314)] = 71131, + [SMALL_STATE(1315)] = 71177, + [SMALL_STATE(1316)] = 71253, + [SMALL_STATE(1317)] = 71329, + [SMALL_STATE(1318)] = 71405, + [SMALL_STATE(1319)] = 71481, + [SMALL_STATE(1320)] = 71557, + [SMALL_STATE(1321)] = 71633, + [SMALL_STATE(1322)] = 71709, + [SMALL_STATE(1323)] = 71755, + [SMALL_STATE(1324)] = 71831, + [SMALL_STATE(1325)] = 71907, + [SMALL_STATE(1326)] = 71983, + [SMALL_STATE(1327)] = 72059, + [SMALL_STATE(1328)] = 72135, + [SMALL_STATE(1329)] = 72211, + [SMALL_STATE(1330)] = 72287, + [SMALL_STATE(1331)] = 72363, + [SMALL_STATE(1332)] = 72439, + [SMALL_STATE(1333)] = 72515, + [SMALL_STATE(1334)] = 72591, + [SMALL_STATE(1335)] = 72667, + [SMALL_STATE(1336)] = 72743, + [SMALL_STATE(1337)] = 72819, + [SMALL_STATE(1338)] = 72895, + [SMALL_STATE(1339)] = 72971, + [SMALL_STATE(1340)] = 73047, + [SMALL_STATE(1341)] = 73123, + [SMALL_STATE(1342)] = 73199, + [SMALL_STATE(1343)] = 73275, + [SMALL_STATE(1344)] = 73351, + [SMALL_STATE(1345)] = 73427, + [SMALL_STATE(1346)] = 73477, + [SMALL_STATE(1347)] = 73527, + [SMALL_STATE(1348)] = 73603, + [SMALL_STATE(1349)] = 73679, + [SMALL_STATE(1350)] = 73755, + [SMALL_STATE(1351)] = 73831, + [SMALL_STATE(1352)] = 73907, + [SMALL_STATE(1353)] = 73983, + [SMALL_STATE(1354)] = 74059, + [SMALL_STATE(1355)] = 74135, + [SMALL_STATE(1356)] = 74211, + [SMALL_STATE(1357)] = 74287, + [SMALL_STATE(1358)] = 74363, + [SMALL_STATE(1359)] = 74439, + [SMALL_STATE(1360)] = 74515, + [SMALL_STATE(1361)] = 74591, + [SMALL_STATE(1362)] = 74667, + [SMALL_STATE(1363)] = 74743, + [SMALL_STATE(1364)] = 74819, + [SMALL_STATE(1365)] = 74895, + [SMALL_STATE(1366)] = 74971, + [SMALL_STATE(1367)] = 75047, + [SMALL_STATE(1368)] = 75123, + [SMALL_STATE(1369)] = 75199, + [SMALL_STATE(1370)] = 75275, + [SMALL_STATE(1371)] = 75351, + [SMALL_STATE(1372)] = 75427, + [SMALL_STATE(1373)] = 75503, + [SMALL_STATE(1374)] = 75579, + [SMALL_STATE(1375)] = 75655, + [SMALL_STATE(1376)] = 75731, + [SMALL_STATE(1377)] = 75807, + [SMALL_STATE(1378)] = 75883, + [SMALL_STATE(1379)] = 75959, + [SMALL_STATE(1380)] = 76035, + [SMALL_STATE(1381)] = 76085, + [SMALL_STATE(1382)] = 76161, + [SMALL_STATE(1383)] = 76237, + [SMALL_STATE(1384)] = 76313, + [SMALL_STATE(1385)] = 76363, + [SMALL_STATE(1386)] = 76439, + [SMALL_STATE(1387)] = 76515, + [SMALL_STATE(1388)] = 76565, + [SMALL_STATE(1389)] = 76641, + [SMALL_STATE(1390)] = 76717, + [SMALL_STATE(1391)] = 76793, + [SMALL_STATE(1392)] = 76869, + [SMALL_STATE(1393)] = 76945, + [SMALL_STATE(1394)] = 77021, + [SMALL_STATE(1395)] = 77097, + [SMALL_STATE(1396)] = 77173, + [SMALL_STATE(1397)] = 77223, + [SMALL_STATE(1398)] = 77299, + [SMALL_STATE(1399)] = 77375, + [SMALL_STATE(1400)] = 77451, + [SMALL_STATE(1401)] = 77527, + [SMALL_STATE(1402)] = 77603, + [SMALL_STATE(1403)] = 77679, + [SMALL_STATE(1404)] = 77755, + [SMALL_STATE(1405)] = 77831, + [SMALL_STATE(1406)] = 77881, + [SMALL_STATE(1407)] = 77957, + [SMALL_STATE(1408)] = 78033, + [SMALL_STATE(1409)] = 78109, + [SMALL_STATE(1410)] = 78185, + [SMALL_STATE(1411)] = 78261, + [SMALL_STATE(1412)] = 78337, + [SMALL_STATE(1413)] = 78413, + [SMALL_STATE(1414)] = 78489, + [SMALL_STATE(1415)] = 78565, + [SMALL_STATE(1416)] = 78641, + [SMALL_STATE(1417)] = 78717, + [SMALL_STATE(1418)] = 78793, + [SMALL_STATE(1419)] = 78839, + [SMALL_STATE(1420)] = 78901, + [SMALL_STATE(1421)] = 78977, + [SMALL_STATE(1422)] = 79027, + [SMALL_STATE(1423)] = 79103, + [SMALL_STATE(1424)] = 79179, + [SMALL_STATE(1425)] = 79229, + [SMALL_STATE(1426)] = 79279, + [SMALL_STATE(1427)] = 79355, + [SMALL_STATE(1428)] = 79431, + [SMALL_STATE(1429)] = 79507, + [SMALL_STATE(1430)] = 79583, + [SMALL_STATE(1431)] = 79659, + [SMALL_STATE(1432)] = 79709, + [SMALL_STATE(1433)] = 79785, + [SMALL_STATE(1434)] = 79861, + [SMALL_STATE(1435)] = 79937, + [SMALL_STATE(1436)] = 80013, + [SMALL_STATE(1437)] = 80089, + [SMALL_STATE(1438)] = 80165, + [SMALL_STATE(1439)] = 80241, + [SMALL_STATE(1440)] = 80317, + [SMALL_STATE(1441)] = 80393, + [SMALL_STATE(1442)] = 80469, + [SMALL_STATE(1443)] = 80545, + [SMALL_STATE(1444)] = 80621, + [SMALL_STATE(1445)] = 80697, + [SMALL_STATE(1446)] = 80773, + [SMALL_STATE(1447)] = 80849, + [SMALL_STATE(1448)] = 80925, + [SMALL_STATE(1449)] = 81001, + [SMALL_STATE(1450)] = 81077, + [SMALL_STATE(1451)] = 81153, + [SMALL_STATE(1452)] = 81229, + [SMALL_STATE(1453)] = 81305, + [SMALL_STATE(1454)] = 81381, + [SMALL_STATE(1455)] = 81457, + [SMALL_STATE(1456)] = 81533, + [SMALL_STATE(1457)] = 81609, + [SMALL_STATE(1458)] = 81685, + [SMALL_STATE(1459)] = 81761, + [SMALL_STATE(1460)] = 81811, + [SMALL_STATE(1461)] = 81887, + [SMALL_STATE(1462)] = 81963, + [SMALL_STATE(1463)] = 82013, + [SMALL_STATE(1464)] = 82089, + [SMALL_STATE(1465)] = 82139, + [SMALL_STATE(1466)] = 82215, + [SMALL_STATE(1467)] = 82291, + [SMALL_STATE(1468)] = 82367, + [SMALL_STATE(1469)] = 82443, + [SMALL_STATE(1470)] = 82493, + [SMALL_STATE(1471)] = 82569, + [SMALL_STATE(1472)] = 82645, + [SMALL_STATE(1473)] = 82721, + [SMALL_STATE(1474)] = 82797, + [SMALL_STATE(1475)] = 82873, + [SMALL_STATE(1476)] = 82949, + [SMALL_STATE(1477)] = 83025, + [SMALL_STATE(1478)] = 83101, + [SMALL_STATE(1479)] = 83177, + [SMALL_STATE(1480)] = 83253, + [SMALL_STATE(1481)] = 83329, + [SMALL_STATE(1482)] = 83405, + [SMALL_STATE(1483)] = 83481, + [SMALL_STATE(1484)] = 83557, + [SMALL_STATE(1485)] = 83633, + [SMALL_STATE(1486)] = 83709, + [SMALL_STATE(1487)] = 83785, + [SMALL_STATE(1488)] = 83861, + [SMALL_STATE(1489)] = 83937, + [SMALL_STATE(1490)] = 84013, + [SMALL_STATE(1491)] = 84089, + [SMALL_STATE(1492)] = 84165, + [SMALL_STATE(1493)] = 84241, + [SMALL_STATE(1494)] = 84291, + [SMALL_STATE(1495)] = 84367, + [SMALL_STATE(1496)] = 84443, + [SMALL_STATE(1497)] = 84519, + [SMALL_STATE(1498)] = 84595, + [SMALL_STATE(1499)] = 84671, + [SMALL_STATE(1500)] = 84747, + [SMALL_STATE(1501)] = 84823, + [SMALL_STATE(1502)] = 84899, + [SMALL_STATE(1503)] = 84975, + [SMALL_STATE(1504)] = 85051, + [SMALL_STATE(1505)] = 85127, + [SMALL_STATE(1506)] = 85203, + [SMALL_STATE(1507)] = 85279, + [SMALL_STATE(1508)] = 85355, + [SMALL_STATE(1509)] = 85431, + [SMALL_STATE(1510)] = 85507, + [SMALL_STATE(1511)] = 85583, + [SMALL_STATE(1512)] = 85659, + [SMALL_STATE(1513)] = 85735, + [SMALL_STATE(1514)] = 85811, + [SMALL_STATE(1515)] = 85887, + [SMALL_STATE(1516)] = 85963, + [SMALL_STATE(1517)] = 86039, + [SMALL_STATE(1518)] = 86115, + [SMALL_STATE(1519)] = 86191, + [SMALL_STATE(1520)] = 86267, + [SMALL_STATE(1521)] = 86343, + [SMALL_STATE(1522)] = 86419, + [SMALL_STATE(1523)] = 86495, + [SMALL_STATE(1524)] = 86571, + [SMALL_STATE(1525)] = 86647, + [SMALL_STATE(1526)] = 86723, + [SMALL_STATE(1527)] = 86799, + [SMALL_STATE(1528)] = 86875, + [SMALL_STATE(1529)] = 86951, + [SMALL_STATE(1530)] = 87027, + [SMALL_STATE(1531)] = 87103, + [SMALL_STATE(1532)] = 87179, + [SMALL_STATE(1533)] = 87255, + [SMALL_STATE(1534)] = 87331, + [SMALL_STATE(1535)] = 87407, + [SMALL_STATE(1536)] = 87483, + [SMALL_STATE(1537)] = 87559, + [SMALL_STATE(1538)] = 87635, + [SMALL_STATE(1539)] = 87711, + [SMALL_STATE(1540)] = 87787, + [SMALL_STATE(1541)] = 87863, + [SMALL_STATE(1542)] = 87939, + [SMALL_STATE(1543)] = 88015, + [SMALL_STATE(1544)] = 88091, + [SMALL_STATE(1545)] = 88167, + [SMALL_STATE(1546)] = 88243, + [SMALL_STATE(1547)] = 88319, + [SMALL_STATE(1548)] = 88395, + [SMALL_STATE(1549)] = 88471, + [SMALL_STATE(1550)] = 88547, + [SMALL_STATE(1551)] = 88623, + [SMALL_STATE(1552)] = 88699, + [SMALL_STATE(1553)] = 88775, + [SMALL_STATE(1554)] = 88851, + [SMALL_STATE(1555)] = 88927, + [SMALL_STATE(1556)] = 89003, + [SMALL_STATE(1557)] = 89079, + [SMALL_STATE(1558)] = 89155, + [SMALL_STATE(1559)] = 89209, + [SMALL_STATE(1560)] = 89285, + [SMALL_STATE(1561)] = 89361, + [SMALL_STATE(1562)] = 89437, + [SMALL_STATE(1563)] = 89513, + [SMALL_STATE(1564)] = 89589, + [SMALL_STATE(1565)] = 89665, + [SMALL_STATE(1566)] = 89741, + [SMALL_STATE(1567)] = 89817, + [SMALL_STATE(1568)] = 89893, + [SMALL_STATE(1569)] = 89969, + [SMALL_STATE(1570)] = 90045, + [SMALL_STATE(1571)] = 90089, + [SMALL_STATE(1572)] = 90165, + [SMALL_STATE(1573)] = 90241, + [SMALL_STATE(1574)] = 90317, + [SMALL_STATE(1575)] = 90393, + [SMALL_STATE(1576)] = 90469, + [SMALL_STATE(1577)] = 90545, + [SMALL_STATE(1578)] = 90621, + [SMALL_STATE(1579)] = 90697, + [SMALL_STATE(1580)] = 90773, + [SMALL_STATE(1581)] = 90849, + [SMALL_STATE(1582)] = 90925, + [SMALL_STATE(1583)] = 91001, + [SMALL_STATE(1584)] = 91077, + [SMALL_STATE(1585)] = 91153, + [SMALL_STATE(1586)] = 91229, + [SMALL_STATE(1587)] = 91305, + [SMALL_STATE(1588)] = 91381, + [SMALL_STATE(1589)] = 91457, + [SMALL_STATE(1590)] = 91533, + [SMALL_STATE(1591)] = 91609, + [SMALL_STATE(1592)] = 91685, + [SMALL_STATE(1593)] = 91761, + [SMALL_STATE(1594)] = 91837, + [SMALL_STATE(1595)] = 91913, + [SMALL_STATE(1596)] = 91989, + [SMALL_STATE(1597)] = 92065, + [SMALL_STATE(1598)] = 92141, + [SMALL_STATE(1599)] = 92217, + [SMALL_STATE(1600)] = 92293, + [SMALL_STATE(1601)] = 92369, + [SMALL_STATE(1602)] = 92445, + [SMALL_STATE(1603)] = 92521, + [SMALL_STATE(1604)] = 92597, + [SMALL_STATE(1605)] = 92673, + [SMALL_STATE(1606)] = 92749, + [SMALL_STATE(1607)] = 92825, + [SMALL_STATE(1608)] = 92901, + [SMALL_STATE(1609)] = 92977, + [SMALL_STATE(1610)] = 93053, + [SMALL_STATE(1611)] = 93129, + [SMALL_STATE(1612)] = 93205, + [SMALL_STATE(1613)] = 93281, + [SMALL_STATE(1614)] = 93357, + [SMALL_STATE(1615)] = 93433, + [SMALL_STATE(1616)] = 93509, + [SMALL_STATE(1617)] = 93585, + [SMALL_STATE(1618)] = 93661, + [SMALL_STATE(1619)] = 93737, + [SMALL_STATE(1620)] = 93813, + [SMALL_STATE(1621)] = 93889, + [SMALL_STATE(1622)] = 93965, + [SMALL_STATE(1623)] = 94041, + [SMALL_STATE(1624)] = 94117, + [SMALL_STATE(1625)] = 94166, + [SMALL_STATE(1626)] = 94211, + [SMALL_STATE(1627)] = 94256, + [SMALL_STATE(1628)] = 94301, + [SMALL_STATE(1629)] = 94346, + [SMALL_STATE(1630)] = 94391, + [SMALL_STATE(1631)] = 94436, + [SMALL_STATE(1632)] = 94481, + [SMALL_STATE(1633)] = 94526, + [SMALL_STATE(1634)] = 94571, + [SMALL_STATE(1635)] = 94616, + [SMALL_STATE(1636)] = 94661, + [SMALL_STATE(1637)] = 94706, + [SMALL_STATE(1638)] = 94751, + [SMALL_STATE(1639)] = 94832, + [SMALL_STATE(1640)] = 94881, + [SMALL_STATE(1641)] = 94926, + [SMALL_STATE(1642)] = 94971, + [SMALL_STATE(1643)] = 95016, + [SMALL_STATE(1644)] = 95061, + [SMALL_STATE(1645)] = 95106, + [SMALL_STATE(1646)] = 95151, + [SMALL_STATE(1647)] = 95196, + [SMALL_STATE(1648)] = 95241, + [SMALL_STATE(1649)] = 95290, + [SMALL_STATE(1650)] = 95335, + [SMALL_STATE(1651)] = 95384, + [SMALL_STATE(1652)] = 95433, + [SMALL_STATE(1653)] = 95478, + [SMALL_STATE(1654)] = 95523, + [SMALL_STATE(1655)] = 95568, + [SMALL_STATE(1656)] = 95613, + [SMALL_STATE(1657)] = 95658, + [SMALL_STATE(1658)] = 95703, + [SMALL_STATE(1659)] = 95752, + [SMALL_STATE(1660)] = 95797, + [SMALL_STATE(1661)] = 95846, + [SMALL_STATE(1662)] = 95891, + [SMALL_STATE(1663)] = 95936, + [SMALL_STATE(1664)] = 95981, + [SMALL_STATE(1665)] = 96062, + [SMALL_STATE(1666)] = 96107, + [SMALL_STATE(1667)] = 96156, + [SMALL_STATE(1668)] = 96201, + [SMALL_STATE(1669)] = 96246, + [SMALL_STATE(1670)] = 96291, + [SMALL_STATE(1671)] = 96336, + [SMALL_STATE(1672)] = 96381, + [SMALL_STATE(1673)] = 96426, + [SMALL_STATE(1674)] = 96471, + [SMALL_STATE(1675)] = 96516, + [SMALL_STATE(1676)] = 96565, + [SMALL_STATE(1677)] = 96610, + [SMALL_STATE(1678)] = 96659, + [SMALL_STATE(1679)] = 96704, + [SMALL_STATE(1680)] = 96749, + [SMALL_STATE(1681)] = 96794, + [SMALL_STATE(1682)] = 96843, + [SMALL_STATE(1683)] = 96888, + [SMALL_STATE(1684)] = 96933, + [SMALL_STATE(1685)] = 96978, + [SMALL_STATE(1686)] = 97027, + [SMALL_STATE(1687)] = 97072, + [SMALL_STATE(1688)] = 97117, + [SMALL_STATE(1689)] = 97162, + [SMALL_STATE(1690)] = 97211, + [SMALL_STATE(1691)] = 97256, + [SMALL_STATE(1692)] = 97305, + [SMALL_STATE(1693)] = 97350, + [SMALL_STATE(1694)] = 97395, + [SMALL_STATE(1695)] = 97440, + [SMALL_STATE(1696)] = 97489, + [SMALL_STATE(1697)] = 97534, + [SMALL_STATE(1698)] = 97579, + [SMALL_STATE(1699)] = 97624, + [SMALL_STATE(1700)] = 97669, + [SMALL_STATE(1701)] = 97714, + [SMALL_STATE(1702)] = 97759, + [SMALL_STATE(1703)] = 97804, + [SMALL_STATE(1704)] = 97849, + [SMALL_STATE(1705)] = 97894, + [SMALL_STATE(1706)] = 97939, + [SMALL_STATE(1707)] = 97984, + [SMALL_STATE(1708)] = 98029, + [SMALL_STATE(1709)] = 98074, + [SMALL_STATE(1710)] = 98119, + [SMALL_STATE(1711)] = 98164, + [SMALL_STATE(1712)] = 98209, + [SMALL_STATE(1713)] = 98254, + [SMALL_STATE(1714)] = 98299, + [SMALL_STATE(1715)] = 98344, + [SMALL_STATE(1716)] = 98389, + [SMALL_STATE(1717)] = 98434, + [SMALL_STATE(1718)] = 98479, + [SMALL_STATE(1719)] = 98524, + [SMALL_STATE(1720)] = 98569, + [SMALL_STATE(1721)] = 98614, + [SMALL_STATE(1722)] = 98659, + [SMALL_STATE(1723)] = 98704, + [SMALL_STATE(1724)] = 98749, + [SMALL_STATE(1725)] = 98822, + [SMALL_STATE(1726)] = 98871, + [SMALL_STATE(1727)] = 98916, + [SMALL_STATE(1728)] = 98961, + [SMALL_STATE(1729)] = 99010, + [SMALL_STATE(1730)] = 99055, + [SMALL_STATE(1731)] = 99100, + [SMALL_STATE(1732)] = 99149, + [SMALL_STATE(1733)] = 99198, + [SMALL_STATE(1734)] = 99243, + [SMALL_STATE(1735)] = 99288, + [SMALL_STATE(1736)] = 99337, + [SMALL_STATE(1737)] = 99382, + [SMALL_STATE(1738)] = 99427, + [SMALL_STATE(1739)] = 99472, + [SMALL_STATE(1740)] = 99517, + [SMALL_STATE(1741)] = 99562, + [SMALL_STATE(1742)] = 99607, + [SMALL_STATE(1743)] = 99652, + [SMALL_STATE(1744)] = 99697, + [SMALL_STATE(1745)] = 99742, + [SMALL_STATE(1746)] = 99787, + [SMALL_STATE(1747)] = 99832, + [SMALL_STATE(1748)] = 99877, + [SMALL_STATE(1749)] = 99922, + [SMALL_STATE(1750)] = 99967, + [SMALL_STATE(1751)] = 100012, + [SMALL_STATE(1752)] = 100093, + [SMALL_STATE(1753)] = 100138, + [SMALL_STATE(1754)] = 100183, + [SMALL_STATE(1755)] = 100228, + [SMALL_STATE(1756)] = 100273, + [SMALL_STATE(1757)] = 100318, + [SMALL_STATE(1758)] = 100363, + [SMALL_STATE(1759)] = 100408, + [SMALL_STATE(1760)] = 100457, + [SMALL_STATE(1761)] = 100502, + [SMALL_STATE(1762)] = 100547, + [SMALL_STATE(1763)] = 100592, + [SMALL_STATE(1764)] = 100637, + [SMALL_STATE(1765)] = 100682, + [SMALL_STATE(1766)] = 100727, + [SMALL_STATE(1767)] = 100772, + [SMALL_STATE(1768)] = 100817, + [SMALL_STATE(1769)] = 100862, + [SMALL_STATE(1770)] = 100907, + [SMALL_STATE(1771)] = 100952, + [SMALL_STATE(1772)] = 100997, + [SMALL_STATE(1773)] = 101042, + [SMALL_STATE(1774)] = 101087, + [SMALL_STATE(1775)] = 101132, + [SMALL_STATE(1776)] = 101177, + [SMALL_STATE(1777)] = 101222, + [SMALL_STATE(1778)] = 101267, + [SMALL_STATE(1779)] = 101312, + [SMALL_STATE(1780)] = 101357, + [SMALL_STATE(1781)] = 101402, + [SMALL_STATE(1782)] = 101447, + [SMALL_STATE(1783)] = 101492, + [SMALL_STATE(1784)] = 101537, + [SMALL_STATE(1785)] = 101582, + [SMALL_STATE(1786)] = 101631, + [SMALL_STATE(1787)] = 101676, + [SMALL_STATE(1788)] = 101721, + [SMALL_STATE(1789)] = 101766, + [SMALL_STATE(1790)] = 101811, + [SMALL_STATE(1791)] = 101856, + [SMALL_STATE(1792)] = 101901, + [SMALL_STATE(1793)] = 101946, + [SMALL_STATE(1794)] = 101991, + [SMALL_STATE(1795)] = 102036, + [SMALL_STATE(1796)] = 102081, + [SMALL_STATE(1797)] = 102126, + [SMALL_STATE(1798)] = 102171, + [SMALL_STATE(1799)] = 102216, + [SMALL_STATE(1800)] = 102261, + [SMALL_STATE(1801)] = 102306, + [SMALL_STATE(1802)] = 102355, + [SMALL_STATE(1803)] = 102400, + [SMALL_STATE(1804)] = 102445, + [SMALL_STATE(1805)] = 102490, + [SMALL_STATE(1806)] = 102535, + [SMALL_STATE(1807)] = 102580, + [SMALL_STATE(1808)] = 102625, + [SMALL_STATE(1809)] = 102670, + [SMALL_STATE(1810)] = 102715, + [SMALL_STATE(1811)] = 102760, + [SMALL_STATE(1812)] = 102809, + [SMALL_STATE(1813)] = 102854, + [SMALL_STATE(1814)] = 102899, + [SMALL_STATE(1815)] = 102944, + [SMALL_STATE(1816)] = 102989, + [SMALL_STATE(1817)] = 103034, + [SMALL_STATE(1818)] = 103079, + [SMALL_STATE(1819)] = 103124, + [SMALL_STATE(1820)] = 103169, + [SMALL_STATE(1821)] = 103214, + [SMALL_STATE(1822)] = 103259, + [SMALL_STATE(1823)] = 103304, + [SMALL_STATE(1824)] = 103353, + [SMALL_STATE(1825)] = 103398, + [SMALL_STATE(1826)] = 103443, + [SMALL_STATE(1827)] = 103488, + [SMALL_STATE(1828)] = 103533, + [SMALL_STATE(1829)] = 103578, + [SMALL_STATE(1830)] = 103627, + [SMALL_STATE(1831)] = 103672, + [SMALL_STATE(1832)] = 103717, + [SMALL_STATE(1833)] = 103766, + [SMALL_STATE(1834)] = 103811, + [SMALL_STATE(1835)] = 103856, + [SMALL_STATE(1836)] = 103901, + [SMALL_STATE(1837)] = 103946, + [SMALL_STATE(1838)] = 103991, + [SMALL_STATE(1839)] = 104040, + [SMALL_STATE(1840)] = 104085, + [SMALL_STATE(1841)] = 104130, + [SMALL_STATE(1842)] = 104175, + [SMALL_STATE(1843)] = 104220, + [SMALL_STATE(1844)] = 104265, + [SMALL_STATE(1845)] = 104310, + [SMALL_STATE(1846)] = 104355, + [SMALL_STATE(1847)] = 104400, + [SMALL_STATE(1848)] = 104445, + [SMALL_STATE(1849)] = 104494, + [SMALL_STATE(1850)] = 104539, + [SMALL_STATE(1851)] = 104584, + [SMALL_STATE(1852)] = 104629, + [SMALL_STATE(1853)] = 104674, + [SMALL_STATE(1854)] = 104719, + [SMALL_STATE(1855)] = 104764, + [SMALL_STATE(1856)] = 104809, + [SMALL_STATE(1857)] = 104854, + [SMALL_STATE(1858)] = 104899, + [SMALL_STATE(1859)] = 104944, + [SMALL_STATE(1860)] = 104989, + [SMALL_STATE(1861)] = 105034, + [SMALL_STATE(1862)] = 105079, + [SMALL_STATE(1863)] = 105124, + [SMALL_STATE(1864)] = 105169, + [SMALL_STATE(1865)] = 105214, + [SMALL_STATE(1866)] = 105263, + [SMALL_STATE(1867)] = 105312, + [SMALL_STATE(1868)] = 105357, + [SMALL_STATE(1869)] = 105402, + [SMALL_STATE(1870)] = 105447, + [SMALL_STATE(1871)] = 105492, + [SMALL_STATE(1872)] = 105541, + [SMALL_STATE(1873)] = 105586, + [SMALL_STATE(1874)] = 105635, + [SMALL_STATE(1875)] = 105684, + [SMALL_STATE(1876)] = 105729, + [SMALL_STATE(1877)] = 105774, + [SMALL_STATE(1878)] = 105823, + [SMALL_STATE(1879)] = 105868, + [SMALL_STATE(1880)] = 105913, + [SMALL_STATE(1881)] = 105958, + [SMALL_STATE(1882)] = 106003, + [SMALL_STATE(1883)] = 106048, + [SMALL_STATE(1884)] = 106093, + [SMALL_STATE(1885)] = 106138, + [SMALL_STATE(1886)] = 106219, + [SMALL_STATE(1887)] = 106268, + [SMALL_STATE(1888)] = 106313, + [SMALL_STATE(1889)] = 106358, + [SMALL_STATE(1890)] = 106403, + [SMALL_STATE(1891)] = 106448, + [SMALL_STATE(1892)] = 106493, + [SMALL_STATE(1893)] = 106542, + [SMALL_STATE(1894)] = 106587, + [SMALL_STATE(1895)] = 106636, + [SMALL_STATE(1896)] = 106681, + [SMALL_STATE(1897)] = 106726, + [SMALL_STATE(1898)] = 106775, + [SMALL_STATE(1899)] = 106820, + [SMALL_STATE(1900)] = 106901, + [SMALL_STATE(1901)] = 106946, + [SMALL_STATE(1902)] = 106991, + [SMALL_STATE(1903)] = 107036, + [SMALL_STATE(1904)] = 107081, + [SMALL_STATE(1905)] = 107126, + [SMALL_STATE(1906)] = 107171, + [SMALL_STATE(1907)] = 107216, + [SMALL_STATE(1908)] = 107261, + [SMALL_STATE(1909)] = 107306, + [SMALL_STATE(1910)] = 107355, + [SMALL_STATE(1911)] = 107404, + [SMALL_STATE(1912)] = 107453, + [SMALL_STATE(1913)] = 107505, + [SMALL_STATE(1914)] = 107549, + [SMALL_STATE(1915)] = 107597, + [SMALL_STATE(1916)] = 107645, + [SMALL_STATE(1917)] = 107693, + [SMALL_STATE(1918)] = 107745, + [SMALL_STATE(1919)] = 107797, + [SMALL_STATE(1920)] = 107849, + [SMALL_STATE(1921)] = 107897, + [SMALL_STATE(1922)] = 107949, + [SMALL_STATE(1923)] = 107993, + [SMALL_STATE(1924)] = 108037, + [SMALL_STATE(1925)] = 108081, + [SMALL_STATE(1926)] = 108125, + [SMALL_STATE(1927)] = 108169, + [SMALL_STATE(1928)] = 108213, + [SMALL_STATE(1929)] = 108265, + [SMALL_STATE(1930)] = 108317, + [SMALL_STATE(1931)] = 108361, + [SMALL_STATE(1932)] = 108413, + [SMALL_STATE(1933)] = 108465, + [SMALL_STATE(1934)] = 108509, + [SMALL_STATE(1935)] = 108553, + [SMALL_STATE(1936)] = 108601, + [SMALL_STATE(1937)] = 108645, + [SMALL_STATE(1938)] = 108689, + [SMALL_STATE(1939)] = 108733, + [SMALL_STATE(1940)] = 108777, + [SMALL_STATE(1941)] = 108821, + [SMALL_STATE(1942)] = 108865, + [SMALL_STATE(1943)] = 108917, + [SMALL_STATE(1944)] = 108961, + [SMALL_STATE(1945)] = 109005, + [SMALL_STATE(1946)] = 109057, + [SMALL_STATE(1947)] = 109105, + [SMALL_STATE(1948)] = 109149, + [SMALL_STATE(1949)] = 109201, + [SMALL_STATE(1950)] = 109253, + [SMALL_STATE(1951)] = 109297, + [SMALL_STATE(1952)] = 109341, + [SMALL_STATE(1953)] = 109385, + [SMALL_STATE(1954)] = 109437, + [SMALL_STATE(1955)] = 109481, + [SMALL_STATE(1956)] = 109533, + [SMALL_STATE(1957)] = 109585, + [SMALL_STATE(1958)] = 109629, + [SMALL_STATE(1959)] = 109673, + [SMALL_STATE(1960)] = 109721, + [SMALL_STATE(1961)] = 109769, + [SMALL_STATE(1962)] = 109821, + [SMALL_STATE(1963)] = 109869, + [SMALL_STATE(1964)] = 109913, + [SMALL_STATE(1965)] = 109957, + [SMALL_STATE(1966)] = 110001, + [SMALL_STATE(1967)] = 110045, + [SMALL_STATE(1968)] = 110089, + [SMALL_STATE(1969)] = 110133, + [SMALL_STATE(1970)] = 110177, + [SMALL_STATE(1971)] = 110221, + [SMALL_STATE(1972)] = 110265, + [SMALL_STATE(1973)] = 110309, + [SMALL_STATE(1974)] = 110353, + [SMALL_STATE(1975)] = 110397, + [SMALL_STATE(1976)] = 110449, + [SMALL_STATE(1977)] = 110497, + [SMALL_STATE(1978)] = 110549, + [SMALL_STATE(1979)] = 110601, + [SMALL_STATE(1980)] = 110653, + [SMALL_STATE(1981)] = 110705, + [SMALL_STATE(1982)] = 110749, + [SMALL_STATE(1983)] = 110801, + [SMALL_STATE(1984)] = 110853, + [SMALL_STATE(1985)] = 110897, + [SMALL_STATE(1986)] = 110949, + [SMALL_STATE(1987)] = 110993, + [SMALL_STATE(1988)] = 111045, + [SMALL_STATE(1989)] = 111089, + [SMALL_STATE(1990)] = 111133, + [SMALL_STATE(1991)] = 111177, + [SMALL_STATE(1992)] = 111221, + [SMALL_STATE(1993)] = 111265, + [SMALL_STATE(1994)] = 111309, + [SMALL_STATE(1995)] = 111361, + [SMALL_STATE(1996)] = 111413, + [SMALL_STATE(1997)] = 111457, + [SMALL_STATE(1998)] = 111501, + [SMALL_STATE(1999)] = 111545, + [SMALL_STATE(2000)] = 111593, + [SMALL_STATE(2001)] = 111637, + [SMALL_STATE(2002)] = 111681, + [SMALL_STATE(2003)] = 111725, + [SMALL_STATE(2004)] = 111773, + [SMALL_STATE(2005)] = 111817, + [SMALL_STATE(2006)] = 111861, + [SMALL_STATE(2007)] = 111905, + [SMALL_STATE(2008)] = 111949, + [SMALL_STATE(2009)] = 111993, + [SMALL_STATE(2010)] = 112037, + [SMALL_STATE(2011)] = 112081, + [SMALL_STATE(2012)] = 112133, + [SMALL_STATE(2013)] = 112177, + [SMALL_STATE(2014)] = 112221, + [SMALL_STATE(2015)] = 112265, + [SMALL_STATE(2016)] = 112309, + [SMALL_STATE(2017)] = 112353, + [SMALL_STATE(2018)] = 112397, + [SMALL_STATE(2019)] = 112441, + [SMALL_STATE(2020)] = 112485, + [SMALL_STATE(2021)] = 112529, + [SMALL_STATE(2022)] = 112581, + [SMALL_STATE(2023)] = 112625, + [SMALL_STATE(2024)] = 112677, + [SMALL_STATE(2025)] = 112721, + [SMALL_STATE(2026)] = 112765, + [SMALL_STATE(2027)] = 112817, + [SMALL_STATE(2028)] = 112869, + [SMALL_STATE(2029)] = 112921, + [SMALL_STATE(2030)] = 112965, + [SMALL_STATE(2031)] = 113009, + [SMALL_STATE(2032)] = 113053, + [SMALL_STATE(2033)] = 113097, + [SMALL_STATE(2034)] = 113141, + [SMALL_STATE(2035)] = 113185, + [SMALL_STATE(2036)] = 113229, + [SMALL_STATE(2037)] = 113273, + [SMALL_STATE(2038)] = 113317, + [SMALL_STATE(2039)] = 113361, + [SMALL_STATE(2040)] = 113409, + [SMALL_STATE(2041)] = 113453, + [SMALL_STATE(2042)] = 113497, + [SMALL_STATE(2043)] = 113541, + [SMALL_STATE(2044)] = 113585, + [SMALL_STATE(2045)] = 113629, + [SMALL_STATE(2046)] = 113673, + [SMALL_STATE(2047)] = 113717, + [SMALL_STATE(2048)] = 113761, + [SMALL_STATE(2049)] = 113805, + [SMALL_STATE(2050)] = 113849, + [SMALL_STATE(2051)] = 113893, + [SMALL_STATE(2052)] = 113945, + [SMALL_STATE(2053)] = 113989, + [SMALL_STATE(2054)] = 114041, + [SMALL_STATE(2055)] = 114093, + [SMALL_STATE(2056)] = 114145, + [SMALL_STATE(2057)] = 114197, + [SMALL_STATE(2058)] = 114241, + [SMALL_STATE(2059)] = 114285, + [SMALL_STATE(2060)] = 114329, + [SMALL_STATE(2061)] = 114381, + [SMALL_STATE(2062)] = 114425, + [SMALL_STATE(2063)] = 114469, + [SMALL_STATE(2064)] = 114513, + [SMALL_STATE(2065)] = 114565, + [SMALL_STATE(2066)] = 114613, + [SMALL_STATE(2067)] = 114661, + [SMALL_STATE(2068)] = 114705, + [SMALL_STATE(2069)] = 114757, + [SMALL_STATE(2070)] = 114801, + [SMALL_STATE(2071)] = 114845, + [SMALL_STATE(2072)] = 114889, + [SMALL_STATE(2073)] = 114933, + [SMALL_STATE(2074)] = 114985, + [SMALL_STATE(2075)] = 115037, + [SMALL_STATE(2076)] = 115089, + [SMALL_STATE(2077)] = 115141, + [SMALL_STATE(2078)] = 115193, + [SMALL_STATE(2079)] = 115241, + [SMALL_STATE(2080)] = 115293, + [SMALL_STATE(2081)] = 115337, + [SMALL_STATE(2082)] = 115385, + [SMALL_STATE(2083)] = 115429, + [SMALL_STATE(2084)] = 115473, + [SMALL_STATE(2085)] = 115517, + [SMALL_STATE(2086)] = 115561, + [SMALL_STATE(2087)] = 115605, + [SMALL_STATE(2088)] = 115657, + [SMALL_STATE(2089)] = 115709, + [SMALL_STATE(2090)] = 115761, + [SMALL_STATE(2091)] = 115813, + [SMALL_STATE(2092)] = 115861, + [SMALL_STATE(2093)] = 115909, + [SMALL_STATE(2094)] = 115961, + [SMALL_STATE(2095)] = 116013, + [SMALL_STATE(2096)] = 116065, + [SMALL_STATE(2097)] = 116109, + [SMALL_STATE(2098)] = 116157, + [SMALL_STATE(2099)] = 116209, + [SMALL_STATE(2100)] = 116253, + [SMALL_STATE(2101)] = 116297, + [SMALL_STATE(2102)] = 116341, + [SMALL_STATE(2103)] = 116393, + [SMALL_STATE(2104)] = 116437, + [SMALL_STATE(2105)] = 116481, + [SMALL_STATE(2106)] = 116525, + [SMALL_STATE(2107)] = 116569, + [SMALL_STATE(2108)] = 116613, + [SMALL_STATE(2109)] = 116665, + [SMALL_STATE(2110)] = 116713, + [SMALL_STATE(2111)] = 116757, + [SMALL_STATE(2112)] = 116809, + [SMALL_STATE(2113)] = 116853, + [SMALL_STATE(2114)] = 116901, + [SMALL_STATE(2115)] = 116945, + [SMALL_STATE(2116)] = 116989, + [SMALL_STATE(2117)] = 117033, + [SMALL_STATE(2118)] = 117077, + [SMALL_STATE(2119)] = 117121, + [SMALL_STATE(2120)] = 117173, + [SMALL_STATE(2121)] = 117225, + [SMALL_STATE(2122)] = 117277, + [SMALL_STATE(2123)] = 117321, + [SMALL_STATE(2124)] = 117365, + [SMALL_STATE(2125)] = 117409, + [SMALL_STATE(2126)] = 117453, + [SMALL_STATE(2127)] = 117505, + [SMALL_STATE(2128)] = 117549, + [SMALL_STATE(2129)] = 117593, + [SMALL_STATE(2130)] = 117637, + [SMALL_STATE(2131)] = 117681, + [SMALL_STATE(2132)] = 117725, + [SMALL_STATE(2133)] = 117769, + [SMALL_STATE(2134)] = 117813, + [SMALL_STATE(2135)] = 117857, + [SMALL_STATE(2136)] = 117901, + [SMALL_STATE(2137)] = 117953, + [SMALL_STATE(2138)] = 118001, + [SMALL_STATE(2139)] = 118045, + [SMALL_STATE(2140)] = 118089, + [SMALL_STATE(2141)] = 118133, + [SMALL_STATE(2142)] = 118177, + [SMALL_STATE(2143)] = 118220, + [SMALL_STATE(2144)] = 118263, + [SMALL_STATE(2145)] = 118306, + [SMALL_STATE(2146)] = 118379, + [SMALL_STATE(2147)] = 118430, + [SMALL_STATE(2148)] = 118503, + [SMALL_STATE(2149)] = 118546, + [SMALL_STATE(2150)] = 118597, + [SMALL_STATE(2151)] = 118640, + [SMALL_STATE(2152)] = 118683, + [SMALL_STATE(2153)] = 118756, + [SMALL_STATE(2154)] = 118829, + [SMALL_STATE(2155)] = 118872, + [SMALL_STATE(2156)] = 118915, + [SMALL_STATE(2157)] = 118988, + [SMALL_STATE(2158)] = 119041, + [SMALL_STATE(2159)] = 119114, + [SMALL_STATE(2160)] = 119187, + [SMALL_STATE(2161)] = 119240, + [SMALL_STATE(2162)] = 119283, + [SMALL_STATE(2163)] = 119326, + [SMALL_STATE(2164)] = 119399, + [SMALL_STATE(2165)] = 119472, + [SMALL_STATE(2166)] = 119522, + [SMALL_STATE(2167)] = 119574, + [SMALL_STATE(2168)] = 119626, + [SMALL_STATE(2169)] = 119676, + [SMALL_STATE(2170)] = 119726, + [SMALL_STATE(2171)] = 119776, + [SMALL_STATE(2172)] = 119825, + [SMALL_STATE(2173)] = 119874, + [SMALL_STATE(2174)] = 119946, + [SMALL_STATE(2175)] = 120018, + [SMALL_STATE(2176)] = 120090, + [SMALL_STATE(2177)] = 120162, + [SMALL_STATE(2178)] = 120234, + [SMALL_STATE(2179)] = 120306, + [SMALL_STATE(2180)] = 120378, + [SMALL_STATE(2181)] = 120450, + [SMALL_STATE(2182)] = 120522, + [SMALL_STATE(2183)] = 120594, + [SMALL_STATE(2184)] = 120666, + [SMALL_STATE(2185)] = 120738, + [SMALL_STATE(2186)] = 120810, + [SMALL_STATE(2187)] = 120882, + [SMALL_STATE(2188)] = 120954, + [SMALL_STATE(2189)] = 121026, + [SMALL_STATE(2190)] = 121098, + [SMALL_STATE(2191)] = 121170, + [SMALL_STATE(2192)] = 121242, + [SMALL_STATE(2193)] = 121314, + [SMALL_STATE(2194)] = 121386, + [SMALL_STATE(2195)] = 121458, + [SMALL_STATE(2196)] = 121530, + [SMALL_STATE(2197)] = 121602, + [SMALL_STATE(2198)] = 121671, + [SMALL_STATE(2199)] = 121740, + [SMALL_STATE(2200)] = 121809, + [SMALL_STATE(2201)] = 121878, + [SMALL_STATE(2202)] = 121947, + [SMALL_STATE(2203)] = 122016, + [SMALL_STATE(2204)] = 122085, + [SMALL_STATE(2205)] = 122154, + [SMALL_STATE(2206)] = 122223, + [SMALL_STATE(2207)] = 122292, + [SMALL_STATE(2208)] = 122361, + [SMALL_STATE(2209)] = 122430, + [SMALL_STATE(2210)] = 122499, + [SMALL_STATE(2211)] = 122568, + [SMALL_STATE(2212)] = 122637, + [SMALL_STATE(2213)] = 122706, + [SMALL_STATE(2214)] = 122775, + [SMALL_STATE(2215)] = 122844, + [SMALL_STATE(2216)] = 122913, + [SMALL_STATE(2217)] = 122982, + [SMALL_STATE(2218)] = 123051, + [SMALL_STATE(2219)] = 123120, + [SMALL_STATE(2220)] = 123189, + [SMALL_STATE(2221)] = 123258, + [SMALL_STATE(2222)] = 123327, + [SMALL_STATE(2223)] = 123396, + [SMALL_STATE(2224)] = 123465, + [SMALL_STATE(2225)] = 123534, + [SMALL_STATE(2226)] = 123603, + [SMALL_STATE(2227)] = 123672, + [SMALL_STATE(2228)] = 123741, + [SMALL_STATE(2229)] = 123810, + [SMALL_STATE(2230)] = 123879, + [SMALL_STATE(2231)] = 123948, + [SMALL_STATE(2232)] = 124017, + [SMALL_STATE(2233)] = 124086, + [SMALL_STATE(2234)] = 124155, + [SMALL_STATE(2235)] = 124224, + [SMALL_STATE(2236)] = 124293, + [SMALL_STATE(2237)] = 124362, + [SMALL_STATE(2238)] = 124431, + [SMALL_STATE(2239)] = 124500, + [SMALL_STATE(2240)] = 124569, + [SMALL_STATE(2241)] = 124638, + [SMALL_STATE(2242)] = 124707, + [SMALL_STATE(2243)] = 124776, + [SMALL_STATE(2244)] = 124845, + [SMALL_STATE(2245)] = 124914, + [SMALL_STATE(2246)] = 124983, + [SMALL_STATE(2247)] = 125052, + [SMALL_STATE(2248)] = 125121, + [SMALL_STATE(2249)] = 125190, + [SMALL_STATE(2250)] = 125259, + [SMALL_STATE(2251)] = 125328, + [SMALL_STATE(2252)] = 125397, + [SMALL_STATE(2253)] = 125438, + [SMALL_STATE(2254)] = 125477, + [SMALL_STATE(2255)] = 125516, + [SMALL_STATE(2256)] = 125557, + [SMALL_STATE(2257)] = 125598, + [SMALL_STATE(2258)] = 125639, + [SMALL_STATE(2259)] = 125678, + [SMALL_STATE(2260)] = 125719, + [SMALL_STATE(2261)] = 125758, + [SMALL_STATE(2262)] = 125799, + [SMALL_STATE(2263)] = 125835, + [SMALL_STATE(2264)] = 125871, + [SMALL_STATE(2265)] = 125907, + [SMALL_STATE(2266)] = 125943, + [SMALL_STATE(2267)] = 125979, + [SMALL_STATE(2268)] = 126015, + [SMALL_STATE(2269)] = 126051, + [SMALL_STATE(2270)] = 126087, + [SMALL_STATE(2271)] = 126123, + [SMALL_STATE(2272)] = 126159, + [SMALL_STATE(2273)] = 126195, + [SMALL_STATE(2274)] = 126231, + [SMALL_STATE(2275)] = 126267, + [SMALL_STATE(2276)] = 126303, + [SMALL_STATE(2277)] = 126339, + [SMALL_STATE(2278)] = 126375, + [SMALL_STATE(2279)] = 126411, + [SMALL_STATE(2280)] = 126447, + [SMALL_STATE(2281)] = 126483, + [SMALL_STATE(2282)] = 126519, + [SMALL_STATE(2283)] = 126555, + [SMALL_STATE(2284)] = 126591, + [SMALL_STATE(2285)] = 126627, + [SMALL_STATE(2286)] = 126667, + [SMALL_STATE(2287)] = 126703, + [SMALL_STATE(2288)] = 126739, + [SMALL_STATE(2289)] = 126775, + [SMALL_STATE(2290)] = 126815, + [SMALL_STATE(2291)] = 126851, + [SMALL_STATE(2292)] = 126887, + [SMALL_STATE(2293)] = 126923, + [SMALL_STATE(2294)] = 126959, + [SMALL_STATE(2295)] = 126995, + [SMALL_STATE(2296)] = 127031, + [SMALL_STATE(2297)] = 127088, + [SMALL_STATE(2298)] = 127139, + [SMALL_STATE(2299)] = 127174, + [SMALL_STATE(2300)] = 127213, + [SMALL_STATE(2301)] = 127248, + [SMALL_STATE(2302)] = 127313, + [SMALL_STATE(2303)] = 127378, + [SMALL_STATE(2304)] = 127443, + [SMALL_STATE(2305)] = 127500, + [SMALL_STATE(2306)] = 127537, + [SMALL_STATE(2307)] = 127602, + [SMALL_STATE(2308)] = 127637, + [SMALL_STATE(2309)] = 127682, + [SMALL_STATE(2310)] = 127747, + [SMALL_STATE(2311)] = 127804, + [SMALL_STATE(2312)] = 127869, + [SMALL_STATE(2313)] = 127934, + [SMALL_STATE(2314)] = 127999, + [SMALL_STATE(2315)] = 128064, + [SMALL_STATE(2316)] = 128121, + [SMALL_STATE(2317)] = 128166, + [SMALL_STATE(2318)] = 128231, + [SMALL_STATE(2319)] = 128296, + [SMALL_STATE(2320)] = 128361, + [SMALL_STATE(2321)] = 128402, + [SMALL_STATE(2322)] = 128449, + [SMALL_STATE(2323)] = 128500, + [SMALL_STATE(2324)] = 128541, + [SMALL_STATE(2325)] = 128579, + [SMALL_STATE(2326)] = 128641, + [SMALL_STATE(2327)] = 128703, + [SMALL_STATE(2328)] = 128765, + [SMALL_STATE(2329)] = 128801, + [SMALL_STATE(2330)] = 128845, + [SMALL_STATE(2331)] = 128889, + [SMALL_STATE(2332)] = 128927, + [SMALL_STATE(2333)] = 128989, + [SMALL_STATE(2334)] = 129033, + [SMALL_STATE(2335)] = 129095, + [SMALL_STATE(2336)] = 129157, + [SMALL_STATE(2337)] = 129219, + [SMALL_STATE(2338)] = 129281, + [SMALL_STATE(2339)] = 129343, + [SMALL_STATE(2340)] = 129381, + [SMALL_STATE(2341)] = 129443, + [SMALL_STATE(2342)] = 129505, + [SMALL_STATE(2343)] = 129543, + [SMALL_STATE(2344)] = 129605, + [SMALL_STATE(2345)] = 129667, + [SMALL_STATE(2346)] = 129711, + [SMALL_STATE(2347)] = 129773, + [SMALL_STATE(2348)] = 129835, + [SMALL_STATE(2349)] = 129897, + [SMALL_STATE(2350)] = 129947, + [SMALL_STATE(2351)] = 129985, + [SMALL_STATE(2352)] = 130035, + [SMALL_STATE(2353)] = 130097, + [SMALL_STATE(2354)] = 130133, + [SMALL_STATE(2355)] = 130171, + [SMALL_STATE(2356)] = 130233, + [SMALL_STATE(2357)] = 130295, + [SMALL_STATE(2358)] = 130357, + [SMALL_STATE(2359)] = 130395, + [SMALL_STATE(2360)] = 130457, + [SMALL_STATE(2361)] = 130519, + [SMALL_STATE(2362)] = 130581, + [SMALL_STATE(2363)] = 130643, + [SMALL_STATE(2364)] = 130705, + [SMALL_STATE(2365)] = 130743, + [SMALL_STATE(2366)] = 130781, + [SMALL_STATE(2367)] = 130819, + [SMALL_STATE(2368)] = 130881, + [SMALL_STATE(2369)] = 130943, + [SMALL_STATE(2370)] = 131005, + [SMALL_STATE(2371)] = 131042, + [SMALL_STATE(2372)] = 131075, + [SMALL_STATE(2373)] = 131124, + [SMALL_STATE(2374)] = 131173, + [SMALL_STATE(2375)] = 131206, + [SMALL_STATE(2376)] = 131243, + [SMALL_STATE(2377)] = 131280, + [SMALL_STATE(2378)] = 131317, + [SMALL_STATE(2379)] = 131354, + [SMALL_STATE(2380)] = 131391, + [SMALL_STATE(2381)] = 131424, + [SMALL_STATE(2382)] = 131461, + [SMALL_STATE(2383)] = 131494, + [SMALL_STATE(2384)] = 131527, + [SMALL_STATE(2385)] = 131564, + [SMALL_STATE(2386)] = 131601, + [SMALL_STATE(2387)] = 131638, + [SMALL_STATE(2388)] = 131675, + [SMALL_STATE(2389)] = 131708, + [SMALL_STATE(2390)] = 131751, + [SMALL_STATE(2391)] = 131788, + [SMALL_STATE(2392)] = 131821, + [SMALL_STATE(2393)] = 131870, + [SMALL_STATE(2394)] = 131903, + [SMALL_STATE(2395)] = 131940, + [SMALL_STATE(2396)] = 131973, + [SMALL_STATE(2397)] = 132010, + [SMALL_STATE(2398)] = 132045, + [SMALL_STATE(2399)] = 132078, + [SMALL_STATE(2400)] = 132111, + [SMALL_STATE(2401)] = 132144, + [SMALL_STATE(2402)] = 132177, + [SMALL_STATE(2403)] = 132210, + [SMALL_STATE(2404)] = 132247, + [SMALL_STATE(2405)] = 132280, + [SMALL_STATE(2406)] = 132313, + [SMALL_STATE(2407)] = 132350, + [SMALL_STATE(2408)] = 132387, + [SMALL_STATE(2409)] = 132420, + [SMALL_STATE(2410)] = 132453, + [SMALL_STATE(2411)] = 132502, + [SMALL_STATE(2412)] = 132535, + [SMALL_STATE(2413)] = 132568, + [SMALL_STATE(2414)] = 132605, + [SMALL_STATE(2415)] = 132638, + [SMALL_STATE(2416)] = 132671, + [SMALL_STATE(2417)] = 132708, + [SMALL_STATE(2418)] = 132745, + [SMALL_STATE(2419)] = 132778, + [SMALL_STATE(2420)] = 132837, + [SMALL_STATE(2421)] = 132870, + [SMALL_STATE(2422)] = 132907, + [SMALL_STATE(2423)] = 132940, + [SMALL_STATE(2424)] = 132989, + [SMALL_STATE(2425)] = 133026, + [SMALL_STATE(2426)] = 133063, + [SMALL_STATE(2427)] = 133106, + [SMALL_STATE(2428)] = 133143, + [SMALL_STATE(2429)] = 133176, + [SMALL_STATE(2430)] = 133209, + [SMALL_STATE(2431)] = 133242, + [SMALL_STATE(2432)] = 133279, + [SMALL_STATE(2433)] = 133328, + [SMALL_STATE(2434)] = 133365, + [SMALL_STATE(2435)] = 133399, + [SMALL_STATE(2436)] = 133433, + [SMALL_STATE(2437)] = 133489, + [SMALL_STATE(2438)] = 133523, + [SMALL_STATE(2439)] = 133579, + [SMALL_STATE(2440)] = 133613, + [SMALL_STATE(2441)] = 133647, + [SMALL_STATE(2442)] = 133693, + [SMALL_STATE(2443)] = 133729, + [SMALL_STATE(2444)] = 133785, + [SMALL_STATE(2445)] = 133821, + [SMALL_STATE(2446)] = 133877, + [SMALL_STATE(2447)] = 133933, + [SMALL_STATE(2448)] = 133969, + [SMALL_STATE(2449)] = 134025, + [SMALL_STATE(2450)] = 134059, + [SMALL_STATE(2451)] = 134095, + [SMALL_STATE(2452)] = 134129, + [SMALL_STATE(2453)] = 134165, + [SMALL_STATE(2454)] = 134201, + [SMALL_STATE(2455)] = 134233, + [SMALL_STATE(2456)] = 134269, + [SMALL_STATE(2457)] = 134303, + [SMALL_STATE(2458)] = 134337, + [SMALL_STATE(2459)] = 134371, + [SMALL_STATE(2460)] = 134427, + [SMALL_STATE(2461)] = 134483, + [SMALL_STATE(2462)] = 134539, + [SMALL_STATE(2463)] = 134573, + [SMALL_STATE(2464)] = 134609, + [SMALL_STATE(2465)] = 134643, + [SMALL_STATE(2466)] = 134679, + [SMALL_STATE(2467)] = 134715, + [SMALL_STATE(2468)] = 134749, + [SMALL_STATE(2469)] = 134805, + [SMALL_STATE(2470)] = 134841, + [SMALL_STATE(2471)] = 134877, + [SMALL_STATE(2472)] = 134913, + [SMALL_STATE(2473)] = 134947, + [SMALL_STATE(2474)] = 135003, + [SMALL_STATE(2475)] = 135037, + [SMALL_STATE(2476)] = 135071, + [SMALL_STATE(2477)] = 135107, + [SMALL_STATE(2478)] = 135139, + [SMALL_STATE(2479)] = 135195, + [SMALL_STATE(2480)] = 135227, + [SMALL_STATE(2481)] = 135283, + [SMALL_STATE(2482)] = 135319, + [SMALL_STATE(2483)] = 135353, + [SMALL_STATE(2484)] = 135389, + [SMALL_STATE(2485)] = 135445, + [SMALL_STATE(2486)] = 135479, + [SMALL_STATE(2487)] = 135535, + [SMALL_STATE(2488)] = 135591, + [SMALL_STATE(2489)] = 135627, + [SMALL_STATE(2490)] = 135661, + [SMALL_STATE(2491)] = 135717, + [SMALL_STATE(2492)] = 135749, + [SMALL_STATE(2493)] = 135783, + [SMALL_STATE(2494)] = 135817, + [SMALL_STATE(2495)] = 135851, + [SMALL_STATE(2496)] = 135887, + [SMALL_STATE(2497)] = 135943, + [SMALL_STATE(2498)] = 135977, + [SMALL_STATE(2499)] = 136023, + [SMALL_STATE(2500)] = 136057, + [SMALL_STATE(2501)] = 136089, + [SMALL_STATE(2502)] = 136135, + [SMALL_STATE(2503)] = 136167, + [SMALL_STATE(2504)] = 136209, + [SMALL_STATE(2505)] = 136241, + [SMALL_STATE(2506)] = 136273, + [SMALL_STATE(2507)] = 136309, + [SMALL_STATE(2508)] = 136351, + [SMALL_STATE(2509)] = 136397, + [SMALL_STATE(2510)] = 136429, + [SMALL_STATE(2511)] = 136461, + [SMALL_STATE(2512)] = 136495, + [SMALL_STATE(2513)] = 136527, + [SMALL_STATE(2514)] = 136561, + [SMALL_STATE(2515)] = 136593, + [SMALL_STATE(2516)] = 136627, + [SMALL_STATE(2517)] = 136663, + [SMALL_STATE(2518)] = 136695, + [SMALL_STATE(2519)] = 136727, + [SMALL_STATE(2520)] = 136763, + [SMALL_STATE(2521)] = 136797, + [SMALL_STATE(2522)] = 136831, + [SMALL_STATE(2523)] = 136863, + [SMALL_STATE(2524)] = 136895, + [SMALL_STATE(2525)] = 136927, + [SMALL_STATE(2526)] = 136963, + [SMALL_STATE(2527)] = 137019, + [SMALL_STATE(2528)] = 137075, + [SMALL_STATE(2529)] = 137111, + [SMALL_STATE(2530)] = 137147, + [SMALL_STATE(2531)] = 137181, + [SMALL_STATE(2532)] = 137217, + [SMALL_STATE(2533)] = 137253, + [SMALL_STATE(2534)] = 137285, + [SMALL_STATE(2535)] = 137319, + [SMALL_STATE(2536)] = 137351, + [SMALL_STATE(2537)] = 137385, + [SMALL_STATE(2538)] = 137441, + [SMALL_STATE(2539)] = 137473, + [SMALL_STATE(2540)] = 137505, + [SMALL_STATE(2541)] = 137537, + [SMALL_STATE(2542)] = 137569, + [SMALL_STATE(2543)] = 137601, + [SMALL_STATE(2544)] = 137637, + [SMALL_STATE(2545)] = 137693, + [SMALL_STATE(2546)] = 137725, + [SMALL_STATE(2547)] = 137757, + [SMALL_STATE(2548)] = 137789, + [SMALL_STATE(2549)] = 137821, + [SMALL_STATE(2550)] = 137853, + [SMALL_STATE(2551)] = 137885, + [SMALL_STATE(2552)] = 137921, + [SMALL_STATE(2553)] = 137955, + [SMALL_STATE(2554)] = 137989, + [SMALL_STATE(2555)] = 138021, + [SMALL_STATE(2556)] = 138053, + [SMALL_STATE(2557)] = 138084, + [SMALL_STATE(2558)] = 138139, + [SMALL_STATE(2559)] = 138194, + [SMALL_STATE(2560)] = 138225, + [SMALL_STATE(2561)] = 138256, + [SMALL_STATE(2562)] = 138311, + [SMALL_STATE(2563)] = 138366, + [SMALL_STATE(2564)] = 138421, + [SMALL_STATE(2565)] = 138476, + [SMALL_STATE(2566)] = 138531, + [SMALL_STATE(2567)] = 138586, + [SMALL_STATE(2568)] = 138641, + [SMALL_STATE(2569)] = 138696, + [SMALL_STATE(2570)] = 138727, + [SMALL_STATE(2571)] = 138758, + [SMALL_STATE(2572)] = 138789, + [SMALL_STATE(2573)] = 138820, + [SMALL_STATE(2574)] = 138875, + [SMALL_STATE(2575)] = 138906, + [SMALL_STATE(2576)] = 138937, + [SMALL_STATE(2577)] = 138968, + [SMALL_STATE(2578)] = 139023, + [SMALL_STATE(2579)] = 139078, + [SMALL_STATE(2580)] = 139113, + [SMALL_STATE(2581)] = 139144, + [SMALL_STATE(2582)] = 139199, + [SMALL_STATE(2583)] = 139230, + [SMALL_STATE(2584)] = 139285, + [SMALL_STATE(2585)] = 139340, + [SMALL_STATE(2586)] = 139395, + [SMALL_STATE(2587)] = 139430, + [SMALL_STATE(2588)] = 139485, + [SMALL_STATE(2589)] = 139520, + [SMALL_STATE(2590)] = 139555, + [SMALL_STATE(2591)] = 139610, + [SMALL_STATE(2592)] = 139641, + [SMALL_STATE(2593)] = 139672, + [SMALL_STATE(2594)] = 139707, + [SMALL_STATE(2595)] = 139762, + [SMALL_STATE(2596)] = 139797, + [SMALL_STATE(2597)] = 139828, + [SMALL_STATE(2598)] = 139859, + [SMALL_STATE(2599)] = 139894, + [SMALL_STATE(2600)] = 139949, + [SMALL_STATE(2601)] = 140004, + [SMALL_STATE(2602)] = 140035, + [SMALL_STATE(2603)] = 140090, + [SMALL_STATE(2604)] = 140121, + [SMALL_STATE(2605)] = 140156, + [SMALL_STATE(2606)] = 140187, + [SMALL_STATE(2607)] = 140222, + [SMALL_STATE(2608)] = 140277, + [SMALL_STATE(2609)] = 140312, + [SMALL_STATE(2610)] = 140367, + [SMALL_STATE(2611)] = 140398, + [SMALL_STATE(2612)] = 140429, + [SMALL_STATE(2613)] = 140484, + [SMALL_STATE(2614)] = 140515, + [SMALL_STATE(2615)] = 140546, + [SMALL_STATE(2616)] = 140577, + [SMALL_STATE(2617)] = 140632, + [SMALL_STATE(2618)] = 140687, + [SMALL_STATE(2619)] = 140742, + [SMALL_STATE(2620)] = 140773, + [SMALL_STATE(2621)] = 140804, + [SMALL_STATE(2622)] = 140835, + [SMALL_STATE(2623)] = 140890, + [SMALL_STATE(2624)] = 140945, + [SMALL_STATE(2625)] = 140976, + [SMALL_STATE(2626)] = 141007, + [SMALL_STATE(2627)] = 141038, + [SMALL_STATE(2628)] = 141069, + [SMALL_STATE(2629)] = 141124, + [SMALL_STATE(2630)] = 141155, + [SMALL_STATE(2631)] = 141186, + [SMALL_STATE(2632)] = 141241, + [SMALL_STATE(2633)] = 141296, + [SMALL_STATE(2634)] = 141327, + [SMALL_STATE(2635)] = 141358, + [SMALL_STATE(2636)] = 141413, + [SMALL_STATE(2637)] = 141468, + [SMALL_STATE(2638)] = 141523, + [SMALL_STATE(2639)] = 141558, + [SMALL_STATE(2640)] = 141589, + [SMALL_STATE(2641)] = 141620, + [SMALL_STATE(2642)] = 141651, + [SMALL_STATE(2643)] = 141682, + [SMALL_STATE(2644)] = 141737, + [SMALL_STATE(2645)] = 141768, + [SMALL_STATE(2646)] = 141821, + [SMALL_STATE(2647)] = 141852, + [SMALL_STATE(2648)] = 141905, + [SMALL_STATE(2649)] = 141936, + [SMALL_STATE(2650)] = 141991, + [SMALL_STATE(2651)] = 142046, + [SMALL_STATE(2652)] = 142101, + [SMALL_STATE(2653)] = 142132, + [SMALL_STATE(2654)] = 142163, + [SMALL_STATE(2655)] = 142218, + [SMALL_STATE(2656)] = 142273, + [SMALL_STATE(2657)] = 142328, + [SMALL_STATE(2658)] = 142359, + [SMALL_STATE(2659)] = 142414, + [SMALL_STATE(2660)] = 142445, + [SMALL_STATE(2661)] = 142476, + [SMALL_STATE(2662)] = 142507, + [SMALL_STATE(2663)] = 142538, + [SMALL_STATE(2664)] = 142593, + [SMALL_STATE(2665)] = 142624, + [SMALL_STATE(2666)] = 142679, + [SMALL_STATE(2667)] = 142734, + [SMALL_STATE(2668)] = 142789, + [SMALL_STATE(2669)] = 142844, + [SMALL_STATE(2670)] = 142899, + [SMALL_STATE(2671)] = 142930, + [SMALL_STATE(2672)] = 142985, + [SMALL_STATE(2673)] = 143016, + [SMALL_STATE(2674)] = 143047, + [SMALL_STATE(2675)] = 143100, + [SMALL_STATE(2676)] = 143131, + [SMALL_STATE(2677)] = 143162, + [SMALL_STATE(2678)] = 143217, + [SMALL_STATE(2679)] = 143252, + [SMALL_STATE(2680)] = 143307, + [SMALL_STATE(2681)] = 143362, + [SMALL_STATE(2682)] = 143393, + [SMALL_STATE(2683)] = 143424, + [SMALL_STATE(2684)] = 143479, + [SMALL_STATE(2685)] = 143510, + [SMALL_STATE(2686)] = 143545, + [SMALL_STATE(2687)] = 143600, + [SMALL_STATE(2688)] = 143655, + [SMALL_STATE(2689)] = 143686, + [SMALL_STATE(2690)] = 143717, + [SMALL_STATE(2691)] = 143748, + [SMALL_STATE(2692)] = 143779, + [SMALL_STATE(2693)] = 143834, + [SMALL_STATE(2694)] = 143869, + [SMALL_STATE(2695)] = 143924, + [SMALL_STATE(2696)] = 143955, + [SMALL_STATE(2697)] = 143990, + [SMALL_STATE(2698)] = 144045, + [SMALL_STATE(2699)] = 144076, + [SMALL_STATE(2700)] = 144131, + [SMALL_STATE(2701)] = 144186, + [SMALL_STATE(2702)] = 144221, + [SMALL_STATE(2703)] = 144252, + [SMALL_STATE(2704)] = 144307, + [SMALL_STATE(2705)] = 144338, + [SMALL_STATE(2706)] = 144393, + [SMALL_STATE(2707)] = 144424, + [SMALL_STATE(2708)] = 144479, + [SMALL_STATE(2709)] = 144510, + [SMALL_STATE(2710)] = 144541, + [SMALL_STATE(2711)] = 144572, + [SMALL_STATE(2712)] = 144603, + [SMALL_STATE(2713)] = 144634, + [SMALL_STATE(2714)] = 144665, + [SMALL_STATE(2715)] = 144720, + [SMALL_STATE(2716)] = 144751, + [SMALL_STATE(2717)] = 144782, + [SMALL_STATE(2718)] = 144813, + [SMALL_STATE(2719)] = 144844, + [SMALL_STATE(2720)] = 144899, + [SMALL_STATE(2721)] = 144954, + [SMALL_STATE(2722)] = 145009, + [SMALL_STATE(2723)] = 145064, + [SMALL_STATE(2724)] = 145095, + [SMALL_STATE(2725)] = 145126, + [SMALL_STATE(2726)] = 145157, + [SMALL_STATE(2727)] = 145188, + [SMALL_STATE(2728)] = 145243, + [SMALL_STATE(2729)] = 145295, + [SMALL_STATE(2730)] = 145347, + [SMALL_STATE(2731)] = 145377, + [SMALL_STATE(2732)] = 145429, + [SMALL_STATE(2733)] = 145459, + [SMALL_STATE(2734)] = 145489, + [SMALL_STATE(2735)] = 145541, + [SMALL_STATE(2736)] = 145571, + [SMALL_STATE(2737)] = 145623, + [SMALL_STATE(2738)] = 145653, + [SMALL_STATE(2739)] = 145683, + [SMALL_STATE(2740)] = 145731, + [SMALL_STATE(2741)] = 145761, + [SMALL_STATE(2742)] = 145791, + [SMALL_STATE(2743)] = 145821, + [SMALL_STATE(2744)] = 145873, + [SMALL_STATE(2745)] = 145903, + [SMALL_STATE(2746)] = 145951, + [SMALL_STATE(2747)] = 145981, + [SMALL_STATE(2748)] = 146011, + [SMALL_STATE(2749)] = 146063, + [SMALL_STATE(2750)] = 146093, + [SMALL_STATE(2751)] = 146123, + [SMALL_STATE(2752)] = 146153, + [SMALL_STATE(2753)] = 146205, + [SMALL_STATE(2754)] = 146235, + [SMALL_STATE(2755)] = 146265, + [SMALL_STATE(2756)] = 146317, + [SMALL_STATE(2757)] = 146347, + [SMALL_STATE(2758)] = 146377, + [SMALL_STATE(2759)] = 146407, + [SMALL_STATE(2760)] = 146437, + [SMALL_STATE(2761)] = 146489, + [SMALL_STATE(2762)] = 146519, + [SMALL_STATE(2763)] = 146571, + [SMALL_STATE(2764)] = 146619, + [SMALL_STATE(2765)] = 146671, + [SMALL_STATE(2766)] = 146701, + [SMALL_STATE(2767)] = 146731, + [SMALL_STATE(2768)] = 146783, + [SMALL_STATE(2769)] = 146813, + [SMALL_STATE(2770)] = 146843, + [SMALL_STATE(2771)] = 146873, + [SMALL_STATE(2772)] = 146903, + [SMALL_STATE(2773)] = 146933, + [SMALL_STATE(2774)] = 146963, + [SMALL_STATE(2775)] = 146993, + [SMALL_STATE(2776)] = 147023, + [SMALL_STATE(2777)] = 147053, + [SMALL_STATE(2778)] = 147083, + [SMALL_STATE(2779)] = 147113, + [SMALL_STATE(2780)] = 147165, + [SMALL_STATE(2781)] = 147195, + [SMALL_STATE(2782)] = 147225, + [SMALL_STATE(2783)] = 147255, + [SMALL_STATE(2784)] = 147285, + [SMALL_STATE(2785)] = 147315, + [SMALL_STATE(2786)] = 147367, + [SMALL_STATE(2787)] = 147397, + [SMALL_STATE(2788)] = 147427, + [SMALL_STATE(2789)] = 147457, + [SMALL_STATE(2790)] = 147509, + [SMALL_STATE(2791)] = 147539, + [SMALL_STATE(2792)] = 147569, + [SMALL_STATE(2793)] = 147599, + [SMALL_STATE(2794)] = 147629, + [SMALL_STATE(2795)] = 147677, + [SMALL_STATE(2796)] = 147707, + [SMALL_STATE(2797)] = 147737, + [SMALL_STATE(2798)] = 147767, + [SMALL_STATE(2799)] = 147797, + [SMALL_STATE(2800)] = 147827, + [SMALL_STATE(2801)] = 147857, + [SMALL_STATE(2802)] = 147887, + [SMALL_STATE(2803)] = 147917, + [SMALL_STATE(2804)] = 147947, + [SMALL_STATE(2805)] = 147977, + [SMALL_STATE(2806)] = 148007, + [SMALL_STATE(2807)] = 148059, + [SMALL_STATE(2808)] = 148089, + [SMALL_STATE(2809)] = 148119, + [SMALL_STATE(2810)] = 148149, + [SMALL_STATE(2811)] = 148179, + [SMALL_STATE(2812)] = 148209, + [SMALL_STATE(2813)] = 148261, + [SMALL_STATE(2814)] = 148291, + [SMALL_STATE(2815)] = 148321, + [SMALL_STATE(2816)] = 148351, + [SMALL_STATE(2817)] = 148381, + [SMALL_STATE(2818)] = 148411, + [SMALL_STATE(2819)] = 148441, + [SMALL_STATE(2820)] = 148471, + [SMALL_STATE(2821)] = 148501, + [SMALL_STATE(2822)] = 148553, + [SMALL_STATE(2823)] = 148605, + [SMALL_STATE(2824)] = 148635, + [SMALL_STATE(2825)] = 148665, + [SMALL_STATE(2826)] = 148717, + [SMALL_STATE(2827)] = 148747, + [SMALL_STATE(2828)] = 148777, + [SMALL_STATE(2829)] = 148807, + [SMALL_STATE(2830)] = 148837, + [SMALL_STATE(2831)] = 148889, + [SMALL_STATE(2832)] = 148919, + [SMALL_STATE(2833)] = 148971, + [SMALL_STATE(2834)] = 149023, + [SMALL_STATE(2835)] = 149075, + [SMALL_STATE(2836)] = 149127, + [SMALL_STATE(2837)] = 149156, + [SMALL_STATE(2838)] = 149185, + [SMALL_STATE(2839)] = 149230, + [SMALL_STATE(2840)] = 149275, + [SMALL_STATE(2841)] = 149320, + [SMALL_STATE(2842)] = 149365, + [SMALL_STATE(2843)] = 149410, + [SMALL_STATE(2844)] = 149455, + [SMALL_STATE(2845)] = 149500, + [SMALL_STATE(2846)] = 149545, + [SMALL_STATE(2847)] = 149590, + [SMALL_STATE(2848)] = 149619, + [SMALL_STATE(2849)] = 149664, + [SMALL_STATE(2850)] = 149693, + [SMALL_STATE(2851)] = 149738, + [SMALL_STATE(2852)] = 149767, + [SMALL_STATE(2853)] = 149796, + [SMALL_STATE(2854)] = 149825, + [SMALL_STATE(2855)] = 149854, + [SMALL_STATE(2856)] = 149899, + [SMALL_STATE(2857)] = 149944, + [SMALL_STATE(2858)] = 149989, + [SMALL_STATE(2859)] = 150018, + [SMALL_STATE(2860)] = 150047, + [SMALL_STATE(2861)] = 150076, + [SMALL_STATE(2862)] = 150121, + [SMALL_STATE(2863)] = 150166, + [SMALL_STATE(2864)] = 150195, + [SMALL_STATE(2865)] = 150240, + [SMALL_STATE(2866)] = 150285, + [SMALL_STATE(2867)] = 150330, + [SMALL_STATE(2868)] = 150375, + [SMALL_STATE(2869)] = 150420, + [SMALL_STATE(2870)] = 150465, + [SMALL_STATE(2871)] = 150494, + [SMALL_STATE(2872)] = 150539, + [SMALL_STATE(2873)] = 150584, + [SMALL_STATE(2874)] = 150629, + [SMALL_STATE(2875)] = 150674, + [SMALL_STATE(2876)] = 150719, + [SMALL_STATE(2877)] = 150748, + [SMALL_STATE(2878)] = 150793, + [SMALL_STATE(2879)] = 150838, + [SMALL_STATE(2880)] = 150883, + [SMALL_STATE(2881)] = 150928, + [SMALL_STATE(2882)] = 150957, + [SMALL_STATE(2883)] = 151002, + [SMALL_STATE(2884)] = 151031, + [SMALL_STATE(2885)] = 151076, + [SMALL_STATE(2886)] = 151121, + [SMALL_STATE(2887)] = 151150, + [SMALL_STATE(2888)] = 151195, + [SMALL_STATE(2889)] = 151224, + [SMALL_STATE(2890)] = 151253, + [SMALL_STATE(2891)] = 151298, + [SMALL_STATE(2892)] = 151327, + [SMALL_STATE(2893)] = 151356, + [SMALL_STATE(2894)] = 151385, + [SMALL_STATE(2895)] = 151430, + [SMALL_STATE(2896)] = 151459, + [SMALL_STATE(2897)] = 151504, + [SMALL_STATE(2898)] = 151549, + [SMALL_STATE(2899)] = 151594, + [SMALL_STATE(2900)] = 151623, + [SMALL_STATE(2901)] = 151668, + [SMALL_STATE(2902)] = 151713, + [SMALL_STATE(2903)] = 151758, + [SMALL_STATE(2904)] = 151803, + [SMALL_STATE(2905)] = 151848, + [SMALL_STATE(2906)] = 151893, + [SMALL_STATE(2907)] = 151938, + [SMALL_STATE(2908)] = 151983, + [SMALL_STATE(2909)] = 152028, + [SMALL_STATE(2910)] = 152073, + [SMALL_STATE(2911)] = 152118, + [SMALL_STATE(2912)] = 152163, + [SMALL_STATE(2913)] = 152208, + [SMALL_STATE(2914)] = 152253, + [SMALL_STATE(2915)] = 152298, + [SMALL_STATE(2916)] = 152343, + [SMALL_STATE(2917)] = 152372, + [SMALL_STATE(2918)] = 152401, + [SMALL_STATE(2919)] = 152430, + [SMALL_STATE(2920)] = 152459, + [SMALL_STATE(2921)] = 152488, + [SMALL_STATE(2922)] = 152533, + [SMALL_STATE(2923)] = 152562, + [SMALL_STATE(2924)] = 152591, + [SMALL_STATE(2925)] = 152636, + [SMALL_STATE(2926)] = 152681, + [SMALL_STATE(2927)] = 152726, + [SMALL_STATE(2928)] = 152771, + [SMALL_STATE(2929)] = 152816, + [SMALL_STATE(2930)] = 152861, + [SMALL_STATE(2931)] = 152890, + [SMALL_STATE(2932)] = 152935, + [SMALL_STATE(2933)] = 152980, + [SMALL_STATE(2934)] = 153009, + [SMALL_STATE(2935)] = 153054, + [SMALL_STATE(2936)] = 153083, + [SMALL_STATE(2937)] = 153112, + [SMALL_STATE(2938)] = 153141, + [SMALL_STATE(2939)] = 153186, + [SMALL_STATE(2940)] = 153231, + [SMALL_STATE(2941)] = 153260, + [SMALL_STATE(2942)] = 153289, + [SMALL_STATE(2943)] = 153334, + [SMALL_STATE(2944)] = 153379, + [SMALL_STATE(2945)] = 153424, + [SMALL_STATE(2946)] = 153453, + [SMALL_STATE(2947)] = 153498, + [SMALL_STATE(2948)] = 153543, + [SMALL_STATE(2949)] = 153588, + [SMALL_STATE(2950)] = 153633, + [SMALL_STATE(2951)] = 153678, + [SMALL_STATE(2952)] = 153723, + [SMALL_STATE(2953)] = 153752, + [SMALL_STATE(2954)] = 153797, + [SMALL_STATE(2955)] = 153842, + [SMALL_STATE(2956)] = 153887, + [SMALL_STATE(2957)] = 153932, + [SMALL_STATE(2958)] = 153977, + [SMALL_STATE(2959)] = 154022, + [SMALL_STATE(2960)] = 154051, + [SMALL_STATE(2961)] = 154096, + [SMALL_STATE(2962)] = 154141, + [SMALL_STATE(2963)] = 154170, + [SMALL_STATE(2964)] = 154215, + [SMALL_STATE(2965)] = 154244, + [SMALL_STATE(2966)] = 154289, + [SMALL_STATE(2967)] = 154334, + [SMALL_STATE(2968)] = 154379, + [SMALL_STATE(2969)] = 154424, + [SMALL_STATE(2970)] = 154469, + [SMALL_STATE(2971)] = 154498, + [SMALL_STATE(2972)] = 154543, + [SMALL_STATE(2973)] = 154588, + [SMALL_STATE(2974)] = 154617, + [SMALL_STATE(2975)] = 154662, + [SMALL_STATE(2976)] = 154707, + [SMALL_STATE(2977)] = 154736, + [SMALL_STATE(2978)] = 154781, + [SMALL_STATE(2979)] = 154826, + [SMALL_STATE(2980)] = 154855, + [SMALL_STATE(2981)] = 154900, + [SMALL_STATE(2982)] = 154945, + [SMALL_STATE(2983)] = 154974, + [SMALL_STATE(2984)] = 155019, + [SMALL_STATE(2985)] = 155048, + [SMALL_STATE(2986)] = 155093, + [SMALL_STATE(2987)] = 155138, + [SMALL_STATE(2988)] = 155167, + [SMALL_STATE(2989)] = 155196, + [SMALL_STATE(2990)] = 155225, + [SMALL_STATE(2991)] = 155254, + [SMALL_STATE(2992)] = 155283, + [SMALL_STATE(2993)] = 155312, + [SMALL_STATE(2994)] = 155338, + [SMALL_STATE(2995)] = 155364, + [SMALL_STATE(2996)] = 155392, + [SMALL_STATE(2997)] = 155418, + [SMALL_STATE(2998)] = 155444, + [SMALL_STATE(2999)] = 155470, + [SMALL_STATE(3000)] = 155496, + [SMALL_STATE(3001)] = 155522, + [SMALL_STATE(3002)] = 155548, + [SMALL_STATE(3003)] = 155574, + [SMALL_STATE(3004)] = 155600, + [SMALL_STATE(3005)] = 155626, + [SMALL_STATE(3006)] = 155652, + [SMALL_STATE(3007)] = 155680, + [SMALL_STATE(3008)] = 155706, + [SMALL_STATE(3009)] = 155732, + [SMALL_STATE(3010)] = 155758, + [SMALL_STATE(3011)] = 155784, + [SMALL_STATE(3012)] = 155810, + [SMALL_STATE(3013)] = 155836, + [SMALL_STATE(3014)] = 155862, + [SMALL_STATE(3015)] = 155888, + [SMALL_STATE(3016)] = 155914, + [SMALL_STATE(3017)] = 155940, + [SMALL_STATE(3018)] = 155966, + [SMALL_STATE(3019)] = 155992, + [SMALL_STATE(3020)] = 156018, + [SMALL_STATE(3021)] = 156044, + [SMALL_STATE(3022)] = 156070, + [SMALL_STATE(3023)] = 156096, + [SMALL_STATE(3024)] = 156129, + [SMALL_STATE(3025)] = 156162, + [SMALL_STATE(3026)] = 156191, + [SMALL_STATE(3027)] = 156214, + [SMALL_STATE(3028)] = 156238, + [SMALL_STATE(3029)] = 156262, + [SMALL_STATE(3030)] = 156286, + [SMALL_STATE(3031)] = 156310, + [SMALL_STATE(3032)] = 156338, + [SMALL_STATE(3033)] = 156362, + [SMALL_STATE(3034)] = 156386, + [SMALL_STATE(3035)] = 156410, + [SMALL_STATE(3036)] = 156434, + [SMALL_STATE(3037)] = 156462, + [SMALL_STATE(3038)] = 156490, + [SMALL_STATE(3039)] = 156514, + [SMALL_STATE(3040)] = 156538, + [SMALL_STATE(3041)] = 156562, + [SMALL_STATE(3042)] = 156590, + [SMALL_STATE(3043)] = 156618, + [SMALL_STATE(3044)] = 156642, + [SMALL_STATE(3045)] = 156666, + [SMALL_STATE(3046)] = 156690, + [SMALL_STATE(3047)] = 156714, + [SMALL_STATE(3048)] = 156742, + [SMALL_STATE(3049)] = 156774, + [SMALL_STATE(3050)] = 156798, + [SMALL_STATE(3051)] = 156822, + [SMALL_STATE(3052)] = 156846, + [SMALL_STATE(3053)] = 156870, + [SMALL_STATE(3054)] = 156894, + [SMALL_STATE(3055)] = 156918, + [SMALL_STATE(3056)] = 156942, + [SMALL_STATE(3057)] = 156966, + [SMALL_STATE(3058)] = 156990, + [SMALL_STATE(3059)] = 157014, + [SMALL_STATE(3060)] = 157038, + [SMALL_STATE(3061)] = 157062, + [SMALL_STATE(3062)] = 157094, + [SMALL_STATE(3063)] = 157118, + [SMALL_STATE(3064)] = 157143, + [SMALL_STATE(3065)] = 157168, + [SMALL_STATE(3066)] = 157193, + [SMALL_STATE(3067)] = 157218, + [SMALL_STATE(3068)] = 157243, + [SMALL_STATE(3069)] = 157268, + [SMALL_STATE(3070)] = 157293, + [SMALL_STATE(3071)] = 157318, + [SMALL_STATE(3072)] = 157345, + [SMALL_STATE(3073)] = 157370, + [SMALL_STATE(3074)] = 157395, + [SMALL_STATE(3075)] = 157420, + [SMALL_STATE(3076)] = 157445, + [SMALL_STATE(3077)] = 157470, + [SMALL_STATE(3078)] = 157495, + [SMALL_STATE(3079)] = 157518, + [SMALL_STATE(3080)] = 157543, + [SMALL_STATE(3081)] = 157568, + [SMALL_STATE(3082)] = 157593, + [SMALL_STATE(3083)] = 157618, + [SMALL_STATE(3084)] = 157643, + [SMALL_STATE(3085)] = 157668, + [SMALL_STATE(3086)] = 157693, + [SMALL_STATE(3087)] = 157718, + [SMALL_STATE(3088)] = 157743, + [SMALL_STATE(3089)] = 157768, + [SMALL_STATE(3090)] = 157790, + [SMALL_STATE(3091)] = 157824, + [SMALL_STATE(3092)] = 157858, + [SMALL_STATE(3093)] = 157892, + [SMALL_STATE(3094)] = 157926, + [SMALL_STATE(3095)] = 157960, + [SMALL_STATE(3096)] = 157994, + [SMALL_STATE(3097)] = 158024, + [SMALL_STATE(3098)] = 158058, + [SMALL_STATE(3099)] = 158080, + [SMALL_STATE(3100)] = 158114, + [SMALL_STATE(3101)] = 158136, + [SMALL_STATE(3102)] = 158166, + [SMALL_STATE(3103)] = 158200, + [SMALL_STATE(3104)] = 158222, + [SMALL_STATE(3105)] = 158244, + [SMALL_STATE(3106)] = 158278, + [SMALL_STATE(3107)] = 158312, + [SMALL_STATE(3108)] = 158334, + [SMALL_STATE(3109)] = 158368, + [SMALL_STATE(3110)] = 158390, + [SMALL_STATE(3111)] = 158424, + [SMALL_STATE(3112)] = 158458, + [SMALL_STATE(3113)] = 158492, + [SMALL_STATE(3114)] = 158526, + [SMALL_STATE(3115)] = 158560, + [SMALL_STATE(3116)] = 158594, + [SMALL_STATE(3117)] = 158628, + [SMALL_STATE(3118)] = 158662, + [SMALL_STATE(3119)] = 158696, + [SMALL_STATE(3120)] = 158730, + [SMALL_STATE(3121)] = 158764, + [SMALL_STATE(3122)] = 158786, + [SMALL_STATE(3123)] = 158820, + [SMALL_STATE(3124)] = 158854, + [SMALL_STATE(3125)] = 158888, + [SMALL_STATE(3126)] = 158910, + [SMALL_STATE(3127)] = 158944, + [SMALL_STATE(3128)] = 158978, + [SMALL_STATE(3129)] = 159012, + [SMALL_STATE(3130)] = 159034, + [SMALL_STATE(3131)] = 159056, + [SMALL_STATE(3132)] = 159078, + [SMALL_STATE(3133)] = 159112, + [SMALL_STATE(3134)] = 159146, + [SMALL_STATE(3135)] = 159168, + [SMALL_STATE(3136)] = 159190, + [SMALL_STATE(3137)] = 159212, + [SMALL_STATE(3138)] = 159234, + [SMALL_STATE(3139)] = 159256, + [SMALL_STATE(3140)] = 159290, + [SMALL_STATE(3141)] = 159312, + [SMALL_STATE(3142)] = 159334, + [SMALL_STATE(3143)] = 159368, + [SMALL_STATE(3144)] = 159402, + [SMALL_STATE(3145)] = 159436, + [SMALL_STATE(3146)] = 159458, + [SMALL_STATE(3147)] = 159492, + [SMALL_STATE(3148)] = 159526, + [SMALL_STATE(3149)] = 159560, + [SMALL_STATE(3150)] = 159594, + [SMALL_STATE(3151)] = 159628, + [SMALL_STATE(3152)] = 159662, + [SMALL_STATE(3153)] = 159692, + [SMALL_STATE(3154)] = 159726, + [SMALL_STATE(3155)] = 159748, + [SMALL_STATE(3156)] = 159770, + [SMALL_STATE(3157)] = 159804, + [SMALL_STATE(3158)] = 159838, + [SMALL_STATE(3159)] = 159872, + [SMALL_STATE(3160)] = 159902, + [SMALL_STATE(3161)] = 159936, + [SMALL_STATE(3162)] = 159958, + [SMALL_STATE(3163)] = 159980, + [SMALL_STATE(3164)] = 160002, + [SMALL_STATE(3165)] = 160024, + [SMALL_STATE(3166)] = 160058, + [SMALL_STATE(3167)] = 160080, + [SMALL_STATE(3168)] = 160114, + [SMALL_STATE(3169)] = 160148, + [SMALL_STATE(3170)] = 160170, + [SMALL_STATE(3171)] = 160192, + [SMALL_STATE(3172)] = 160214, + [SMALL_STATE(3173)] = 160236, + [SMALL_STATE(3174)] = 160258, + [SMALL_STATE(3175)] = 160292, + [SMALL_STATE(3176)] = 160314, + [SMALL_STATE(3177)] = 160336, + [SMALL_STATE(3178)] = 160358, + [SMALL_STATE(3179)] = 160392, + [SMALL_STATE(3180)] = 160414, + [SMALL_STATE(3181)] = 160436, + [SMALL_STATE(3182)] = 160470, + [SMALL_STATE(3183)] = 160492, + [SMALL_STATE(3184)] = 160514, + [SMALL_STATE(3185)] = 160536, + [SMALL_STATE(3186)] = 160558, + [SMALL_STATE(3187)] = 160580, + [SMALL_STATE(3188)] = 160614, + [SMALL_STATE(3189)] = 160636, + [SMALL_STATE(3190)] = 160658, + [SMALL_STATE(3191)] = 160692, + [SMALL_STATE(3192)] = 160714, + [SMALL_STATE(3193)] = 160748, + [SMALL_STATE(3194)] = 160782, + [SMALL_STATE(3195)] = 160804, + [SMALL_STATE(3196)] = 160826, + [SMALL_STATE(3197)] = 160848, + [SMALL_STATE(3198)] = 160882, + [SMALL_STATE(3199)] = 160904, + [SMALL_STATE(3200)] = 160926, + [SMALL_STATE(3201)] = 160948, + [SMALL_STATE(3202)] = 160982, + [SMALL_STATE(3203)] = 161004, + [SMALL_STATE(3204)] = 161026, + [SMALL_STATE(3205)] = 161060, + [SMALL_STATE(3206)] = 161082, + [SMALL_STATE(3207)] = 161104, + [SMALL_STATE(3208)] = 161138, + [SMALL_STATE(3209)] = 161172, + [SMALL_STATE(3210)] = 161194, + [SMALL_STATE(3211)] = 161216, + [SMALL_STATE(3212)] = 161238, + [SMALL_STATE(3213)] = 161260, + [SMALL_STATE(3214)] = 161282, + [SMALL_STATE(3215)] = 161316, + [SMALL_STATE(3216)] = 161350, + [SMALL_STATE(3217)] = 161384, + [SMALL_STATE(3218)] = 161406, + [SMALL_STATE(3219)] = 161440, + [SMALL_STATE(3220)] = 161462, + [SMALL_STATE(3221)] = 161484, + [SMALL_STATE(3222)] = 161518, + [SMALL_STATE(3223)] = 161552, + [SMALL_STATE(3224)] = 161586, + [SMALL_STATE(3225)] = 161608, + [SMALL_STATE(3226)] = 161637, + [SMALL_STATE(3227)] = 161662, + [SMALL_STATE(3228)] = 161691, + [SMALL_STATE(3229)] = 161715, + [SMALL_STATE(3230)] = 161739, + [SMALL_STATE(3231)] = 161763, + [SMALL_STATE(3232)] = 161787, + [SMALL_STATE(3233)] = 161813, + [SMALL_STATE(3234)] = 161839, + [SMALL_STATE(3235)] = 161865, + [SMALL_STATE(3236)] = 161889, + [SMALL_STATE(3237)] = 161915, + [SMALL_STATE(3238)] = 161939, + [SMALL_STATE(3239)] = 161963, + [SMALL_STATE(3240)] = 161987, + [SMALL_STATE(3241)] = 162013, + [SMALL_STATE(3242)] = 162039, + [SMALL_STATE(3243)] = 162063, + [SMALL_STATE(3244)] = 162089, + [SMALL_STATE(3245)] = 162113, + [SMALL_STATE(3246)] = 162137, + [SMALL_STATE(3247)] = 162161, + [SMALL_STATE(3248)] = 162185, + [SMALL_STATE(3249)] = 162209, + [SMALL_STATE(3250)] = 162233, + [SMALL_STATE(3251)] = 162257, + [SMALL_STATE(3252)] = 162281, + [SMALL_STATE(3253)] = 162305, + [SMALL_STATE(3254)] = 162329, + [SMALL_STATE(3255)] = 162355, + [SMALL_STATE(3256)] = 162381, + [SMALL_STATE(3257)] = 162405, + [SMALL_STATE(3258)] = 162431, + [SMALL_STATE(3259)] = 162457, + [SMALL_STATE(3260)] = 162483, + [SMALL_STATE(3261)] = 162507, + [SMALL_STATE(3262)] = 162531, + [SMALL_STATE(3263)] = 162557, + [SMALL_STATE(3264)] = 162581, + [SMALL_STATE(3265)] = 162605, + [SMALL_STATE(3266)] = 162629, + [SMALL_STATE(3267)] = 162653, + [SMALL_STATE(3268)] = 162679, + [SMALL_STATE(3269)] = 162703, + [SMALL_STATE(3270)] = 162729, + [SMALL_STATE(3271)] = 162753, + [SMALL_STATE(3272)] = 162777, + [SMALL_STATE(3273)] = 162801, + [SMALL_STATE(3274)] = 162825, + [SMALL_STATE(3275)] = 162849, + [SMALL_STATE(3276)] = 162875, + [SMALL_STATE(3277)] = 162899, + [SMALL_STATE(3278)] = 162923, + [SMALL_STATE(3279)] = 162949, + [SMALL_STATE(3280)] = 162975, + [SMALL_STATE(3281)] = 162999, + [SMALL_STATE(3282)] = 163025, + [SMALL_STATE(3283)] = 163049, + [SMALL_STATE(3284)] = 163073, + [SMALL_STATE(3285)] = 163097, + [SMALL_STATE(3286)] = 163123, + [SMALL_STATE(3287)] = 163147, + [SMALL_STATE(3288)] = 163171, + [SMALL_STATE(3289)] = 163195, + [SMALL_STATE(3290)] = 163219, + [SMALL_STATE(3291)] = 163243, + [SMALL_STATE(3292)] = 163267, + [SMALL_STATE(3293)] = 163293, + [SMALL_STATE(3294)] = 163319, + [SMALL_STATE(3295)] = 163345, + [SMALL_STATE(3296)] = 163369, + [SMALL_STATE(3297)] = 163393, + [SMALL_STATE(3298)] = 163417, + [SMALL_STATE(3299)] = 163443, + [SMALL_STATE(3300)] = 163469, + [SMALL_STATE(3301)] = 163493, + [SMALL_STATE(3302)] = 163517, + [SMALL_STATE(3303)] = 163543, + [SMALL_STATE(3304)] = 163567, + [SMALL_STATE(3305)] = 163591, + [SMALL_STATE(3306)] = 163615, + [SMALL_STATE(3307)] = 163641, + [SMALL_STATE(3308)] = 163667, + [SMALL_STATE(3309)] = 163691, + [SMALL_STATE(3310)] = 163717, + [SMALL_STATE(3311)] = 163741, + [SMALL_STATE(3312)] = 163767, + [SMALL_STATE(3313)] = 163791, + [SMALL_STATE(3314)] = 163817, + [SMALL_STATE(3315)] = 163841, + [SMALL_STATE(3316)] = 163865, + [SMALL_STATE(3317)] = 163889, + [SMALL_STATE(3318)] = 163913, + [SMALL_STATE(3319)] = 163937, + [SMALL_STATE(3320)] = 163961, + [SMALL_STATE(3321)] = 163985, + [SMALL_STATE(3322)] = 164011, + [SMALL_STATE(3323)] = 164035, + [SMALL_STATE(3324)] = 164059, + [SMALL_STATE(3325)] = 164090, + [SMALL_STATE(3326)] = 164121, + [SMALL_STATE(3327)] = 164142, + [SMALL_STATE(3328)] = 164167, + [SMALL_STATE(3329)] = 164198, + [SMALL_STATE(3330)] = 164229, + [SMALL_STATE(3331)] = 164260, + [SMALL_STATE(3332)] = 164291, + [SMALL_STATE(3333)] = 164322, + [SMALL_STATE(3334)] = 164353, + [SMALL_STATE(3335)] = 164378, + [SMALL_STATE(3336)] = 164409, + [SMALL_STATE(3337)] = 164440, + [SMALL_STATE(3338)] = 164471, + [SMALL_STATE(3339)] = 164502, + [SMALL_STATE(3340)] = 164533, + [SMALL_STATE(3341)] = 164564, + [SMALL_STATE(3342)] = 164595, + [SMALL_STATE(3343)] = 164626, + [SMALL_STATE(3344)] = 164657, + [SMALL_STATE(3345)] = 164688, + [SMALL_STATE(3346)] = 164719, + [SMALL_STATE(3347)] = 164750, + [SMALL_STATE(3348)] = 164781, + [SMALL_STATE(3349)] = 164812, + [SMALL_STATE(3350)] = 164843, + [SMALL_STATE(3351)] = 164874, + [SMALL_STATE(3352)] = 164905, + [SMALL_STATE(3353)] = 164936, + [SMALL_STATE(3354)] = 164967, + [SMALL_STATE(3355)] = 164998, + [SMALL_STATE(3356)] = 165029, + [SMALL_STATE(3357)] = 165060, + [SMALL_STATE(3358)] = 165091, + [SMALL_STATE(3359)] = 165122, + [SMALL_STATE(3360)] = 165153, + [SMALL_STATE(3361)] = 165184, + [SMALL_STATE(3362)] = 165215, + [SMALL_STATE(3363)] = 165246, + [SMALL_STATE(3364)] = 165277, + [SMALL_STATE(3365)] = 165308, + [SMALL_STATE(3366)] = 165339, + [SMALL_STATE(3367)] = 165370, + [SMALL_STATE(3368)] = 165401, + [SMALL_STATE(3369)] = 165432, + [SMALL_STATE(3370)] = 165463, + [SMALL_STATE(3371)] = 165494, + [SMALL_STATE(3372)] = 165525, + [SMALL_STATE(3373)] = 165556, + [SMALL_STATE(3374)] = 165587, + [SMALL_STATE(3375)] = 165612, + [SMALL_STATE(3376)] = 165643, + [SMALL_STATE(3377)] = 165674, + [SMALL_STATE(3378)] = 165705, + [SMALL_STATE(3379)] = 165736, + [SMALL_STATE(3380)] = 165767, + [SMALL_STATE(3381)] = 165798, + [SMALL_STATE(3382)] = 165829, + [SMALL_STATE(3383)] = 165860, + [SMALL_STATE(3384)] = 165891, + [SMALL_STATE(3385)] = 165922, + [SMALL_STATE(3386)] = 165953, + [SMALL_STATE(3387)] = 165978, + [SMALL_STATE(3388)] = 166009, + [SMALL_STATE(3389)] = 166040, + [SMALL_STATE(3390)] = 166071, + [SMALL_STATE(3391)] = 166102, + [SMALL_STATE(3392)] = 166133, + [SMALL_STATE(3393)] = 166164, + [SMALL_STATE(3394)] = 166195, + [SMALL_STATE(3395)] = 166215, + [SMALL_STATE(3396)] = 166243, + [SMALL_STATE(3397)] = 166271, + [SMALL_STATE(3398)] = 166299, + [SMALL_STATE(3399)] = 166327, + [SMALL_STATE(3400)] = 166355, + [SMALL_STATE(3401)] = 166383, + [SMALL_STATE(3402)] = 166411, + [SMALL_STATE(3403)] = 166427, + [SMALL_STATE(3404)] = 166451, + [SMALL_STATE(3405)] = 166475, + [SMALL_STATE(3406)] = 166499, + [SMALL_STATE(3407)] = 166519, + [SMALL_STATE(3408)] = 166543, + [SMALL_STATE(3409)] = 166567, + [SMALL_STATE(3410)] = 166591, + [SMALL_STATE(3411)] = 166615, + [SMALL_STATE(3412)] = 166639, + [SMALL_STATE(3413)] = 166663, + [SMALL_STATE(3414)] = 166678, + [SMALL_STATE(3415)] = 166693, + [SMALL_STATE(3416)] = 166708, + [SMALL_STATE(3417)] = 166729, + [SMALL_STATE(3418)] = 166748, + [SMALL_STATE(3419)] = 166763, + [SMALL_STATE(3420)] = 166782, + [SMALL_STATE(3421)] = 166797, + [SMALL_STATE(3422)] = 166812, + [SMALL_STATE(3423)] = 166827, + [SMALL_STATE(3424)] = 166842, + [SMALL_STATE(3425)] = 166857, + [SMALL_STATE(3426)] = 166872, + [SMALL_STATE(3427)] = 166893, + [SMALL_STATE(3428)] = 166908, + [SMALL_STATE(3429)] = 166925, + [SMALL_STATE(3430)] = 166946, + [SMALL_STATE(3431)] = 166967, + [SMALL_STATE(3432)] = 166982, + [SMALL_STATE(3433)] = 167003, + [SMALL_STATE(3434)] = 167018, + [SMALL_STATE(3435)] = 167033, + [SMALL_STATE(3436)] = 167054, + [SMALL_STATE(3437)] = 167069, + [SMALL_STATE(3438)] = 167084, + [SMALL_STATE(3439)] = 167103, + [SMALL_STATE(3440)] = 167118, + [SMALL_STATE(3441)] = 167137, + [SMALL_STATE(3442)] = 167158, + [SMALL_STATE(3443)] = 167179, + [SMALL_STATE(3444)] = 167194, + [SMALL_STATE(3445)] = 167211, + [SMALL_STATE(3446)] = 167226, + [SMALL_STATE(3447)] = 167241, + [SMALL_STATE(3448)] = 167262, + [SMALL_STATE(3449)] = 167277, + [SMALL_STATE(3450)] = 167292, + [SMALL_STATE(3451)] = 167311, + [SMALL_STATE(3452)] = 167326, + [SMALL_STATE(3453)] = 167341, + [SMALL_STATE(3454)] = 167356, + [SMALL_STATE(3455)] = 167371, + [SMALL_STATE(3456)] = 167385, + [SMALL_STATE(3457)] = 167399, + [SMALL_STATE(3458)] = 167413, + [SMALL_STATE(3459)] = 167427, + [SMALL_STATE(3460)] = 167441, + [SMALL_STATE(3461)] = 167461, + [SMALL_STATE(3462)] = 167475, + [SMALL_STATE(3463)] = 167489, + [SMALL_STATE(3464)] = 167503, + [SMALL_STATE(3465)] = 167519, + [SMALL_STATE(3466)] = 167533, + [SMALL_STATE(3467)] = 167547, + [SMALL_STATE(3468)] = 167561, + [SMALL_STATE(3469)] = 167575, + [SMALL_STATE(3470)] = 167589, + [SMALL_STATE(3471)] = 167603, + [SMALL_STATE(3472)] = 167617, + [SMALL_STATE(3473)] = 167631, + [SMALL_STATE(3474)] = 167651, + [SMALL_STATE(3475)] = 167665, + [SMALL_STATE(3476)] = 167679, + [SMALL_STATE(3477)] = 167693, + [SMALL_STATE(3478)] = 167707, + [SMALL_STATE(3479)] = 167725, + [SMALL_STATE(3480)] = 167739, + [SMALL_STATE(3481)] = 167753, + [SMALL_STATE(3482)] = 167767, + [SMALL_STATE(3483)] = 167781, + [SMALL_STATE(3484)] = 167797, + [SMALL_STATE(3485)] = 167811, + [SMALL_STATE(3486)] = 167825, + [SMALL_STATE(3487)] = 167839, + [SMALL_STATE(3488)] = 167857, + [SMALL_STATE(3489)] = 167875, + [SMALL_STATE(3490)] = 167889, + [SMALL_STATE(3491)] = 167903, + [SMALL_STATE(3492)] = 167917, + [SMALL_STATE(3493)] = 167931, + [SMALL_STATE(3494)] = 167945, + [SMALL_STATE(3495)] = 167965, + [SMALL_STATE(3496)] = 167979, + [SMALL_STATE(3497)] = 167993, + [SMALL_STATE(3498)] = 168013, + [SMALL_STATE(3499)] = 168031, + [SMALL_STATE(3500)] = 168051, + [SMALL_STATE(3501)] = 168069, + [SMALL_STATE(3502)] = 168083, + [SMALL_STATE(3503)] = 168097, + [SMALL_STATE(3504)] = 168111, + [SMALL_STATE(3505)] = 168125, + [SMALL_STATE(3506)] = 168139, + [SMALL_STATE(3507)] = 168153, + [SMALL_STATE(3508)] = 168167, + [SMALL_STATE(3509)] = 168181, + [SMALL_STATE(3510)] = 168195, + [SMALL_STATE(3511)] = 168209, + [SMALL_STATE(3512)] = 168223, + [SMALL_STATE(3513)] = 168237, + [SMALL_STATE(3514)] = 168251, + [SMALL_STATE(3515)] = 168265, + [SMALL_STATE(3516)] = 168279, + [SMALL_STATE(3517)] = 168299, + [SMALL_STATE(3518)] = 168311, + [SMALL_STATE(3519)] = 168325, + [SMALL_STATE(3520)] = 168339, + [SMALL_STATE(3521)] = 168351, + [SMALL_STATE(3522)] = 168365, + [SMALL_STATE(3523)] = 168380, + [SMALL_STATE(3524)] = 168395, + [SMALL_STATE(3525)] = 168412, + [SMALL_STATE(3526)] = 168429, + [SMALL_STATE(3527)] = 168444, + [SMALL_STATE(3528)] = 168461, + [SMALL_STATE(3529)] = 168478, + [SMALL_STATE(3530)] = 168493, + [SMALL_STATE(3531)] = 168510, + [SMALL_STATE(3532)] = 168525, + [SMALL_STATE(3533)] = 168544, + [SMALL_STATE(3534)] = 168563, + [SMALL_STATE(3535)] = 168580, + [SMALL_STATE(3536)] = 168595, + [SMALL_STATE(3537)] = 168614, + [SMALL_STATE(3538)] = 168631, + [SMALL_STATE(3539)] = 168644, + [SMALL_STATE(3540)] = 168663, + [SMALL_STATE(3541)] = 168680, + [SMALL_STATE(3542)] = 168695, + [SMALL_STATE(3543)] = 168714, + [SMALL_STATE(3544)] = 168729, + [SMALL_STATE(3545)] = 168748, + [SMALL_STATE(3546)] = 168767, + [SMALL_STATE(3547)] = 168784, + [SMALL_STATE(3548)] = 168801, + [SMALL_STATE(3549)] = 168816, + [SMALL_STATE(3550)] = 168831, + [SMALL_STATE(3551)] = 168848, + [SMALL_STATE(3552)] = 168865, + [SMALL_STATE(3553)] = 168882, + [SMALL_STATE(3554)] = 168899, + [SMALL_STATE(3555)] = 168916, + [SMALL_STATE(3556)] = 168929, + [SMALL_STATE(3557)] = 168948, + [SMALL_STATE(3558)] = 168965, + [SMALL_STATE(3559)] = 168980, + [SMALL_STATE(3560)] = 168995, + [SMALL_STATE(3561)] = 169010, + [SMALL_STATE(3562)] = 169025, + [SMALL_STATE(3563)] = 169042, + [SMALL_STATE(3564)] = 169061, + [SMALL_STATE(3565)] = 169078, + [SMALL_STATE(3566)] = 169095, + [SMALL_STATE(3567)] = 169112, + [SMALL_STATE(3568)] = 169129, + [SMALL_STATE(3569)] = 169146, + [SMALL_STATE(3570)] = 169163, + [SMALL_STATE(3571)] = 169180, + [SMALL_STATE(3572)] = 169199, + [SMALL_STATE(3573)] = 169212, + [SMALL_STATE(3574)] = 169231, + [SMALL_STATE(3575)] = 169250, + [SMALL_STATE(3576)] = 169264, + [SMALL_STATE(3577)] = 169280, + [SMALL_STATE(3578)] = 169294, + [SMALL_STATE(3579)] = 169308, + [SMALL_STATE(3580)] = 169322, + [SMALL_STATE(3581)] = 169336, + [SMALL_STATE(3582)] = 169348, + [SMALL_STATE(3583)] = 169362, + [SMALL_STATE(3584)] = 169376, + [SMALL_STATE(3585)] = 169390, + [SMALL_STATE(3586)] = 169406, + [SMALL_STATE(3587)] = 169420, + [SMALL_STATE(3588)] = 169434, + [SMALL_STATE(3589)] = 169448, + [SMALL_STATE(3590)] = 169462, + [SMALL_STATE(3591)] = 169474, + [SMALL_STATE(3592)] = 169490, + [SMALL_STATE(3593)] = 169504, + [SMALL_STATE(3594)] = 169518, + [SMALL_STATE(3595)] = 169532, + [SMALL_STATE(3596)] = 169546, + [SMALL_STATE(3597)] = 169558, + [SMALL_STATE(3598)] = 169572, + [SMALL_STATE(3599)] = 169586, + [SMALL_STATE(3600)] = 169598, + [SMALL_STATE(3601)] = 169610, + [SMALL_STATE(3602)] = 169624, + [SMALL_STATE(3603)] = 169638, + [SMALL_STATE(3604)] = 169654, + [SMALL_STATE(3605)] = 169668, + [SMALL_STATE(3606)] = 169682, + [SMALL_STATE(3607)] = 169696, + [SMALL_STATE(3608)] = 169710, + [SMALL_STATE(3609)] = 169724, + [SMALL_STATE(3610)] = 169738, + [SMALL_STATE(3611)] = 169754, + [SMALL_STATE(3612)] = 169770, + [SMALL_STATE(3613)] = 169786, + [SMALL_STATE(3614)] = 169802, + [SMALL_STATE(3615)] = 169818, + [SMALL_STATE(3616)] = 169830, + [SMALL_STATE(3617)] = 169844, + [SMALL_STATE(3618)] = 169858, + [SMALL_STATE(3619)] = 169870, + [SMALL_STATE(3620)] = 169884, + [SMALL_STATE(3621)] = 169900, + [SMALL_STATE(3622)] = 169914, + [SMALL_STATE(3623)] = 169928, + [SMALL_STATE(3624)] = 169942, + [SMALL_STATE(3625)] = 169956, + [SMALL_STATE(3626)] = 169968, + [SMALL_STATE(3627)] = 169982, + [SMALL_STATE(3628)] = 169994, + [SMALL_STATE(3629)] = 170008, + [SMALL_STATE(3630)] = 170024, + [SMALL_STATE(3631)] = 170037, + [SMALL_STATE(3632)] = 170050, + [SMALL_STATE(3633)] = 170063, + [SMALL_STATE(3634)] = 170076, + [SMALL_STATE(3635)] = 170089, + [SMALL_STATE(3636)] = 170102, + [SMALL_STATE(3637)] = 170115, + [SMALL_STATE(3638)] = 170128, + [SMALL_STATE(3639)] = 170139, + [SMALL_STATE(3640)] = 170152, + [SMALL_STATE(3641)] = 170165, + [SMALL_STATE(3642)] = 170178, + [SMALL_STATE(3643)] = 170191, + [SMALL_STATE(3644)] = 170204, + [SMALL_STATE(3645)] = 170217, + [SMALL_STATE(3646)] = 170230, + [SMALL_STATE(3647)] = 170243, + [SMALL_STATE(3648)] = 170256, + [SMALL_STATE(3649)] = 170269, + [SMALL_STATE(3650)] = 170282, + [SMALL_STATE(3651)] = 170295, + [SMALL_STATE(3652)] = 170308, + [SMALL_STATE(3653)] = 170321, + [SMALL_STATE(3654)] = 170334, + [SMALL_STATE(3655)] = 170347, + [SMALL_STATE(3656)] = 170358, + [SMALL_STATE(3657)] = 170371, + [SMALL_STATE(3658)] = 170384, + [SMALL_STATE(3659)] = 170397, + [SMALL_STATE(3660)] = 170410, + [SMALL_STATE(3661)] = 170421, + [SMALL_STATE(3662)] = 170434, + [SMALL_STATE(3663)] = 170447, + [SMALL_STATE(3664)] = 170460, + [SMALL_STATE(3665)] = 170473, + [SMALL_STATE(3666)] = 170486, + [SMALL_STATE(3667)] = 170499, + [SMALL_STATE(3668)] = 170512, + [SMALL_STATE(3669)] = 170525, + [SMALL_STATE(3670)] = 170538, + [SMALL_STATE(3671)] = 170551, + [SMALL_STATE(3672)] = 170564, + [SMALL_STATE(3673)] = 170577, + [SMALL_STATE(3674)] = 170590, + [SMALL_STATE(3675)] = 170603, + [SMALL_STATE(3676)] = 170616, + [SMALL_STATE(3677)] = 170629, + [SMALL_STATE(3678)] = 170642, + [SMALL_STATE(3679)] = 170655, + [SMALL_STATE(3680)] = 170666, + [SMALL_STATE(3681)] = 170679, + [SMALL_STATE(3682)] = 170692, + [SMALL_STATE(3683)] = 170705, + [SMALL_STATE(3684)] = 170718, + [SMALL_STATE(3685)] = 170731, + [SMALL_STATE(3686)] = 170744, + [SMALL_STATE(3687)] = 170757, + [SMALL_STATE(3688)] = 170770, + [SMALL_STATE(3689)] = 170783, + [SMALL_STATE(3690)] = 170796, + [SMALL_STATE(3691)] = 170807, + [SMALL_STATE(3692)] = 170820, + [SMALL_STATE(3693)] = 170833, + [SMALL_STATE(3694)] = 170846, + [SMALL_STATE(3695)] = 170859, + [SMALL_STATE(3696)] = 170870, + [SMALL_STATE(3697)] = 170883, + [SMALL_STATE(3698)] = 170896, + [SMALL_STATE(3699)] = 170909, + [SMALL_STATE(3700)] = 170922, + [SMALL_STATE(3701)] = 170935, + [SMALL_STATE(3702)] = 170948, + [SMALL_STATE(3703)] = 170961, + [SMALL_STATE(3704)] = 170974, + [SMALL_STATE(3705)] = 170987, + [SMALL_STATE(3706)] = 170998, + [SMALL_STATE(3707)] = 171011, + [SMALL_STATE(3708)] = 171024, + [SMALL_STATE(3709)] = 171037, + [SMALL_STATE(3710)] = 171050, + [SMALL_STATE(3711)] = 171063, + [SMALL_STATE(3712)] = 171076, + [SMALL_STATE(3713)] = 171089, + [SMALL_STATE(3714)] = 171102, + [SMALL_STATE(3715)] = 171115, + [SMALL_STATE(3716)] = 171128, + [SMALL_STATE(3717)] = 171139, + [SMALL_STATE(3718)] = 171152, + [SMALL_STATE(3719)] = 171165, + [SMALL_STATE(3720)] = 171178, + [SMALL_STATE(3721)] = 171191, + [SMALL_STATE(3722)] = 171204, + [SMALL_STATE(3723)] = 171217, + [SMALL_STATE(3724)] = 171230, + [SMALL_STATE(3725)] = 171243, + [SMALL_STATE(3726)] = 171256, + [SMALL_STATE(3727)] = 171269, + [SMALL_STATE(3728)] = 171282, + [SMALL_STATE(3729)] = 171295, + [SMALL_STATE(3730)] = 171308, + [SMALL_STATE(3731)] = 171321, + [SMALL_STATE(3732)] = 171334, + [SMALL_STATE(3733)] = 171345, + [SMALL_STATE(3734)] = 171358, + [SMALL_STATE(3735)] = 171371, + [SMALL_STATE(3736)] = 171384, + [SMALL_STATE(3737)] = 171397, + [SMALL_STATE(3738)] = 171410, + [SMALL_STATE(3739)] = 171423, + [SMALL_STATE(3740)] = 171436, + [SMALL_STATE(3741)] = 171449, + [SMALL_STATE(3742)] = 171462, + [SMALL_STATE(3743)] = 171475, + [SMALL_STATE(3744)] = 171488, + [SMALL_STATE(3745)] = 171501, + [SMALL_STATE(3746)] = 171514, + [SMALL_STATE(3747)] = 171527, + [SMALL_STATE(3748)] = 171540, + [SMALL_STATE(3749)] = 171553, + [SMALL_STATE(3750)] = 171566, + [SMALL_STATE(3751)] = 171579, + [SMALL_STATE(3752)] = 171592, + [SMALL_STATE(3753)] = 171603, + [SMALL_STATE(3754)] = 171616, + [SMALL_STATE(3755)] = 171629, + [SMALL_STATE(3756)] = 171642, + [SMALL_STATE(3757)] = 171655, + [SMALL_STATE(3758)] = 171668, + [SMALL_STATE(3759)] = 171681, + [SMALL_STATE(3760)] = 171692, + [SMALL_STATE(3761)] = 171705, + [SMALL_STATE(3762)] = 171718, + [SMALL_STATE(3763)] = 171731, + [SMALL_STATE(3764)] = 171744, + [SMALL_STATE(3765)] = 171755, + [SMALL_STATE(3766)] = 171768, + [SMALL_STATE(3767)] = 171781, + [SMALL_STATE(3768)] = 171794, + [SMALL_STATE(3769)] = 171807, + [SMALL_STATE(3770)] = 171820, + [SMALL_STATE(3771)] = 171833, + [SMALL_STATE(3772)] = 171846, + [SMALL_STATE(3773)] = 171859, + [SMALL_STATE(3774)] = 171872, + [SMALL_STATE(3775)] = 171885, + [SMALL_STATE(3776)] = 171898, + [SMALL_STATE(3777)] = 171911, + [SMALL_STATE(3778)] = 171924, + [SMALL_STATE(3779)] = 171937, + [SMALL_STATE(3780)] = 171950, + [SMALL_STATE(3781)] = 171963, + [SMALL_STATE(3782)] = 171976, + [SMALL_STATE(3783)] = 171989, + [SMALL_STATE(3784)] = 172002, + [SMALL_STATE(3785)] = 172015, + [SMALL_STATE(3786)] = 172028, + [SMALL_STATE(3787)] = 172041, + [SMALL_STATE(3788)] = 172054, + [SMALL_STATE(3789)] = 172067, + [SMALL_STATE(3790)] = 172080, + [SMALL_STATE(3791)] = 172093, + [SMALL_STATE(3792)] = 172106, + [SMALL_STATE(3793)] = 172119, + [SMALL_STATE(3794)] = 172132, + [SMALL_STATE(3795)] = 172145, + [SMALL_STATE(3796)] = 172158, + [SMALL_STATE(3797)] = 172169, + [SMALL_STATE(3798)] = 172182, + [SMALL_STATE(3799)] = 172195, + [SMALL_STATE(3800)] = 172208, + [SMALL_STATE(3801)] = 172221, + [SMALL_STATE(3802)] = 172234, + [SMALL_STATE(3803)] = 172245, + [SMALL_STATE(3804)] = 172258, + [SMALL_STATE(3805)] = 172271, + [SMALL_STATE(3806)] = 172284, + [SMALL_STATE(3807)] = 172297, + [SMALL_STATE(3808)] = 172310, + [SMALL_STATE(3809)] = 172323, + [SMALL_STATE(3810)] = 172336, + [SMALL_STATE(3811)] = 172349, + [SMALL_STATE(3812)] = 172362, + [SMALL_STATE(3813)] = 172375, + [SMALL_STATE(3814)] = 172388, + [SMALL_STATE(3815)] = 172401, + [SMALL_STATE(3816)] = 172414, + [SMALL_STATE(3817)] = 172427, + [SMALL_STATE(3818)] = 172440, + [SMALL_STATE(3819)] = 172451, + [SMALL_STATE(3820)] = 172464, + [SMALL_STATE(3821)] = 172477, + [SMALL_STATE(3822)] = 172490, + [SMALL_STATE(3823)] = 172503, + [SMALL_STATE(3824)] = 172516, + [SMALL_STATE(3825)] = 172529, + [SMALL_STATE(3826)] = 172542, + [SMALL_STATE(3827)] = 172555, + [SMALL_STATE(3828)] = 172568, + [SMALL_STATE(3829)] = 172581, + [SMALL_STATE(3830)] = 172594, + [SMALL_STATE(3831)] = 172607, + [SMALL_STATE(3832)] = 172620, + [SMALL_STATE(3833)] = 172633, + [SMALL_STATE(3834)] = 172646, + [SMALL_STATE(3835)] = 172659, + [SMALL_STATE(3836)] = 172672, + [SMALL_STATE(3837)] = 172685, + [SMALL_STATE(3838)] = 172698, + [SMALL_STATE(3839)] = 172709, + [SMALL_STATE(3840)] = 172722, + [SMALL_STATE(3841)] = 172735, + [SMALL_STATE(3842)] = 172748, + [SMALL_STATE(3843)] = 172761, + [SMALL_STATE(3844)] = 172774, + [SMALL_STATE(3845)] = 172787, + [SMALL_STATE(3846)] = 172800, + [SMALL_STATE(3847)] = 172813, + [SMALL_STATE(3848)] = 172826, + [SMALL_STATE(3849)] = 172839, + [SMALL_STATE(3850)] = 172852, + [SMALL_STATE(3851)] = 172865, + [SMALL_STATE(3852)] = 172878, + [SMALL_STATE(3853)] = 172891, + [SMALL_STATE(3854)] = 172904, + [SMALL_STATE(3855)] = 172917, + [SMALL_STATE(3856)] = 172930, + [SMALL_STATE(3857)] = 172943, + [SMALL_STATE(3858)] = 172956, + [SMALL_STATE(3859)] = 172969, + [SMALL_STATE(3860)] = 172982, + [SMALL_STATE(3861)] = 172995, + [SMALL_STATE(3862)] = 173008, + [SMALL_STATE(3863)] = 173021, + [SMALL_STATE(3864)] = 173032, + [SMALL_STATE(3865)] = 173045, + [SMALL_STATE(3866)] = 173056, + [SMALL_STATE(3867)] = 173069, + [SMALL_STATE(3868)] = 173082, + [SMALL_STATE(3869)] = 173095, + [SMALL_STATE(3870)] = 173108, + [SMALL_STATE(3871)] = 173121, + [SMALL_STATE(3872)] = 173134, + [SMALL_STATE(3873)] = 173147, + [SMALL_STATE(3874)] = 173160, + [SMALL_STATE(3875)] = 173173, + [SMALL_STATE(3876)] = 173186, + [SMALL_STATE(3877)] = 173199, + [SMALL_STATE(3878)] = 173210, + [SMALL_STATE(3879)] = 173223, + [SMALL_STATE(3880)] = 173236, + [SMALL_STATE(3881)] = 173249, + [SMALL_STATE(3882)] = 173262, + [SMALL_STATE(3883)] = 173275, + [SMALL_STATE(3884)] = 173288, + [SMALL_STATE(3885)] = 173301, + [SMALL_STATE(3886)] = 173314, + [SMALL_STATE(3887)] = 173327, + [SMALL_STATE(3888)] = 173340, + [SMALL_STATE(3889)] = 173353, + [SMALL_STATE(3890)] = 173366, + [SMALL_STATE(3891)] = 173379, + [SMALL_STATE(3892)] = 173392, + [SMALL_STATE(3893)] = 173405, + [SMALL_STATE(3894)] = 173413, + [SMALL_STATE(3895)] = 173423, + [SMALL_STATE(3896)] = 173433, + [SMALL_STATE(3897)] = 173441, + [SMALL_STATE(3898)] = 173449, + [SMALL_STATE(3899)] = 173457, + [SMALL_STATE(3900)] = 173465, + [SMALL_STATE(3901)] = 173473, + [SMALL_STATE(3902)] = 173481, + [SMALL_STATE(3903)] = 173489, + [SMALL_STATE(3904)] = 173499, + [SMALL_STATE(3905)] = 173507, + [SMALL_STATE(3906)] = 173517, + [SMALL_STATE(3907)] = 173527, + [SMALL_STATE(3908)] = 173535, + [SMALL_STATE(3909)] = 173545, + [SMALL_STATE(3910)] = 173553, + [SMALL_STATE(3911)] = 173563, + [SMALL_STATE(3912)] = 173573, + [SMALL_STATE(3913)] = 173583, + [SMALL_STATE(3914)] = 173593, + [SMALL_STATE(3915)] = 173601, + [SMALL_STATE(3916)] = 173611, + [SMALL_STATE(3917)] = 173621, + [SMALL_STATE(3918)] = 173631, + [SMALL_STATE(3919)] = 173641, + [SMALL_STATE(3920)] = 173649, + [SMALL_STATE(3921)] = 173659, + [SMALL_STATE(3922)] = 173667, + [SMALL_STATE(3923)] = 173677, + [SMALL_STATE(3924)] = 173685, + [SMALL_STATE(3925)] = 173693, + [SMALL_STATE(3926)] = 173703, + [SMALL_STATE(3927)] = 173711, + [SMALL_STATE(3928)] = 173719, + [SMALL_STATE(3929)] = 173727, + [SMALL_STATE(3930)] = 173735, + [SMALL_STATE(3931)] = 173745, + [SMALL_STATE(3932)] = 173755, + [SMALL_STATE(3933)] = 173763, + [SMALL_STATE(3934)] = 173773, + [SMALL_STATE(3935)] = 173783, + [SMALL_STATE(3936)] = 173793, + [SMALL_STATE(3937)] = 173801, + [SMALL_STATE(3938)] = 173809, + [SMALL_STATE(3939)] = 173819, + [SMALL_STATE(3940)] = 173829, + [SMALL_STATE(3941)] = 173837, + [SMALL_STATE(3942)] = 173847, + [SMALL_STATE(3943)] = 173855, + [SMALL_STATE(3944)] = 173865, + [SMALL_STATE(3945)] = 173875, + [SMALL_STATE(3946)] = 173883, + [SMALL_STATE(3947)] = 173893, + [SMALL_STATE(3948)] = 173903, + [SMALL_STATE(3949)] = 173913, + [SMALL_STATE(3950)] = 173923, + [SMALL_STATE(3951)] = 173933, + [SMALL_STATE(3952)] = 173941, + [SMALL_STATE(3953)] = 173951, + [SMALL_STATE(3954)] = 173961, + [SMALL_STATE(3955)] = 173969, + [SMALL_STATE(3956)] = 173979, + [SMALL_STATE(3957)] = 173989, + [SMALL_STATE(3958)] = 173997, + [SMALL_STATE(3959)] = 174005, + [SMALL_STATE(3960)] = 174015, + [SMALL_STATE(3961)] = 174023, + [SMALL_STATE(3962)] = 174033, + [SMALL_STATE(3963)] = 174041, + [SMALL_STATE(3964)] = 174049, + [SMALL_STATE(3965)] = 174057, + [SMALL_STATE(3966)] = 174065, + [SMALL_STATE(3967)] = 174073, + [SMALL_STATE(3968)] = 174083, + [SMALL_STATE(3969)] = 174091, + [SMALL_STATE(3970)] = 174101, + [SMALL_STATE(3971)] = 174109, + [SMALL_STATE(3972)] = 174117, + [SMALL_STATE(3973)] = 174125, + [SMALL_STATE(3974)] = 174133, + [SMALL_STATE(3975)] = 174141, + [SMALL_STATE(3976)] = 174151, + [SMALL_STATE(3977)] = 174161, + [SMALL_STATE(3978)] = 174169, + [SMALL_STATE(3979)] = 174177, + [SMALL_STATE(3980)] = 174185, + [SMALL_STATE(3981)] = 174195, + [SMALL_STATE(3982)] = 174205, + [SMALL_STATE(3983)] = 174215, + [SMALL_STATE(3984)] = 174225, + [SMALL_STATE(3985)] = 174233, + [SMALL_STATE(3986)] = 174243, + [SMALL_STATE(3987)] = 174253, + [SMALL_STATE(3988)] = 174263, + [SMALL_STATE(3989)] = 174273, + [SMALL_STATE(3990)] = 174281, + [SMALL_STATE(3991)] = 174289, + [SMALL_STATE(3992)] = 174299, + [SMALL_STATE(3993)] = 174309, + [SMALL_STATE(3994)] = 174317, + [SMALL_STATE(3995)] = 174327, + [SMALL_STATE(3996)] = 174337, + [SMALL_STATE(3997)] = 174347, + [SMALL_STATE(3998)] = 174355, + [SMALL_STATE(3999)] = 174365, + [SMALL_STATE(4000)] = 174373, + [SMALL_STATE(4001)] = 174381, + [SMALL_STATE(4002)] = 174389, + [SMALL_STATE(4003)] = 174399, + [SMALL_STATE(4004)] = 174409, + [SMALL_STATE(4005)] = 174419, + [SMALL_STATE(4006)] = 174429, + [SMALL_STATE(4007)] = 174439, + [SMALL_STATE(4008)] = 174447, + [SMALL_STATE(4009)] = 174457, + [SMALL_STATE(4010)] = 174465, + [SMALL_STATE(4011)] = 174475, + [SMALL_STATE(4012)] = 174485, + [SMALL_STATE(4013)] = 174493, + [SMALL_STATE(4014)] = 174501, + [SMALL_STATE(4015)] = 174511, + [SMALL_STATE(4016)] = 174521, + [SMALL_STATE(4017)] = 174529, + [SMALL_STATE(4018)] = 174537, + [SMALL_STATE(4019)] = 174547, + [SMALL_STATE(4020)] = 174555, + [SMALL_STATE(4021)] = 174565, + [SMALL_STATE(4022)] = 174573, + [SMALL_STATE(4023)] = 174581, + [SMALL_STATE(4024)] = 174591, + [SMALL_STATE(4025)] = 174601, + [SMALL_STATE(4026)] = 174609, + [SMALL_STATE(4027)] = 174619, + [SMALL_STATE(4028)] = 174629, + [SMALL_STATE(4029)] = 174637, + [SMALL_STATE(4030)] = 174647, + [SMALL_STATE(4031)] = 174655, + [SMALL_STATE(4032)] = 174665, + [SMALL_STATE(4033)] = 174673, + [SMALL_STATE(4034)] = 174683, + [SMALL_STATE(4035)] = 174693, + [SMALL_STATE(4036)] = 174701, + [SMALL_STATE(4037)] = 174711, + [SMALL_STATE(4038)] = 174721, + [SMALL_STATE(4039)] = 174729, + [SMALL_STATE(4040)] = 174739, + [SMALL_STATE(4041)] = 174749, + [SMALL_STATE(4042)] = 174757, + [SMALL_STATE(4043)] = 174765, + [SMALL_STATE(4044)] = 174775, + [SMALL_STATE(4045)] = 174785, + [SMALL_STATE(4046)] = 174795, + [SMALL_STATE(4047)] = 174803, + [SMALL_STATE(4048)] = 174811, + [SMALL_STATE(4049)] = 174818, + [SMALL_STATE(4050)] = 174825, + [SMALL_STATE(4051)] = 174832, + [SMALL_STATE(4052)] = 174839, + [SMALL_STATE(4053)] = 174846, + [SMALL_STATE(4054)] = 174853, + [SMALL_STATE(4055)] = 174860, + [SMALL_STATE(4056)] = 174867, + [SMALL_STATE(4057)] = 174874, + [SMALL_STATE(4058)] = 174881, + [SMALL_STATE(4059)] = 174888, + [SMALL_STATE(4060)] = 174895, + [SMALL_STATE(4061)] = 174902, + [SMALL_STATE(4062)] = 174909, + [SMALL_STATE(4063)] = 174916, + [SMALL_STATE(4064)] = 174923, + [SMALL_STATE(4065)] = 174930, + [SMALL_STATE(4066)] = 174937, + [SMALL_STATE(4067)] = 174944, + [SMALL_STATE(4068)] = 174951, + [SMALL_STATE(4069)] = 174958, + [SMALL_STATE(4070)] = 174965, + [SMALL_STATE(4071)] = 174972, + [SMALL_STATE(4072)] = 174979, + [SMALL_STATE(4073)] = 174986, + [SMALL_STATE(4074)] = 174993, + [SMALL_STATE(4075)] = 175000, + [SMALL_STATE(4076)] = 175007, + [SMALL_STATE(4077)] = 175014, + [SMALL_STATE(4078)] = 175021, + [SMALL_STATE(4079)] = 175028, + [SMALL_STATE(4080)] = 175035, + [SMALL_STATE(4081)] = 175042, + [SMALL_STATE(4082)] = 175049, + [SMALL_STATE(4083)] = 175056, + [SMALL_STATE(4084)] = 175063, + [SMALL_STATE(4085)] = 175070, + [SMALL_STATE(4086)] = 175077, + [SMALL_STATE(4087)] = 175084, + [SMALL_STATE(4088)] = 175091, + [SMALL_STATE(4089)] = 175098, + [SMALL_STATE(4090)] = 175105, + [SMALL_STATE(4091)] = 175112, + [SMALL_STATE(4092)] = 175119, + [SMALL_STATE(4093)] = 175126, + [SMALL_STATE(4094)] = 175133, + [SMALL_STATE(4095)] = 175140, + [SMALL_STATE(4096)] = 175147, + [SMALL_STATE(4097)] = 175154, + [SMALL_STATE(4098)] = 175161, + [SMALL_STATE(4099)] = 175168, + [SMALL_STATE(4100)] = 175175, + [SMALL_STATE(4101)] = 175182, + [SMALL_STATE(4102)] = 175189, + [SMALL_STATE(4103)] = 175196, + [SMALL_STATE(4104)] = 175203, + [SMALL_STATE(4105)] = 175210, + [SMALL_STATE(4106)] = 175217, + [SMALL_STATE(4107)] = 175224, + [SMALL_STATE(4108)] = 175231, + [SMALL_STATE(4109)] = 175238, + [SMALL_STATE(4110)] = 175245, + [SMALL_STATE(4111)] = 175252, + [SMALL_STATE(4112)] = 175259, + [SMALL_STATE(4113)] = 175266, + [SMALL_STATE(4114)] = 175273, + [SMALL_STATE(4115)] = 175280, + [SMALL_STATE(4116)] = 175287, + [SMALL_STATE(4117)] = 175294, + [SMALL_STATE(4118)] = 175301, + [SMALL_STATE(4119)] = 175308, + [SMALL_STATE(4120)] = 175315, + [SMALL_STATE(4121)] = 175322, + [SMALL_STATE(4122)] = 175329, + [SMALL_STATE(4123)] = 175336, + [SMALL_STATE(4124)] = 175343, + [SMALL_STATE(4125)] = 175350, + [SMALL_STATE(4126)] = 175357, + [SMALL_STATE(4127)] = 175364, + [SMALL_STATE(4128)] = 175371, + [SMALL_STATE(4129)] = 175378, + [SMALL_STATE(4130)] = 175385, + [SMALL_STATE(4131)] = 175392, + [SMALL_STATE(4132)] = 175399, + [SMALL_STATE(4133)] = 175406, + [SMALL_STATE(4134)] = 175413, + [SMALL_STATE(4135)] = 175420, + [SMALL_STATE(4136)] = 175427, + [SMALL_STATE(4137)] = 175434, + [SMALL_STATE(4138)] = 175441, + [SMALL_STATE(4139)] = 175448, + [SMALL_STATE(4140)] = 175455, + [SMALL_STATE(4141)] = 175462, + [SMALL_STATE(4142)] = 175469, + [SMALL_STATE(4143)] = 175476, + [SMALL_STATE(4144)] = 175483, + [SMALL_STATE(4145)] = 175490, + [SMALL_STATE(4146)] = 175497, + [SMALL_STATE(4147)] = 175504, + [SMALL_STATE(4148)] = 175511, + [SMALL_STATE(4149)] = 175518, + [SMALL_STATE(4150)] = 175525, + [SMALL_STATE(4151)] = 175532, + [SMALL_STATE(4152)] = 175539, + [SMALL_STATE(4153)] = 175546, + [SMALL_STATE(4154)] = 175553, + [SMALL_STATE(4155)] = 175560, + [SMALL_STATE(4156)] = 175567, + [SMALL_STATE(4157)] = 175574, + [SMALL_STATE(4158)] = 175581, + [SMALL_STATE(4159)] = 175588, + [SMALL_STATE(4160)] = 175595, + [SMALL_STATE(4161)] = 175602, + [SMALL_STATE(4162)] = 175609, + [SMALL_STATE(4163)] = 175616, + [SMALL_STATE(4164)] = 175623, + [SMALL_STATE(4165)] = 175630, + [SMALL_STATE(4166)] = 175637, + [SMALL_STATE(4167)] = 175644, + [SMALL_STATE(4168)] = 175651, + [SMALL_STATE(4169)] = 175658, + [SMALL_STATE(4170)] = 175665, + [SMALL_STATE(4171)] = 175672, + [SMALL_STATE(4172)] = 175679, + [SMALL_STATE(4173)] = 175686, + [SMALL_STATE(4174)] = 175693, + [SMALL_STATE(4175)] = 175700, + [SMALL_STATE(4176)] = 175707, + [SMALL_STATE(4177)] = 175714, + [SMALL_STATE(4178)] = 175721, + [SMALL_STATE(4179)] = 175728, + [SMALL_STATE(4180)] = 175735, + [SMALL_STATE(4181)] = 175742, + [SMALL_STATE(4182)] = 175749, + [SMALL_STATE(4183)] = 175756, + [SMALL_STATE(4184)] = 175763, + [SMALL_STATE(4185)] = 175770, + [SMALL_STATE(4186)] = 175777, + [SMALL_STATE(4187)] = 175784, + [SMALL_STATE(4188)] = 175791, + [SMALL_STATE(4189)] = 175798, + [SMALL_STATE(4190)] = 175805, + [SMALL_STATE(4191)] = 175812, + [SMALL_STATE(4192)] = 175819, + [SMALL_STATE(4193)] = 175826, + [SMALL_STATE(4194)] = 175833, + [SMALL_STATE(4195)] = 175840, + [SMALL_STATE(4196)] = 175847, + [SMALL_STATE(4197)] = 175854, + [SMALL_STATE(4198)] = 175861, + [SMALL_STATE(4199)] = 175868, + [SMALL_STATE(4200)] = 175875, + [SMALL_STATE(4201)] = 175882, + [SMALL_STATE(4202)] = 175889, + [SMALL_STATE(4203)] = 175896, + [SMALL_STATE(4204)] = 175903, + [SMALL_STATE(4205)] = 175910, + [SMALL_STATE(4206)] = 175917, + [SMALL_STATE(4207)] = 175924, + [SMALL_STATE(4208)] = 175931, + [SMALL_STATE(4209)] = 175938, + [SMALL_STATE(4210)] = 175945, + [SMALL_STATE(4211)] = 175952, + [SMALL_STATE(4212)] = 175959, + [SMALL_STATE(4213)] = 175966, + [SMALL_STATE(4214)] = 175973, + [SMALL_STATE(4215)] = 175980, + [SMALL_STATE(4216)] = 175987, + [SMALL_STATE(4217)] = 175994, + [SMALL_STATE(4218)] = 176001, + [SMALL_STATE(4219)] = 176008, + [SMALL_STATE(4220)] = 176015, + [SMALL_STATE(4221)] = 176022, + [SMALL_STATE(4222)] = 176029, + [SMALL_STATE(4223)] = 176036, + [SMALL_STATE(4224)] = 176043, + [SMALL_STATE(4225)] = 176050, + [SMALL_STATE(4226)] = 176057, + [SMALL_STATE(4227)] = 176064, + [SMALL_STATE(4228)] = 176071, + [SMALL_STATE(4229)] = 176078, + [SMALL_STATE(4230)] = 176085, + [SMALL_STATE(4231)] = 176092, + [SMALL_STATE(4232)] = 176099, + [SMALL_STATE(4233)] = 176106, + [SMALL_STATE(4234)] = 176113, + [SMALL_STATE(4235)] = 176120, + [SMALL_STATE(4236)] = 176127, + [SMALL_STATE(4237)] = 176134, + [SMALL_STATE(4238)] = 176141, + [SMALL_STATE(4239)] = 176148, + [SMALL_STATE(4240)] = 176155, + [SMALL_STATE(4241)] = 176162, + [SMALL_STATE(4242)] = 176169, + [SMALL_STATE(4243)] = 176176, + [SMALL_STATE(4244)] = 176183, + [SMALL_STATE(4245)] = 176190, + [SMALL_STATE(4246)] = 176197, + [SMALL_STATE(4247)] = 176204, + [SMALL_STATE(4248)] = 176211, + [SMALL_STATE(4249)] = 176218, + [SMALL_STATE(4250)] = 176225, + [SMALL_STATE(4251)] = 176232, + [SMALL_STATE(4252)] = 176239, + [SMALL_STATE(4253)] = 176246, + [SMALL_STATE(4254)] = 176253, + [SMALL_STATE(4255)] = 176260, + [SMALL_STATE(4256)] = 176267, + [SMALL_STATE(4257)] = 176274, + [SMALL_STATE(4258)] = 176281, + [SMALL_STATE(4259)] = 176288, + [SMALL_STATE(4260)] = 176295, + [SMALL_STATE(4261)] = 176302, + [SMALL_STATE(4262)] = 176309, + [SMALL_STATE(4263)] = 176316, + [SMALL_STATE(4264)] = 176323, + [SMALL_STATE(4265)] = 176330, + [SMALL_STATE(4266)] = 176337, + [SMALL_STATE(4267)] = 176344, + [SMALL_STATE(4268)] = 176351, + [SMALL_STATE(4269)] = 176358, + [SMALL_STATE(4270)] = 176365, + [SMALL_STATE(4271)] = 176372, + [SMALL_STATE(4272)] = 176379, + [SMALL_STATE(4273)] = 176386, + [SMALL_STATE(4274)] = 176393, + [SMALL_STATE(4275)] = 176400, + [SMALL_STATE(4276)] = 176407, + [SMALL_STATE(4277)] = 176414, + [SMALL_STATE(4278)] = 176421, + [SMALL_STATE(4279)] = 176428, + [SMALL_STATE(4280)] = 176435, + [SMALL_STATE(4281)] = 176442, + [SMALL_STATE(4282)] = 176449, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -132828,3865 +181533,4814 @@ 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(375), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 38), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 63), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 31), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 32), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 47), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 51), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 39), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 60), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(316), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3329), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3532), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1591), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(147), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(153), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2367), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(139), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3383), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(46), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(279), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1590), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1589), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(188), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(258), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2372), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2716), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(491), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2823), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(519), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2566), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(131), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(130), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(129), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2856), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3141), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(316), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3329), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3532), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1591), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(147), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(153), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2367), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(139), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3383), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(46), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(279), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1590), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1589), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(188), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(258), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2372), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2716), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(491), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2823), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(519), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2566), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(131), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(130), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(129), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2856), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3141), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(294), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2704), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(288), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2852), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2531), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(52), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(51), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(56), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(175), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3209), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(379), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2701), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(333), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2847), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2558), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(84), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(37), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(176), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3228), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(300), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2311), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2719), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(293), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2834), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2571), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(55), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(54), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(59), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(436), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2685), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(545), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2793), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2547), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(122), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(120), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(119), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(184), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3129), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 1), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 1), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(527), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2735), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(496), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2842), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2548), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(89), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(88), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(90), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(201), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3160), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 8), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 8), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(377), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2646), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(386), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2808), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2604), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(49), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(48), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(53), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(214), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(373), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2286), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2733), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(303), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2839), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2540), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(36), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(96), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(43), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(472), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2309), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2720), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(477), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2801), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2551), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(38), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(39), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(40), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(537), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2298), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2716), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(491), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2823), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2566), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(131), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(130), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(129), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(497), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2692), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2838), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2564), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(141), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(142), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(80), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(245), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(595), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2721), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(689), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2835), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2554), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(86), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(85), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(87), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(261), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(741), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2666), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2797), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2561), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(262), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2472), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2443), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2442), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 40), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 40), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [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(aux_sym__literal_repeat1, 2), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(457), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2485), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 34), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 34), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2482), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(424), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2445), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2494), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(754), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(750), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(725), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2460), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2451), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2473), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(566), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2441), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2457), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2466), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(852), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2458), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2454), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(863), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(854), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(803), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2450), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(777), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(798), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(900), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(906), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(907), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(903), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2170), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1461), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2679), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2108), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2828), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2596), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(82), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(81), - [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(83), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2419), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3442), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2358), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2755), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2386), - [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3486), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2405), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2781), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2399), - [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2390), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2756), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2424), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3430), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2387), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2759), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2461), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2372), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2856), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3098), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1727), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 29), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 29), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 30), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 30), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1841), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2477), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2490), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2678), - [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2439), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2790), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2536), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71), - [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), - [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(72), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1833), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2444), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2437), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 73), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 73), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 28), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 28), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2455), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 29), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 29), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1999), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 33), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 33), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1979), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 88), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 88), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 75), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 75), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 74), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 74), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 72), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 72), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 35), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 35), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 57), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 57), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 56), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 56), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 36), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 36), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 44), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 44), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2467), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 43), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 43), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2180), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 37), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2990), - [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2389), - [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2749), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2992), - [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2851), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2990), - [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2590), - [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), - [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), - [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(93), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2121), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2434), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2462), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2296), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2449), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 37), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2254), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2526), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2636), - [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2527), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2800), - [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2526), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2550), - [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), - [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2414), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2456), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2523), - [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2475), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 89), - [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 60), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 91), - [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 63), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 86), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 51), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 84), - [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 47), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 45), - [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 38), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 82), - [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 63), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 80), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 32), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 66), - [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 47), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 49), - [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 39), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 78), - [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 60), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 58), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 76), - [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 31), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 61), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2741), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 68), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 39), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 64), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 38), - [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 70), - [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 51), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 79), - [5920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 79), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 71), - [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 71), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 69), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 69), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 67), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 67), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 65), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 65), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 85), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 85), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 59), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 59), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 77), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 77), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 50), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 50), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 81), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 81), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 89), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 46), - [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 46), - [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 91), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 86), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 83), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 83), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 84), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 82), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 80), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 78), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 62), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 62), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 76), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 70), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 68), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 66), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 90), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 90), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 58), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 45), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 64), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 49), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 87), - [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 87), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 92), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 92), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 61), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [6630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2791), - [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2534), - [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(58), - [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(57), - [6642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2795), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2758), - [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2867), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2601), - [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(111), - [6749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(110), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [6862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2432), - [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), - [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2954), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), - [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [6958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(150), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 51), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 60), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 63), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 47), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 39), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 38), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3225), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 31), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 32), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3330), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2431), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 48), SHIFT_REPEAT(2397), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 48), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [7939] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), + [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 46), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 42), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 57), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 33), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 54), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 34), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 27), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 28), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(603), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4043), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4246), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2247), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(205), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(198), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2755), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(184), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4085), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(165), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(424), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2197), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2250), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(322), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(411), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2743), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2743), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(175), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3241), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1425), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3324), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1166), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1166), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3118), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(174), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(171), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1169), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3402), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3818), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(603), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4043), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4246), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2247), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(205), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(198), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2755), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(184), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4085), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(165), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(424), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2197), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2250), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(322), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(411), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2743), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2743), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(175), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3241), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1425), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3324), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1166), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1166), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3118), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(174), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(171), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1169), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3402), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3818), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2908), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 17), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 17), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(271), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2901), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 29), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 29), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 36), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 36), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 29), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 29), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 47), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 47), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 29), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 29), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 29), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 29), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(300), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(472), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(118), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(449), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3342), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3115), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(135), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(117), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(305), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(471), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3796), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(914), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(168), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3321), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(532), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3348), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3222), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(177), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(164), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(913), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3865), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 9), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 9), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(961), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(146), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3309), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1201), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3355), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3153), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(145), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(144), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(317), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(962), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3638), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(451), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2618), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(114), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3254), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(459), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3371), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3097), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(119), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(111), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(454), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1193), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3232), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1493), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3389), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3133), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(327), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1194), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3705), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(818), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(131), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3243), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(572), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3352), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3147), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(147), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(123), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(338), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(819), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(905), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2612), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(162), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3258), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(536), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3370), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3092), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(169), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(158), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(904), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1217), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2667), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(175), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3241), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1425), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3324), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3118), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(174), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(171), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1222), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(974), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2707), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(172), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3307), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(942), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3368), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(3142), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(167), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(166), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(975), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(990), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(173), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3234), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(999), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3330), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3114), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(191), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(170), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(386), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(991), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1910), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(102), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3267), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1660), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3357), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3215), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(395), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1911), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1650), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(142), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3279), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1848), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3362), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3190), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(141), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(140), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(405), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1651), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2880), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(484), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 8), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 8), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2840), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2865), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2966), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2986), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2954), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2887), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2848), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1158), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1195), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1229), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 39), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2842), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1645), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1657), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2983), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2939), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2957), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1774), + [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1775), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2882), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1815), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1870), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2928), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2252), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1373), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1724), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), + [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(1373), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(95), + [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3255), + [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2259), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3385), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2252), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(3149), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(94), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(96), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 2), SHIFT_REPEAT(2257), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2926), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1729), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2971), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2012), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2103), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2864), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2083), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 1), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 1), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2070), + [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2942), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2838), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1958), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2969), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1927), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 39), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2154), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2161), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2142), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2144), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2960), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat2, 1, .production_id = 1), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat2, 1, .production_id = 1), + [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), + [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2298), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2990), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(86), + [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3236), + [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2992), + [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3336), + [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3197), + [5653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(85), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(87), + [5659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2991), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2812), + [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4144), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2762), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3327), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [5698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2743), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2743), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3402), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3695), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2835), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4255), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2767), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3334), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2953), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2833), + [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2825), + [5877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3386), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2517), + [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2514), + [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2921), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2785), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4129), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2729), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3374), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 31), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 31), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), + [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 32), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3573), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2830), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [6088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3294), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3549), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3375), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3573), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3223), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3563), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2662), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2927), + [6216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3047), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), + [6224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3294), + [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3031), + [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3375), + [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3047), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3223), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(88), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(90), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3042), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 31), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, .production_id = 31), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 28), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 28), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 35), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 28), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 28), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 27), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 27), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 37), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 37), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [6408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 87), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 87), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 28), + [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 28), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 38), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 38), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 92), + [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 92), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [6526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), + [6538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 27), + [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 27), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 86), + [6578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 86), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 85), + [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 85), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 84), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 84), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 27), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 27), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 71), + [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 71), + [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 27), + [6650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 27), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 70), + [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 70), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 69), + [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 69), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 30), + [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 30), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 27), + [6780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 27), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 28), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 28), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 68), + [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 68), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 67), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 67), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 66), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 66), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2981), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 28), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 28), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2738), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 48), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 48), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 49), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 49), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 50), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 50), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 51), + [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 51), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [6952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2955), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [7571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3026), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2968), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3078), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 60), + [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 42), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 60), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 78), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 57), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 78), + [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 64), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 46), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 64), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 62), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 34), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 62), + [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 90), + [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 57), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 90), + [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 88), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 54), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 88), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 80), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 42), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 80), + [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 58), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 33), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 58), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 74), + [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 54), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 74), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 55), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 28), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 55), + [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 76), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 28), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 76), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 40), + [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 33), + [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 40), + [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 82), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 46), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 82), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 52), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 27), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 52), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 44), + [7684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 34), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 44), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 72), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 27), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 72), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 65), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 65), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 81), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 81), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 83), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 83), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 73), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 73), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 61), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 61), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 77), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 77), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 45), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 45), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 75), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 75), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 41), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 41), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 89), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 89), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 53), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 53), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 79), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 79), + [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 91), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 91), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 63), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 63), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 56), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 56), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 59), + [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 59), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), + [8454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3226), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [8677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(76), + [8680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3326), + [8683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [8685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3433), + [8688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3157), + [8691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(189), + [8921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3394), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3095), + [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(116), + [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3398), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [8965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3465), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2878), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [9017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), + [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [9087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(193), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 34), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 42), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 28), + [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 27), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 57), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [9198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 27), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 46), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 28), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 33), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 54), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [9278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3877), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4008), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2890), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2931), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 43), SHIFT_REPEAT(2764), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 43), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [9889] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac10..d2103259 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -140,7 +139,8 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; + lookahead = lexer->lookahead; \ + eof = lexer->eof(lexer); #define ADVANCE(state_value) \ { \ @@ -166,7 +166,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} From 9c2c5d920909dad9e78c17fbe8cd6b589913dd73 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 13:58:13 -0400 Subject: [PATCH 13/16] chore: move corpus to test/ --- {corpus => test/corpus}/commands.txt | 0 {corpus => test/corpus}/crlf.txt | 0 {corpus => test/corpus}/literals.txt | 0 {corpus => test/corpus}/programs.txt | 0 {corpus => test/corpus}/statements.txt | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {corpus => test/corpus}/commands.txt (100%) rename {corpus => test/corpus}/crlf.txt (100%) rename {corpus => test/corpus}/literals.txt (100%) rename {corpus => test/corpus}/programs.txt (100%) rename {corpus => test/corpus}/statements.txt (100%) diff --git a/corpus/commands.txt b/test/corpus/commands.txt similarity index 100% rename from corpus/commands.txt rename to test/corpus/commands.txt diff --git a/corpus/crlf.txt b/test/corpus/crlf.txt similarity index 100% rename from corpus/crlf.txt rename to test/corpus/crlf.txt diff --git a/corpus/literals.txt b/test/corpus/literals.txt similarity index 100% rename from corpus/literals.txt rename to test/corpus/literals.txt diff --git a/corpus/programs.txt b/test/corpus/programs.txt similarity index 100% rename from corpus/programs.txt rename to test/corpus/programs.txt diff --git a/corpus/statements.txt b/test/corpus/statements.txt similarity index 100% rename from corpus/statements.txt rename to test/corpus/statements.txt From 6f7aab758b04e6766034b4b5d0a735e0f9b4efb7 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 14:16:47 -0400 Subject: [PATCH 14/16] feat: add and apply eslint formatting --- .eslintrc.js | 20 +++++ grammar.js | 205 ++++++++++++++++++++++++++++----------------------- package.json | 8 +- 3 files changed, 139 insertions(+), 94 deletions(-) create mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..b2e707a9 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,20 @@ +module.exports = { + 'env': { + 'commonjs': true, + 'es2021': true, + }, + 'extends': 'google', + 'overrides': [ + ], + 'parserOptions': { + 'ecmaVersion': 'latest', + 'sourceType': 'module', + }, + 'rules': { + 'indent': ['error', 2, {'SwitchCase': 1}], + 'max-len': [ + 'error', + {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, + ], + }, +}; diff --git a/grammar.js b/grammar.js index bceb5933..a2529968 100644 --- a/grammar.js +++ b/grammar.js @@ -1,5 +1,17 @@ +/** + * @file Bash grammar for tree-sitter + * @author Max Brunsfeld + * @license MIT + */ + +/* eslint-disable arrow-parens */ +/* eslint-disable camelcase */ +/* eslint-disable-next-line spaced-comment */ +/// +// @ts-check + const SPECIAL_CHARACTERS = [ - "'", '"', + '\'', '"', '<', '>', '{', '}', '\\[', '\\]', @@ -49,7 +61,7 @@ module.exports = grammar({ $.comment, /\s/, /\\\r?\n/, - /\\( |\t|\v|\f)/ + /\\( |\t|\v|\f)/, ], supertypes: $ => [ @@ -67,22 +79,22 @@ module.exports = grammar({ repeat(seq( $._statement, optional(seq('\n', $.heredoc_body)), - $._terminator + $._terminator, )), $._statement, optional(seq('\n', $.heredoc_body)), - optional($._terminator) + optional($._terminator), )), _statements2: $ => repeat1(seq( $._statement, optional(seq('\n', $.heredoc_body)), - $._terminator + $._terminator, )), _terminated_statement: $ => seq( $._statement, - $._terminator + $._terminator, ), // Statements @@ -104,7 +116,7 @@ module.exports = grammar({ $.list, $.subshell, $.compound_statement, - $.function_definition + $.function_definition, ), redirected_statement: $ => prec(-1, seq( @@ -112,8 +124,8 @@ module.exports = grammar({ field('redirect', repeat1(choice( $.file_redirect, $.heredoc_redirect, - $.herestring_redirect - ))) + $.herestring_redirect, + ))), )), for_statement: $ => seq( @@ -121,10 +133,10 @@ module.exports = grammar({ field('variable', $._simple_variable_name), optional(seq( 'in', - field('value', repeat1($._literal)) + field('value', repeat1($._literal)), )), $._terminator, - field('body', $.do_group) + field('body', $.do_group), ), c_style_for_statement: $ => seq( @@ -139,20 +151,20 @@ module.exports = grammar({ optional(';'), field('body', choice( $.do_group, - $.compound_statement - )) + $.compound_statement, + )), ), while_statement: $ => seq( choice('while', 'until'), field('condition', $._terminated_statement), - field('body', $.do_group) + field('body', $.do_group), ), do_group: $ => seq( 'do', optional($._statements2), - 'done' + 'done', ), if_statement: $ => seq( @@ -162,19 +174,19 @@ module.exports = grammar({ optional($._statements2), repeat($.elif_clause), optional($.else_clause), - 'fi' + 'fi', ), elif_clause: $ => seq( 'elif', $._terminated_statement, 'then', - optional($._statements2) + optional($._statements2), ), else_clause: $ => seq( 'else', - optional($._statements2) + optional($._statements2), ), case_statement: $ => seq( @@ -187,7 +199,7 @@ module.exports = grammar({ repeat($.case_item), alias($.last_case_item, $.case_item), )), - 'esac' + 'esac', ), case_item: $ => seq( @@ -198,8 +210,8 @@ module.exports = grammar({ optional($._statements), prec(1, choice( field('termination', ';;'), - field('fallthrough', choice(';&', ';;&')) - )) + field('fallthrough', choice(';&', ';;&')), + )), ), last_case_item: $ => seq( @@ -208,7 +220,7 @@ module.exports = grammar({ repeat(seq('|', field('value', $._literal))), ')', optional($._statements), - optional(prec(1, ';;')) + optional(prec(1, ';;')), ), function_definition: $ => seq( @@ -216,44 +228,44 @@ module.exports = grammar({ seq( 'function', field('name', $.word), - optional(seq('(', ')')) + optional(seq('(', ')')), ), seq( field('name', $.word), - '(', ')' - ) + '(', ')', + ), ), field( 'body', choice( $.compound_statement, $.subshell, - $.test_command) - ) + $.test_command), + ), ), compound_statement: $ => seq( '{', optional($._statements2), - '}' + '}', ), subshell: $ => seq( '(', $._statements, - ')' + ')', ), pipeline: $ => prec.left(1, seq( $._statement, choice('|', '|&'), - $._statement + $._statement, )), list: $ => prec.left(-1, seq( $._statement, choice('&&', '||'), - $._statement + $._statement, )), // Commands @@ -263,16 +275,16 @@ module.exports = grammar({ choice( $.command, $.test_command, - $.subshell - ) + $.subshell, + ), ), test_command: $ => seq( choice( seq('[', $._expression, ']'), seq('[[', $._expression, ']]'), - seq('((', $._expression, '))') - ) + seq('((', $._expression, '))'), + ), ), declaration_command: $ => prec.left(seq( @@ -280,30 +292,30 @@ module.exports = grammar({ repeat(choice( $._literal, $._simple_variable_name, - $.variable_assignment - )) + $.variable_assignment, + )), )), unset_command: $ => prec.left(seq( choice('unset', 'unsetenv'), repeat(choice( $._literal, - $._simple_variable_name - )) + $._simple_variable_name, + )), )), command: $ => prec.left(seq( repeat(choice( $.variable_assignment, - $.file_redirect + $.file_redirect, )), field('name', $.command_name), repeat(field('argument', choice( $._literal, seq( choice('=~', '=='), - choice($._literal, $.regex) - ) + choice($._literal, $.regex), + ), ))), )), @@ -312,11 +324,11 @@ module.exports = grammar({ variable_assignment: $ => seq( field('name', choice( $.variable_name, - $.subscript + $.subscript, )), choice( '=', - '+=' + '+=', ), field('value', choice( $._literal, @@ -332,7 +344,7 @@ module.exports = grammar({ field('index', $._literal), optional($._concat), ']', - optional($._concat) + optional($._concat), ), file_redirect: $ => prec.left(seq( @@ -345,7 +357,7 @@ module.exports = grammar({ heredoc_redirect: $ => seq( field('descriptor', optional($.file_descriptor)), choice('<<', '<<-'), - $.heredoc_start + $.heredoc_start, ), heredoc_body: $ => choice( @@ -356,16 +368,16 @@ module.exports = grammar({ $.expansion, $.simple_expansion, $.command_substitution, - $._heredoc_body_middle + $._heredoc_body_middle, )), - $._heredoc_body_end - ) + $._heredoc_body_end, + ), ), herestring_redirect: $ => seq( field('descriptor', optional($.file_descriptor)), '<<<', - $._literal + $._literal, ), // Expressions @@ -376,7 +388,7 @@ module.exports = grammar({ $.ternary_expression, $.binary_expression, $.postfix_expression, - $.parenthesized_expression + $.parenthesized_expression, ), binary_expression: $ => prec.left(2, choice( @@ -392,15 +404,15 @@ module.exports = grammar({ '<<', '>>', '<<=', '>>=', '&', '|', '^', '&=', '|=', '^=', - $.test_operator + $.test_operator, )), - field('right', $._expression) + field('right', $._expression), ), seq( field('left', $._expression), field('operator', choice('==', '=~', '!=')), - field('right', $.regex) - ) + field('right', $.regex), + ), )), ternary_expression: $ => prec.left( @@ -410,17 +422,17 @@ module.exports = grammar({ field('consequence', $._expression), ':', field('alternative', $._expression), - ) + ), ), unary_expression: $ => choice( prec(1, seq( token(prec(1, choice('-', '+', '~', '++', '--'))), - $._expression + $._expression, )), prec.right(1, seq( choice('!', $.test_operator), - $._expression + $._expression, )), ), @@ -432,7 +444,7 @@ module.exports = grammar({ parenthesized_expression: $ => seq( '(', $._expression, - ')' + ')', ), // Literals @@ -440,7 +452,7 @@ module.exports = grammar({ _literal: $ => choice( $.concatenation, $._primary_expression, - alias(prec(-2, repeat1($._special_character)), $.word) + alias(prec(-2, repeat1($._special_character)), $.word), ), _primary_expression: $ => choice( @@ -471,12 +483,12 @@ module.exports = grammar({ $._primary_expression, $._special_character, alias($._comment_word, $.word), - ) + ), ))), - optional(seq($._concat, '$')) + optional(seq($._concat, '$')), )), - _special_character: $ => token(prec(-1, choice('{', '}', '[', ']'))), + _special_character: _ => token(prec(-1, choice('{', '}', '[', ']'))), string: $ => seq( '"', @@ -488,27 +500,27 @@ module.exports = grammar({ $.command_substitution, $.arithmetic_expansion, ), - optional($._concat) + optional($._concat), )), optional('$'), - '"' + '"', ), - _string_content: $ => token(prec(-1, /([^"`$\\]|\\(.|\r?\n))+/)), + _string_content: _ => token(prec(-1, /([^"`$\\]|\\(.|\r?\n))+/)), translated_string: $ => seq('$', $.string), array: $ => seq( '(', repeat($._literal), - ')' + ')', ), - raw_string: $ => /'[^']*'/, + raw_string: _ => /'[^']*'/, - ansi_c_string: $ => /\$'([^']|\\')*'/, + ansi_c_string: _ => /\$'([^']|\\')*'/, - number: $ => /(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, + number: _ => /(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, simple_expansion: $ => seq( '$', @@ -516,8 +528,8 @@ module.exports = grammar({ $._simple_variable_name, $._special_variable_name, alias('!', $.special_variable_name), - alias('#', $.special_variable_name) - ) + alias('#', $.special_variable_name), + ), ), string_expansion: $ => seq('$', $.string), @@ -529,17 +541,17 @@ module.exports = grammar({ seq( $.variable_name, '=', - optional($._literal) + optional($._literal), ), seq( choice( $.subscript, $._simple_variable_name, - $._special_variable_name + $._special_variable_name, ), optional(seq( token(prec(1, '/')), - optional($.regex) + optional($.regex), )), repeat(prec.right(choice( $._literal, $.array, @@ -547,57 +559,66 @@ module.exports = grammar({ ))), ), )), - '}' + '}', ), command_substitution: $ => choice( seq('$(', $._statements, ')'), seq('$(', $.file_redirect, ')'), - prec(1, seq('`', $._statements, '`')) + prec(1, seq('`', $._statements, '`')), ), process_substitution: $ => seq( choice('<(', '>('), $._statements, - ')' + ')', ), - comment: $ => token(prec(-10, /#.*/)), - _comment_word: $ => token(prec(-9, seq( + comment: _ => token(prec(-10, /#.*/)), + _comment_word: _ => token(prec(-9, seq( choice( noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')) + seq('\\', noneOf('\\s')), ), repeat(choice( noneOf(...SPECIAL_CHARACTERS), seq('\\', noneOf('\\s')), - "\\ ", - )) + '\\ ', + )), ))), _simple_variable_name: $ => alias(/\w+/, $.variable_name), _special_variable_name: $ => alias(choice('*', '@', '?', '-', '$', '0', '_'), $.special_variable_name), - word: $ => token(seq( + word: _ => token(seq( choice( noneOf('#', ...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')) + seq('\\', noneOf('\\s')), ), repeat(choice( noneOf(...SPECIAL_CHARACTERS), seq('\\', noneOf('\\s')), - "\\ ", - )) + '\\ ', + )), )), - test_operator: $ => token(prec(1, seq('-', /[a-zA-Z]+/))), + test_operator: _ => token(prec(1, seq('-', /[a-zA-Z]+/))), - _terminator: $ => choice(';', ';;', '\n', '&') - } + _terminator: _ => choice(';', ';;', '\n', '&'), + }, }); +/** + * Returns a regular expression that matches any character except the ones + * provided. + * + * @param {...string} characters + * + * @return {RegExp} + * + */ function noneOf(...characters) { - const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join('') - return new RegExp('[^' + negatedString + ']') + const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join(''); + return new RegExp('[^' + negatedString + ']'); } diff --git a/package.json b/package.json index fa4311c8..00a248e5 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,11 @@ "prebuild-install": "^7.1.1" }, "devDependencies": { - "node-gyp": "^9.3.1", + "eslint": "^8.47.0", + "eslint-config-google": "^0.14.0", + "node-gyp": "^9.4.0", "prebuild": "^11.0.4", - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.20.8" }, "overrides": { "prebuild": { @@ -28,6 +30,8 @@ "pre-build": "prebuild -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip && prebuild -r electron -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 23.0.0 --strip", "pre-build:upload": "prebuild --upload-all", "build": "tree-sitter generate && node-gyp build", + "build-wasm": "tree-sitter build-wasm", + "lint": "eslint grammar.js", "parse": "tree-sitter parse", "test": "tree-sitter test && script/parse-examples", "test-windows": "tree-sitter test" From cd7d20f73ad069f971dd32f3f075c34092aa9096 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 14:18:19 -0400 Subject: [PATCH 15/16] ci: update ci action, add fuzz, lint, and publish actions --- .github/workflows/ci.yml | 6 +- .github/workflows/fuzz.yml | 22 ++++++++ .github/workflows/lint.yml | 19 +++++++ .github/workflows/publish.yml | 103 ++++++++++++++++++++++++++++++++++ 4 files changed, 147 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/fuzz.yml create mode 100644 .github/workflows/lint.yml create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a80e188..d6e1e05e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Build/test +name: CI on: push: branches: @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: npm install - run: npm test test_windows: @@ -32,6 +32,6 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: npm install - run: npm run-script test-windows diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 00000000..15fa4711 --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,22 @@ +name: Fuzz Parser + +on: + push: + paths: + - src/scanner.c + pull_request: + paths: + - src/scanner.c + workflow_dispatch: + +jobs: + test: + name: Parser fuzzing + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: vigoux/tree-sitter-fuzz-action@v1 + with: + language: bash + external-scanner: src/scanner.c + time: 60 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..d94f7f39 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,19 @@ +name: Lint + +on: + push: + branches: + - master + pull_request: + branches: + - "**" + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install modules + run: npm install + - name: Run ESLint + run: npm run lint diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..c2020e92 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,103 @@ +name: Release + +on: + workflow_run: + workflows: ["CI"] + branches: + - master + types: + - completed + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Get previous commit SHA + id: get_previous_commit + run: | + LATEST_TAG=$(git describe --tags --abbrev=0) + if [[ -z "$LATEST_TAG" ]]; then + echo "No tag found. Failing..." + exit 1 + fi + echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag + + - name: Check if version changed and is greater than the previous + id: version_check + run: | + # Compare the current version with the version from the previous commit + PREVIOUS_NPM_VERSION=${{ env.latest_tag }} + CURRENT_NPM_VERSION=$(jq -r '.version' package.json) + CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) + if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match + echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" + echo "version_changed=false" >> "$GITHUB_ENV" + else + if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then + echo "version_changed=" >> "$GITHUB_ENV" + else + IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" + IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" + VERSION_CHANGED=false + for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do + if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then + VERSION_CHANGED=true + break + elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then + break + fi + done + + echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" + echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" + fi + fi + + - name: Display result + run: | + echo "Version bump detected: ${{ env.version_changed }}" + + - name: Fail if version is lower + if: env.version_changed == 'false' + run: exit 1 + + - name: Setup Node + if: env.version_changed == 'true' + uses: actions/setup-node@v3 + with: + node-version: 18 + registry-url: "https://registry.npmjs.org" + - name: Publish to NPM + if: env.version_changed == 'true' + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + run: npm publish + + - name: Setup Rust + if: env.version_changed == 'true' + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - name: Publish to Crates.io + if: env.version_changed == 'true' + uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} + + - name: Tag versions + if: env.version_changed == 'true' + run: | + git checkout master + git config user.name github-actions[bot] + git config user.email github-actions[bot]@users.noreply.github.com + git tag -d "v${{ env.current_version }}" || true + git push origin --delete "v${{ env.current_version }}" || true + git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" + git push origin "v${{ env.current_version }}" From 38c8b0bbfb53ce716906aa5e967c54bca2af39de Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 12 Aug 2023 14:18:35 -0400 Subject: [PATCH 16/16] chore: update manifests and README --- Cargo.toml | 8 ++++---- README.md | 22 +++++++++++++--------- bindings/rust/lib.rs | 10 +++++----- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c38ae5e..e575309a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tree-sitter-bash" -description = "bash grammar for the tree-sitter parsing library" +description = "Bash grammar for tree-sitter" version = "0.19.0" keywords = ["incremental", "parsing", "bash"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-bash" -edition = "2018" +edition = "2021" license = "MIT" authors = [ "Max Brunsfeld Language { /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); // Uncomment these to include any queries that this grammar contains -pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); +pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); // pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); // pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); // pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); @@ -47,6 +47,6 @@ mod tests { let mut parser = tree_sitter::Parser::new(); parser .set_language(super::language()) - .expect("Error loading bash language"); + .expect("Error loading Bash grammar"); } }